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
|
@import "@catppuccin/palette/scss/_mocha.scss";
a {
color: $blue;
}
body {
font-family:
Noto Sans,
-apple-system,
BlinkMacSystemFont,
avenir next,
avenir,
segoe ui,
helvetica neue,
helvetica,
Cantarell,
Ubuntu,
roboto,
noto,
arial,
sans-serif;
color: $text;
background-color: $base;
max-width: 75%;
margin-left: auto;
margin-right: auto;
padding: 1.5rem;
@media (min-width: 768px) {
max-width: 50%;
}
}
nav {
align-items: center;
background-color: $surface0;
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: auto;
padding: 0.5rem;
a {
margin: 0.5rem;
}
@media (min-width: 375px) {
a {
margin: 0.75rem;
}
}
@media (min-width: 768px) {
a {
margin: 1rem;
}
}
@media (min-width: 1024px) {
a {
font-size: 1.5rem;
}
}
}
footer {
font-size: 0.6rem;
text-align: right;
@media (min-width: 768px) {
font-size: 0.75rem;
}
p {
margin: 0.25rem;
}
}
.main-content {
padding: 1rem;
}
.gif-buttons {
align-items: center;
display: flex;
flex-flow: row wrap;
justify-content: center;
}
.gif-button {
padding: 0.25rem;
}
|