Last active
August 24, 2022 11:38
-
-
Save carl0zen/090f44bce2a1344a6eeaece7762c10a2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Block | |
.scenery { | |
//Elements | |
&__sky { | |
fill: screen; | |
} | |
&__ground { | |
float: bottom; | |
} | |
&__people { | |
float: center; | |
} | |
} | |
//Block | |
.sky { | |
background: dusk; | |
// Elements | |
&__clouds { | |
type: distant; | |
} | |
&__sun { | |
strength: .025; | |
} | |
// Modifiers | |
&--dusk { | |
background: dusk; | |
.sky__clouds { | |
type: distant; | |
} | |
.sky__sun { | |
strength: .025; | |
} | |
} | |
&--daytime { | |
background: daylight; | |
.sky__clouds { | |
type: fluffy; | |
float: center; | |
} | |
.sky__sun { | |
strength: .7; | |
align: center; | |
float: top; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment