-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.scss
118 lines (97 loc) · 2.06 KB
/
styles.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
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
114
115
116
117
118
:root {
--foreground: rgb(236, 236, 236);
}
body {
background-color: #1b1b1b;
color: var(--foreground);
margin: clamp(2rem, 6vh, 0.5in) 0;
}
body, .leaflet-control, .leaflet-container {
font-family: "Roboto";
}
.leaflet-container {
background-color: transparent;
}
.container-fluid {
display: flex;
justify-content: center;
}
.user-input {
display: flex;
flex-wrap: wrap;
gap: 1ch;
align-items: baseline;
font-family: "PT Serif";
font-weight: bold;
font-size: 3rem;
.form-group {
margin-bottom: 0;
}
.shiny-input-container {
display: inline-flex;
grid-template-columns: max-content max-content;
align-items: center;
width: auto;
label {
margin-right: 1ch;
margin-bottom: 0;
}
}
.selectize-input {
// height: 1em;
color: inherit;
box-shadow: 0 1px 0 var(--foreground);
border: none;
border-radius: 0;
background-color: transparent !important;
padding: 0;
padding-right: 2.5ch;
overflow: initial;
line-height: 1;
}
.selectize-dropdown {
font-family: "Roboto";
font-weight: lighter;
font-size: 1.5rem;
}
.selectize-control {
margin-bottom: 0;
&.single .selectize-input {
&::after, &.dropdown-active::after {
border-top-color: var(--foreground) !important;
right: 1ch !important;
}
}
}
}
[role="main"] {
padding: 0;
}
.summary {
font-size: 1.2em;
p {
margin: 0;
}
strong {
font-weight: bold;
}
}
.user-input, .leaflet-container {
margin-bottom: clamp(2rem, 6vw, 7rem);
}
footer {
font-size: 1.1rem;
margin-top: 3em;
color:rgb(199, 199, 199);
p:last-child {
margin-bottom: 0;
}
a {
color: inherit;
text-decoration: underline;
&:focus, &:hover {
color: inherit;
text-decoration-style: dashed;
}
}
}