mirror of
https://github.com/devfake/flox.git
synced 2024-11-15 14:42:31 +01:00
44 lines
669 B
SCSS
44 lines
669 B
SCSS
|
* {
|
||
|
box-sizing: border-box;
|
||
|
font-family: 'Open Sans', sans-serif;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
overflow-y: scroll;
|
||
|
background: #fff;
|
||
|
|
||
|
&.dark {
|
||
|
background: #1c1c1c;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
html {
|
||
|
-webkit-text-size-adjust: 100%;
|
||
|
}
|
||
|
|
||
|
input {
|
||
|
-webkit-appearance: none !important;
|
||
|
}
|
||
|
|
||
|
.wrap,
|
||
|
.wrap-content {
|
||
|
lost-center: 1300px 20px;
|
||
|
}
|
||
|
|
||
|
.wrap-content {
|
||
|
@include media(1) { lost-center: 1120px 20px; }
|
||
|
@include media(2) { lost-center: 960px 20px; }
|
||
|
@include media(3) { lost-center: 800px 20px; }
|
||
|
@include media(4) { lost-center: 620px 20px; }
|
||
|
@include media(6) { lost-center: 290px 20px; }
|
||
|
}
|
||
|
|
||
|
input,
|
||
|
a {
|
||
|
outline: 0
|
||
|
}
|
||
|
|
||
|
::selection {
|
||
|
background: rgba($main1, .99);
|
||
|
color: #fff;
|
||
|
}
|