27 lines
366 B
SCSS
27 lines
366 B
SCSS
|
@import "../../fonts/fonts";
|
||
|
@import "_variables";
|
||
|
|
||
|
* {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
color: rgb(255,255,255);
|
||
|
background: rgb(100,100,100);
|
||
|
margin: 0px;
|
||
|
padding: 0px;
|
||
|
}
|
||
|
|
||
|
#main {
|
||
|
position: absolute;
|
||
|
top: 0px;
|
||
|
left: 0px;
|
||
|
}
|
||
|
|
||
|
.slide {
|
||
|
position: relative;
|
||
|
width: $full-width;
|
||
|
height: $full-height;
|
||
|
overflow: hidden;
|
||
|
}
|