Last active
December 29, 2020 12:37
-
-
Save shahab570/5d57e60eb5596ef5043a318c0dd3e0a6 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
//style.scss | |
@import "./variables"; | |
@import "./mixins"; | |
@include reset; //imported from "_mixins.scss" | |
body { | |
width: 100%; | |
height: 100vh; | |
background-color: $black; | |
@include center; //imported from "_mixins.scss" | |
} | |
h1 { | |
color: $grey; / //imported from '_variables.scss" | |
border-bottom: 2px solid $green; | |
line-height: 1.8; | |
} | |
p{ | |
color: $grey; | |
font-size: 25px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment