-
Notifications
You must be signed in to change notification settings - Fork 4
/
style.css
109 lines (94 loc) · 1.55 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
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
body,
html {
height: 100%;
width: 100%;
overflow: hidden;
position: fixed;
font-family: Inter, sans-serif;
font-weight: 400;
font-size: 1rem;
line-height: 1.5;
margin: 0;
}
#map,
canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
max-height: 100%;
}
#app {
flex: 1 1 auto;
min-height: 100vh;
display: flex;
flex-direction: column;
}
#story-card {
padding: 1.75rem;
background: #fdfdfe;
box-shadow: 4px 4px 8px #30303099;
border-radius: 4px;
z-index: 1;
margin: 1.5rem;
max-width: 500px;
max-height: 85vh;
z-index: 10;
overflow: scroll;
}
.layer-controls {
margin-top: 2.25rem;
}
.overline {
font-size: 0.625rem;
font-weight: 600;
line-height: 1.2;
letter-spacing: 0.125rem;
text-transform: uppercase;
}
hr {
border: 1px solid #eee;
margin: 12px 0px 20px;
}
select {
margin-bottom: 0.6rem;
border-radius: 4px;
font-size: 0.8rem;
line-height: 1.5;
letter-spacing: 0.001rem;
max-width: 100%;
}
select:hover {
cursor: pointer;
}
select {
padding: 0.6rem;
width: 360px;
}
code {
padding: 2px 5px;
border-radius: 5px;
background-color: #f0f0f0;
}
.caption {
margin-top: 2.25rem;
margin-bottom: 0px;
font-size: 0.8rem;
}
.widget-wrapper {
position: relative;
margin: 10px 0px;
}
.small {
font-size: 0.9rem;
}
/* Hide scrollbars while maintaining scroll functionality */
* {
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* Internet Explorer 10+ */
}
/* WebKit browsers (Chrome, Safari) */
*::-webkit-scrollbar {
display: none;
}