mirror of
https://github.com/devfake/flox.git
synced 2024-11-15 14:42:31 +01:00
58 lines
772 B
SCSS
58 lines
772 B
SCSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.wrap {
|
|
//max-width: 1200px;
|
|
//width: 100%;
|
|
width: 1100px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
body {
|
|
background: $dark;
|
|
font-family: 'Titillium Web', sans-serif;
|
|
padding: 65px 0 0 0;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
.modal-active {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.light-theme {
|
|
background: #fff;
|
|
}
|
|
|
|
::-moz-selection {
|
|
background: rgba(#474747, .99);
|
|
color: #fff;
|
|
}
|
|
|
|
::selection {
|
|
background: rgba(#474747, .99);
|
|
color: #fff;
|
|
}
|
|
|
|
::-webkit-input-placeholder {
|
|
color: #636363;
|
|
}
|
|
|
|
::-moz-placeholder {
|
|
color: #636363;
|
|
opacity: 1;
|
|
}
|
|
|
|
::-ms-input-placeholder {
|
|
color: #636363;
|
|
}
|
|
|
|
ul { list-style: none; }
|
|
a { text-decoration: none; outline: 0; }
|
|
img { border: 0; }
|
|
textarea, input { outline: 0; }
|