Last active
January 21, 2022 13:46
-
-
Save MowiliMi/b997694b0c885dff7819b6abbe4ae75b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| <link rel="preconnect" href="https://fonts.gstatic.com" /> | |
| <link href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@100;200;300;400;500;600&display=swap" rel="stylesheet" /> | |
| // @import '~bootstrap-4-grid/scss/grid/_functions.scss'; | |
| // @import '~bootstrap-4-grid/scss/grid/_variables.scss'; | |
| // @import '~bootstrap-4-grid/scss/grid/mixins/_breakpoints.scss'; | |
| //768px | |
| @mixin breakpoint-tablet { | |
| @media screen and (min-width: 48em) { | |
| @content; | |
| } | |
| } | |
| //1200px | |
| @mixin breakpoint-desktop { | |
| @media screen and (min-width: 75em) { | |
| @content; | |
| } | |
| } | |
| // // 576.0px | |
| // @mixin breakpoint-mobile { | |
| // @media screen and (min-width: 1rem) { | |
| // @content; | |
| // } | |
| // } | |
| // // 768.0px | |
| // @mixin breakpoint-tablet { | |
| // @media screen and (min-width: 48rem) { | |
| // @content; | |
| // } | |
| // } | |
| // // 1200.0px | |
| // @mixin breakpoint-desktop { | |
| // @media screen and (min-width: 75rem) { | |
| // @content; | |
| // } | |
| // } | |
| // // 1400.0px | |
| // @mixin breakpoint-desktop-wider { | |
| // @media screen and (min-width: 87.5rem) { | |
| // @content; | |
| // } | |
| // } | |
| @import '~normalize.css/normalize.css'; | |
| @import './utils/container'; | |
| @import './variables'; | |
| @import './plugins/vueNotification'; | |
| @import './plugins/vueSelect'; | |
| @import './plugins/vueSimplebar'; | |
| @import './plugins/vueTooltip'; | |
| *, | |
| *::before, | |
| *::after { | |
| box-sizing: inherit; | |
| } | |
| html { | |
| font-family: 'Fira Sans', sans-serif; | |
| box-sizing: border-box; | |
| width: 100%; | |
| height: 100%; | |
| } | |
| body { | |
| width: 100%; | |
| height: 100%; | |
| font-size: 1.4rem; | |
| line-height: 1.5; | |
| font-size: $font-size-primary; | |
| color: $color-black; | |
| } | |
| a { | |
| color: $link-color; | |
| text-decoration: none; | |
| transition: | |
| AIzaSyAtmBSXvP9ncXEIpRE8CeKTS5FmOsknAY4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment