Skip to content

Instantly share code, notes, and snippets.

@shahab570
Last active December 29, 2020 12:37
Show Gist options
  • Save shahab570/5d57e60eb5596ef5043a318c0dd3e0a6 to your computer and use it in GitHub Desktop.
Save shahab570/5d57e60eb5596ef5043a318c0dd3e0a6 to your computer and use it in GitHub Desktop.
//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