mirror of
https://github.com/exane/not-gwent-online
synced 2024-10-31 10:36:53 +00:00
34 lines
455 B
SCSS
34 lines
455 B
SCSS
|
* {
|
||
|
padding: 0;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
html,
|
||
|
body {
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
width: 100%;
|
||
|
font-family: 'Titillium Web', sans-serif;
|
||
|
}
|
||
|
|
||
|
::-moz-selection {
|
||
|
background: rgba($main, .99);
|
||
|
color: #fff;
|
||
|
text-shadow: none;
|
||
|
}
|
||
|
|
||
|
::selection {
|
||
|
background: rgba($main, .99);
|
||
|
color: #fff;
|
||
|
text-shadow: none;
|
||
|
}
|
||
|
|
||
|
input, textarea {
|
||
|
font-family: 'Titillium Web', sans-serif;
|
||
|
outline: 0;
|
||
|
}
|
||
|
|
||
|
a { text-decoration: none; }
|
||
|
ul { list-style: none; }
|