-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmisc.css
74 lines (62 loc) · 1.29 KB
/
misc.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
.fart-section {
max-width: 64ch;
word-wrap: break-word;
margin: 6rem auto;
@media (max-width: 800px) {
padding: 0 1rem;
}
}
.fart-header {
font-family: "Overpass", sans-serif;
font-size: 1.5rem;
font-weight: 700;
}
.fart-inline {
display: grid;
grid-template-rows: 1fr;
grid-auto-flow: column;
gap: 2px;
}
.fart-button {
background-color: var(--fart-darker-dark-primary);
color: var(--fart-primary);
border: 1px solid var(--fart-primary);
border-radius: 5px;
padding: 0.25rem 0.5rem;
text-decoration: none;
transition: background-color 0.3s;
}
.fart-button:hover {
background-color: var(--fart-lighter-dark-primary);
text-decoration: underline;
}
.fart-topics {
margin-top: auto;
}
.fart-topic {
word-break: keep-all;
padding: 0.25rem 0.5rem;
border-radius: 5px;
background-color: var(--fart-lighter-dark-primary);
color: var(--fart-primary);
border-radius: 2rem;
display: inline-block;
margin: 2px;
}
.fart-logo {
position: absolute;
text-decoration: none;
}
.fart-logo:hover {
animation: fart-shake 560ms ease-in-out;
}
.fart-sparkle::before,
.fart-sparkle::after {
content: var(--fart-sparkle-text);
}
.fart-sparkle-before::before {
content: var(--fart-sparkle-text);
}
.fart-sparkle-after:after {
content: var(--fart-sparkle-text);
}