-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (55 loc) · 1001 Bytes
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
::-webkit-scrollbar {
display: none;
}
:root {
/* space theme palette */
--color-1: #3C486B;
--color-2: #F0F0F0;
--color-3: #F9D949;
--color-4: #F45050;
}
* {
font-family: 'Montserrat', sans-serif;
color: var(--color-2);
}
body {
margin: 0;
background-color: var(--color-1);
}
a,
a:hover,
a:focus,
a:visited {
color: var(--color-3);
}
#header_section .title,
#header_section .subtitle,
#header_section .note {
text-align: center;
color: var(--color-4);
}
#header_section .title {
font-size: 3rem;
margin: 73px 0px;
}
#header_section .subtitle {
font-size: 1.5rem;
}
#header_section .note {
font-size: 1rem;
font-style: italic;
}
section.spline-embed {
padding: 0px 33px;
border-radius: 7px;
margin-top: 73px;
}
span.category-tag {
background-color: var(--color-3);
color: var(--color-1);
margin-left: 13px;
font-size: 0.7rem;
padding: 7px 7px;
vertical-align: middle;
border-radius: 7px;
}