-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (44 loc) · 920 Bytes
/
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
@tailwind base;
@tailwind components;
@tailwind utilities;
@font-face {
font-family: "Hex Franklin";
src: url("https://d33wubrfki0l68.cloudfront.net/409516e806160febfc4d1d7902107ae378404d3f/fd4dc/fonts/hex-franklin/hex-franklin-0.2.woff2")
format("woff2");
font-weight: 1 999;
font-stretch: 0% 100%;
font-style: normal;
}
img + em {
margin-top: -2em;
font-size: 0.75em;
display: block;
text-align: center;
}
em {
font-style: normal;
@apply underline underline-offset-1;
}
svg {
color: rgb(234 88 12);
}
details > summary {
list-style: none;
}
summary::-webkit-details-marker {
display: none;
}
summary::after {
content: " ►";
font-size: 12px;
}
details[open] summary:after {
content: " ▼";
}
.addendum {
@apply bg-green-200 p-4 rounded-lg my-4 text-black;
}
.addendum::before {
content: "Addendum";
@apply text-green-600 font-bold uppercase text-xs block mb-2;
}