-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.css
More file actions
122 lines (122 loc) · 2.41 KB
/
app.css
File metadata and controls
122 lines (122 loc) · 2.41 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
114
115
116
117
118
119
120
121
122
html {
min-height: 100%;
--map-accent: rgb(183,174,156);
--vel-blue: rgb(23, 133, 194);
}
#content a, #content a:hover, #content a:visited {
color: var(--vel-blue, rgb(23, 133, 194));
}
header, main, footer, div {
flex-shrink: 0;
}
hr {
width: 100%;
}
#content div > *:first-child {
text-align: right;
padding-right: 1.5rem;
}
#content {
min-height: 50vh;
}
#content table {
width: 100%;
margin: 1.5em 0;
}
#content thead {
padding-bottom: .3em;
border-bottom: .2em solid var(--vel-blue, rgb(23,133,194));
}
#content p {
line-height: 1.5em;
}
#content ul {
line-height: 1.75em;
}
.superlist {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
list-style: none;
padding-left: 0;
}
.superlist a{
box-sizing: border-box;
font-weight: 700;
min-width: 13em;
width: 20%;
padding: 1.1em;
margin-bottom: .8em;
color: white;
background: var(--vel-blue, rgb(23,133,194));
border: .1em white solid;
border-radius: .2em;
}
.seperator-sun:after {
content: ' ';
display: block;
background-image: url("data:image/svg+xml,%3Csvg width='64' height='32' viewBox='-4 -4 60 28' xmlns='http://www.w3.org/2000/svg'%3E%3CclipPath id='cut-off'%3E%3Crect x='0' y='0' width='64' height='32'/%3E%3C/clipPath%3E%3Ccircle cx='28' cy='32' r='25' fill='%23ffec66' clip-path='url(%23cut-off)'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: center right;
width: 90%;
height: 3ch;
margin-top: -3.4ch;
}
footer a, footer a:hover, footer a:visited {
color: white;
}
.bg-vel-blue {
background-color: var(--vel-blue, rgb(23, 133, 194));
}
.vel-blue {
color: var(--vel-blue, rgb(23, 133, 194));
}
.sticky {
position: sticky;
}
.skew-y {
transform: skewY(-1.5deg);
}
.rotate-tiny {
transform: skewY(1.5) rotate(-1.5deg);
}
.origin-top-left {
transform-origin: left top;
}
.origin-top-right {
transform-origin: top right;
}
.bg-map-accent {
background-color: var(--map-accent, rgb(183,174,156));
}
.download[href$=".pdf"]::before {
content: '📄 '
}
.unselectable {
user-select: none;
-moz-user-select: none;
}
.invisible {
visibility: hidden;
}
.grid {
display: grid;
}
.gtc-repeat {
grid-template-columns: repeat(auto-fill, minmax(12em, 1fr));
}
.gg4 {
grid-gap: 2rem;
}
.object-contain {
object-fit: contain;
}
img + img {
margin-top: 1em;
}
.empty-hidden {
display: none;
}
.bg-desaturated-yellow {
background-color: color-mix(in lab, #fffceb, gray);
}