Changeset 17 for Dev/trunk/css


Ignore:
Timestamp:
07/15/11 20:16:31 (14 years ago)
Author:
fpvanagthoven
Message:

Multiple choice option functional.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Dev/trunk/css/style.css

    r11 r17  
    2525#wrapper {
    2626    width: 80%;
     27    min-width: 570px;
    2728    margin: auto;
    2829}
     
    9697}
    9798
     99#questionsDiv {
     100    margin-top: 2em;
     101}
     102
    98103#submitSurvey {
    99104    display: block;
     
    102107    margin-top: 2em;
    103108}
     109
     110#addQuestionButton {
     111    width: 20em;
     112}
     113
     114#addOpt {
     115    margin-left: 1em;
     116}
     117
     118.surveyButton {
     119    margin-top: 1em;
     120    color: gray;
     121    background-color: #fff;
     122    border: 1px solid #ddd;
     123    -moz-border-radius: 8px;
     124    border-radius: 8px;
     125    -moz-box-shadow: 1px 1px 1px #555;
     126    -webkit-box-shadow: 1px 1px 1px #555;
     127    box-shadow: 1px 1px 1px #555;
     128}
     129
     130.surveyButton:hover {
     131    background-color: white;
     132    color: #333;
     133    border-color: deepskyblue;
     134}
     135
     136.surveyButton:active {
     137    border-style: inset;
     138    border-color: orange;
     139}
     140
     141.question { 
     142    margin-top: 1em;
     143}
     144
     145.questionTable td{
     146    width: 8em;
     147}
     148
     149.questionTable th{
     150    text-align: left;
     151}
     152
     153label {
     154    font-size: small;
     155    font-weight: bold;
     156    color: gray;
     157}
Note: See TracChangeset for help on using the changeset viewer.