-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.scss
32 lines (29 loc) · 853 Bytes
/
App.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
@import url("https://fonts.googleapis.com/css2?family=Marck+Script&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Text:wght@300;400;500;600&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
background-color: #272727;
color: white;
font-family: "Zilla Slab", serif;
scroll-behavior: smooth;
/* scroll-padding-top accounts for sticky navigation size. It will scroll the desired amount
* extra to line up div's perfectly
* */
scroll-padding-top: 5rem;
a, svg {
color: #518dff;
fill: #518dff;
display: block;
transition: all 0.3s ease-out;
&:hover,
&:focus {
transform: scale(1.15);
}
}
}