Commit a779ab019a0facc42f301ba052a322d8ac57a2bb
Exists in
master
and in
6 other branches
Merge branch 'fix-styles'
Showing
1 changed file
with
22 additions
and
21 deletions
Show diff stats
src/app/layout.scss
| ... | ... | @@ -214,36 +214,37 @@ |
| 214 | 214 | } |
| 215 | 215 | } |
| 216 | 216 | |
| 217 | -ul { | |
| 218 | - list-style: none; | |
| 219 | - padding: 0; | |
| 220 | - margin: 0; | |
| 221 | -} | |
| 217 | +.page--program { | |
| 218 | + .program-content { | |
| 219 | + ul { | |
| 220 | + list-style: none; | |
| 221 | + padding: 0; | |
| 222 | + margin: 0; | |
| 223 | + } | |
| 222 | 224 | |
| 223 | -ul.list-color li:before { | |
| 224 | - @each $category, | |
| 225 | - $color in $categories { | |
| 226 | - .#{$category} & { | |
| 227 | - color: $color; | |
| 225 | + ul.list-color li:before { | |
| 226 | + @each $category, | |
| 227 | + $color in $categories { | |
| 228 | + .#{$category} & { | |
| 229 | + color: $color; | |
| 230 | + } | |
| 231 | + } | |
| 228 | 232 | } |
| 229 | - } | |
| 230 | -} | |
| 231 | 233 | |
| 232 | -ul li:before { | |
| 233 | - content: "\2022"; | |
| 234 | - font-weight: bold; | |
| 235 | - font-size: 12px; | |
| 236 | - position: relative; | |
| 237 | - padding-right: 4px; | |
| 238 | -} | |
| 234 | + ul li:before { | |
| 235 | + content: "\2022"; | |
| 236 | + font-weight: bold; | |
| 237 | + font-size: 12px; | |
| 238 | + position: relative; | |
| 239 | + padding-right: 4px; | |
| 240 | + } | |
| 239 | 241 | |
| 240 | -.page--program { | |
| 241 | - .program-content { | |
| 242 | 242 | ul li { |
| 243 | 243 | padding-left: 2em; |
| 244 | 244 | padding-bottom: 15px; |
| 245 | 245 | text-indent: -0.7em; |
| 246 | 246 | } |
| 247 | + | |
| 247 | 248 | .col-middle { |
| 248 | 249 | vertical-align: top; |
| 249 | 250 | } | ... | ... |