1
0
mirror of https://github.com/devfake/flox.git synced 2024-11-15 14:42:31 +01:00
flox/client/resources/sass/_base.scss

48 lines
713 B
SCSS
Raw Normal View History

2016-10-10 10:57:39 +02:00
* {
box-sizing: border-box;
font-family: 'Open Sans', sans-serif;
}
body {
overflow-y: scroll;
background: #fff;
&.dark {
background: #1c1c1c;
}
&.open-modal {
overflow: hidden;
}
2016-10-10 10:57:39 +02:00
}
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;
}