Changeset 17 for Dev/trunk/css
- Timestamp:
- 07/15/11 20:16:31 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/css/style.css
r11 r17 25 25 #wrapper { 26 26 width: 80%; 27 min-width: 570px; 27 28 margin: auto; 28 29 } … … 96 97 } 97 98 99 #questionsDiv { 100 margin-top: 2em; 101 } 102 98 103 #submitSurvey { 99 104 display: block; … … 102 107 margin-top: 2em; 103 108 } 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 153 label { 154 font-size: small; 155 font-weight: bold; 156 color: gray; 157 }
Note: See TracChangeset
for help on using the changeset viewer.