-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_base.scss
More file actions
52 lines (44 loc) · 754 Bytes
/
_base.scss
File metadata and controls
52 lines (44 loc) · 754 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
@import 'settings';
* {
-webkit-font-smoothing: antialiased;
box-sizing: border-box;
&::after {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
box-sizing: border-box;
}
&::before {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
box-sizing: border-box;
}
}
body,
html {
background-color: $color-4;
font-family: $font-family-2;
font-size: $font-size-normal;
font-weight: $font-weight-normal;
margin: 0;
padding: 0;
}
body {
overflow-x: hidden;
}
a {
text-decoration: none;
color: $color-2;
}
h1,
h2,
h3,
h4,
h5,
h6 {
-webkit-margin-before: 0;
-webkit-margin-after: 0;
font-family: $font-family-1;
}
:global .hidden {
display: none;
}