-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
42 lines (38 loc) · 1.05 KB
/
style.css
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
@import 'css/properties.css';
@import 'css/variables.css';
@import 'css/shared.css';
@import 'css/fonts.css';
html {
height: 100vh;
}
body {
position: relative;
display: flex;
height: 100%;
margin: 0;
background-color: var(--background);
color: var(--body);
font-family: 'Lexend', 'Verdana', sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
transition: ease var(--short-animation-duration);
transition-property: color, background-color;
}
@media (width < 600px) {
tc-sky {
display: none;
--short-animation-duration: 0;
--medium-animation-duration: 0;
--light-source-glow-animation: 0;
--top-left-cloud-animation-duration: 0;
--bottom-left-cloud-animation-duration: 0;
--top-right-cloud-animation-duration: 0;
--bottom-right-cloud-animation-duration: 0;
--blended-bottom-right-cloud-animation-duration: 0;
--front-bottom-right-cloud-animation-duration: 0;
}
}
.page-not-found {
font-size: 2rem;
}