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