aboutsummaryrefslogtreecommitdiff
path: root/assets/css/main.css
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/main.css')
-rw-r--r--assets/css/main.css160
1 files changed, 150 insertions, 10 deletions
diff --git a/assets/css/main.css b/assets/css/main.css
index ba53a5e..fff7794 100644
--- a/assets/css/main.css
+++ b/assets/css/main.css
@@ -1,10 +1,150 @@
1body { 1body {
2 min-height: 100vh; 2 min-height: 100vh;
3} 3}
4 4
5main { 5body::-webkit-scrollbar {
6 height: inherit; 6 display: none;;
7 display: flex; 7}
8 flex-direction: column; 8
9 justify-content: stretch; 9main {
10} \ No newline at end of file 10 height: inherit;
11 display: flex;
12 flex-direction: column;
13 justify-content: stretch;
14}
15
16.fixed {
17 position: fixed;
18 top: 0;
19}
20
21#actions {
22 width: 100%;
23 padding: .5rem;
24}
25
26#actions button:first-of-type {
27 margin-right: 1rem;
28}
29
30#actions button {
31 background: transparent;
32 border: none;
33 width: fit-content;
34 padding: 0;
35}
36
37#actions button:hover {
38 color:aquamarine !important;
39}
40
41.aligned.right {
42 justify-content: flex-end;
43}
44
45.flex {
46 display: flex;
47}
48
49.flex.row {
50 flex-direction: row;
51}
52
53.space-between {
54 justify-content: space-between;
55}
56
57.align-end {
58 align-items: flex-end;
59}
60
61.centered {
62 align-items: center;
63 justify-content: center;
64}
65
66.flex.col {
67 flex-direction: column;
68}
69
70.footer-info {
71 width: 100%;
72 justify-content: center;
73}
74
75.flex-end {
76 justify-content: flex-end;
77}
78
79.flex.footer-info {
80 gap: 1rem;
81}
82
83.footer-info .flex.col {
84 min-width: 250px;
85}
86
87.gap-1 {
88 gap: 1rem;
89}
90
91.wrap {
92 flex-wrap: wrap;
93}
94
95footer {
96 position:relative;
97}
98
99.post {
100 margin-bottom: 1em;
101}
102
103.wordmark {
104 font-size: 2em;
105 text-transform: uppercase;
106 font-weight: 600;
107}
108
109.icon span {
110 display: inline-block;
111 width: fit-content;
112 height: fit-content;
113}
114
115.icon svg {
116 width: 1em;
117 height: 1em;
118 margin-right: .4em;
119}
120
121.hide {
122 display: none;
123}
124
125.icon:hover {
126 color: inherit !important;
127}
128
129html[data-theme="dark"] .icon,
130html[data-theme="dark"] #actions button {
131 color: white;
132}
133
134html[data-theme="light"] .icon,
135html[data-theme="light"] #actions button {
136 color: #24333e;
137}
138
139.pills {
140 margin-top: 1em;
141}
142
143.pill {
144 background-color: #237fc0;
145 display: inline-block;
146 border-radius: .25em;
147 line-height: 1em;
148 padding: .5em .5em;
149 color: white;
150}