forked from OpenNeo/impress
Matchu
74197a6e9f
This required a buncha fixes to how SASS scoping works! Needed to add a bunch of imports for stuff that previously would get read from the global scope by being imported *after* the constants and mixins etc. There's clearly a lot of refactor opportunity here, but I'm not gonna worry about it!!
41 lines
609 B
Sass
41 lines
609 B
Sass
@import "clean/constants"
|
|
@import "clean/mixins"
|
|
@import "outfits/star"
|
|
|
|
=outfit
|
|
+inline-block
|
|
+outfit-star
|
|
overflow: hidden
|
|
position: relative
|
|
|
|
header, footer
|
|
+outfit-banner
|
|
+outfit-banner-background(black)
|
|
|
|
header
|
|
bottom: 0
|
|
|
|
footer
|
|
top: 0
|
|
|
|
a
|
|
color: white
|
|
|
|
=outfits-list
|
|
// remove whitespace between inline-block elements
|
|
font-size: 0
|
|
list-style: none
|
|
|
|
> li
|
|
+outfit
|
|
font-size: 14px
|
|
|
|
=outfit-banner
|
|
color: white
|
|
left: 0
|
|
position: absolute
|
|
z-index: 2
|
|
|
|
=outfit-banner-background($color)
|
|
background: $color
|
|
background: rgba($color, 0.75)
|