-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
69 lines (59 loc) · 1.39 KB
/
styles.css
File metadata and controls
69 lines (59 loc) · 1.39 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
:root {
--globe-fill: #000000;
--globe-outline: #ffffff;
--globe-outline-width: 14;
--star-fill: #ffffff;
--constellation-fill: #ffffff;
--constellation-width: 2;
--constellation-opacity: 0.425;
--graticule-fill: #ffffff;
--graticule-opacity: 0.6;
--graticule-dash: 1;
}
#background * {
fill: var(--globe-fill);
}
#constLines * {
fill: none;
stroke-width: var(--constellation-width);
stroke-opacity: var(--constellation-opacity);
/* To change constellation color, change stroke */
stroke: var(--constellation-fill);
}
#mapBorder * {
stroke: var(--globe-outline);
stroke-width: var(--globe-outline-width);
}
#stars * {
fill: var(--star-fill);
stroke: var(--star-fill);
}
#gridLines * {
fill: none;
stroke-width: 0.27px;
stroke-dasharray: var(--graticule-dash);
/* To change globe lines color, change stroke */
stroke: var(--graticule-fill);
/* To make globe lines less noticable, decrease stroke-opacity */
stroke-opacity: var(--graticule-opacity);
fill-opacity: var(--graticule-opacity);
}
input[type="color"] {
margin: .4rem;
}
label {
font: 1rem 'Fira Sans', sans-serif;
}
.card {
margin: 0 0.5em;
box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
border: none;
border-radius: 0;
height: 12rem;
}
.carousel {
max-width: 550px;
}
.carousel-inner {
padding: 3rem;
}