Last active
January 18, 2019 10:45
-
-
Save apisklov/db98a192c565b55f667d7a7b287eb4e1 to your computer and use it in GitHub Desktop.
Start main.scss file with bootstrap grid
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
@import "vars"; | |
@import "fonts"; | |
@media screen and (min-width: 1300px) { | |
.container-fluid { | |
max-width: 1320px; | |
margin: 0 auto; | |
} | |
} | |
html{ | |
-ms-text-size-adjust: 100%; | |
-webkit-text-size-adjust: 100%; | |
-moz-osx-font-smoothing: grayscale; | |
-webkit-font-smoothing: antialiased; | |
} | |
body{ | |
min-height: 100vh; | |
margin: 0; | |
padding: 0; | |
background: #fff; | |
font-family: $reg, Helvetica, Arial, sans-serif; | |
font-weight: normal; | |
font-size: 16px; | |
color: $main; | |
} | |
@import "_components/header"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment