-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (90 loc) · 1.47 KB
/
style.css
File metadata and controls
114 lines (90 loc) · 1.47 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
:root {
--black: #070724;
--white: #FFFFFF;
--green: #419EBB;
--light-green: #B1D5E2;
--mercury: #DEF4FC;
--venus: #F7CC7F;
--earth: #545BFE;
--mars: #FF6A45;
--jupiter: #ECAD7A;
--saturn: #FCCB6B;
--uranus: #65F0D5;
--neptune: #497EFA;
}
.font-antonio {
font-family: "Antonio", sans-serif;
font-optical-sizing: auto;
font-style: normal;
}
.font-spartan {
font-family: "League Spartan", sans-serif;
font-optical-sizing: auto;
font-style: normal;
}
.fw-700 {
font-weight: 700;
}
.fw-500 {
font-weight: 500;
}
.fw-400 {
font-weight: 400;
}
.fs-small {
font-size: 0.75rem;
}
[data-bs-theme=dark] {
color-scheme: dark;
--bs-body-bg: var(--black);
}
body {
background-image: url(./assets/background-stars.svg);
}
.navbar--mobile__planets {
height: 20px;
width: 20px;
transform: translate(0, -2px);
}
.mercury {
background-color: var(--mercury);
}
.venus {
background-color: var(--venus);
}
.earth {
background-color: var(--earth);
}
.mars {
background-color: var(--mars);
}
.jupiter {
background-color: var(--jupiter);
}
.saturn {
background-color: var(--saturn);
}
.uranus {
background-color: var(--uranus);
}
.neptune {
background-color: var(--neptune);
}
.navbar--mobile__chevron {
transform: translate(0, -2px);
}
.footer__box {
height: 48px;
}
.main__image {
min-height: 260px;
}
.placeholder-image {
width: 260px;
height: 260px;
}
@media (min-width: 768px) {
.footer__box {
height: auto;
}
}