| Left: | ||
| Right: |
| LEFT | RIGHT |
|---|---|
| 1 * | 1 * |
| 2 { | 2 { |
| 3 font-family: Arial, sans; | 3 font-family: Arial, sans; |
| 4 font-size: 16px; | 4 font-size: 16px; |
| 5 } | 5 } |
| 6 | 6 |
| 7 body | 7 body |
| 8 { | 8 { |
| 9 margin: 0; | 9 margin: 0; |
| 10 line-height: 1.5; | 10 line-height: 1.5; |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 231 .button.primary:hover | 231 .button.primary:hover |
| 232 { | 232 { |
| 233 background-color: #E00F32; | 233 background-color: #E00F32; |
| 234 } | 234 } |
| 235 | 235 |
| 236 .button.primary:active | 236 .button.primary:active |
| 237 { | 237 { |
| 238 background-color: #AD102A; | 238 background-color: #AD102A; |
| 239 } | 239 } |
| 240 | 240 |
| 241 .bg-accent .button.secondary | 241 .button.inverse, |
|
ire
2017/12/07 12:36:27
NIT: I think this is a style of button that could
juliandoucette
2017/12/08 16:49:52
What about .button.inverse?
ire
2017/12/11 15:53:46
That works now, but what if we wanted to have an "
juliandoucette
2017/12/14 18:35:22
Will address separately if necessary.
| |
| 242 a.button.inverse | |
| 242 { | 243 { |
| 243 background: none; | 244 background: none; |
| 244 color: #fff; | 245 color: #fff; |
| 245 margin-left: 2px; | 246 margin-left: 2px; |
| 246 margin-right: 2px; | 247 margin-right: 2px; |
| 247 border: 1px solid #fff; | 248 border: 1px solid #fff; |
| 248 } | 249 } |
| 249 | 250 |
| 250 .bg-accent .button.secondary:hover, | 251 .button.inverse:hover, |
| 251 .bg-accent .button.secondary:focus | 252 .button.inverse:focus |
| 252 { | 253 { |
| 253 box-shadow: inset 0 0 0 2px #fff; | 254 box-shadow: inset 0 0 0 2px #fff; |
| 254 } | 255 } |
| 255 | 256 |
| 256 .bg-accent .button.secondary:active | 257 .button.inverse:active |
| 258 { | |
| 259 background-color: #fff; | |
| 260 } | |
| 261 | |
| 262 .bg-accent .button.inverse:active | |
| 257 { | 263 { |
| 258 color: #077CA6; | 264 color: #077CA6; |
| 259 background-color: #fff; | |
| 260 } | 265 } |
| 261 | 266 |
| 262 /******************************************************************************* | 267 /******************************************************************************* |
| 263 * .bg-* utilities | 268 * .bg-* utilities |
| 264 ******************************************************************************/ | 269 ******************************************************************************/ |
| 265 | 270 |
| 266 .bg-accent | 271 .bg-accent |
| 267 { | 272 { |
| 268 color: #fff; | 273 color: #fff; |
| 269 background-color: #077CA6; | 274 background-color: #077CA6; |
| (...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 698 { | 703 { |
| 699 display: none; | 704 display: none; |
| 700 } | 705 } |
| 701 | 706 |
| 702 /* overriding display:none above */ | 707 /* overriding display:none above */ |
| 703 #footer #social-list | 708 #footer #social-list |
| 704 { | 709 { |
| 705 display: block; | 710 display: block; |
| 706 } | 711 } |
| 707 } | 712 } |
| LEFT | RIGHT |