-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_global.scss
61 lines (58 loc) · 804 Bytes
/
_global.scss
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
53
54
55
56
57
58
59
60
61
@import "vars";
body {
margin: 0;
}
html {
background-color: white;
}
html,
body {
width: 100%;
overflow-x: hidden;
overflow-y: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
@include small-desktop {
overflow-y: scroll;
}
}
h1,
h2,
h3,
h4,
p,
a,
li,
label,
input,
span,
br {
font-family: "Montserrat", sans-serif;
line-height: 1.5em;
&::selection {
background: none;
color: $dark-blue;
}
}
p,
a,
li,
label,
input {
font-size: 16px;
letter-spacing: 0.03em;
line-height: 24px;
color: black;
}
a {
text-decoration: none;
}
.app-leave {
opacity: 1;
transition: opacity 500ms ease-in;
}
.app-leave.app-leave-active {
opacity: 0;
}