LEFT | RIGHT |
1 body | 1 body |
2 { | 2 { |
3 display: flex; | 3 display: flex; |
4 flex-direction: column; | 4 flex-direction: column; |
5 align-items: center; | 5 align-items: center; |
6 margin: 1.2rem 0.3rem; | 6 margin: 1.2rem 0.3rem; |
7 font-family: Segoe UI, Arial, sans-serif; | 7 font-family: Segoe UI, Arial, sans-serif; |
8 font-size: 1.25rem; | 8 font-size: 1.25rem; |
9 color: #494949; | 9 color: #494949; |
10 background-color: #F3F3F3; | 10 background-color: #F3F3F3; |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 { | 104 { |
105 margin-right: 30px; | 105 margin-right: 30px; |
106 } | 106 } |
107 | 107 |
108 #anonymousSubmissionContainer | 108 #anonymousSubmissionContainer |
109 { | 109 { |
110 margin-top: 0.5em; | 110 margin-top: 0.5em; |
111 } | 111 } |
112 | 112 |
113 #anonymousSubmissionWarning, | 113 #anonymousSubmissionWarning, |
114 #commentLengthWarning | 114 #commentLengthWarning, |
| 115 #error |
115 { | 116 { |
116 margin-top: 0.5em; | 117 margin-top: 0.5em; |
117 color: #C00000; | 118 color: #C00000; |
118 font-size: 80%; | 119 font-size: 80%; |
119 } | 120 } |
120 | 121 |
121 #comment | 122 #comment |
122 { | 123 { |
123 flex-grow: 1; | 124 flex-grow: 1; |
124 min-height: 2em; | 125 min-height: 2em; |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 background-color: transparent; | 240 background-color: transparent; |
240 background-image: url(icons/checkbox.png); | 241 background-image: url(icons/checkbox.png); |
241 display: inline-block; | 242 display: inline-block; |
242 } | 243 } |
243 | 244 |
244 input[type="checkbox"]:checked, | 245 input[type="checkbox"]:checked, |
245 input[type="radio"]:checked | 246 input[type="radio"]:checked |
246 { | 247 { |
247 background-position: 0px 18px; | 248 background-position: 0px 18px; |
248 } | 249 } |
LEFT | RIGHT |