-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.scss
More file actions
25 lines (24 loc) · 725 Bytes
/
style.scss
File metadata and controls
25 lines (24 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
@import "./scss/variables";
@import "./scss/mixins";
@import "./scss/keyframes";
@import "./scss/components/main_header";
@import "./scss/components/header";
@import "./scss/components/buttons";
@import "./scss/media-queries";
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
display: flex;
flex-flow: column nowrap;
justify-content: flex-start;
align-items: center;
background: $color-background;
overflow-x: hidden;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
padding: $size-unit;
text-align: center;
min-width: 100vh;
}