annotate src/main.css @ 41:44bd161e4779

layout
author drewp@bigasterisk.com
date Thu, 05 Dec 2024 21:33:25 -0800
parents 0aea9e55899b
children c2c51aae3e31
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
22
ff73b95fc72f frontend cleanups and improvements. this commit contains some future work too
drewp@bigasterisk.com
parents: 13
diff changeset
1 * {
ff73b95fc72f frontend cleanups and improvements. this commit contains some future work too
drewp@bigasterisk.com
parents: 13
diff changeset
2 font-family: sans-serif;
ff73b95fc72f frontend cleanups and improvements. this commit contains some future work too
drewp@bigasterisk.com
parents: 13
diff changeset
3 }
ff73b95fc72f frontend cleanups and improvements. this commit contains some future work too
drewp@bigasterisk.com
parents: 13
diff changeset
4
2
78c1a2983010 rewrite UI and file serving parts; use vite
drewp@bigasterisk.com
parents:
diff changeset
5 body {
22
ff73b95fc72f frontend cleanups and improvements. this commit contains some future work too
drewp@bigasterisk.com
parents: 13
diff changeset
6 margin: 0;
ff73b95fc72f frontend cleanups and improvements. this commit contains some future work too
drewp@bigasterisk.com
parents: 13
diff changeset
7 height: 100vh;
ff73b95fc72f frontend cleanups and improvements. this commit contains some future work too
drewp@bigasterisk.com
parents: 13
diff changeset
8 background: radial-gradient(ellipse at center, #162c4a 0%, #0c2236 36%, #020f16 100%) !important;
38
0aea9e55899b hack in path router - dirs kind of work; putting a video in the path doesn't
drewp@bigasterisk.com
parents: 24
diff changeset
9 color: white;
0aea9e55899b hack in path router - dirs kind of work; putting a video in the path doesn't
drewp@bigasterisk.com
parents: 24
diff changeset
10 }
0aea9e55899b hack in path router - dirs kind of work; putting a video in the path doesn't
drewp@bigasterisk.com
parents: 24
diff changeset
11
0aea9e55899b hack in path router - dirs kind of work; putting a video in the path doesn't
drewp@bigasterisk.com
parents: 24
diff changeset
12 header {
0aea9e55899b hack in path router - dirs kind of work; putting a video in the path doesn't
drewp@bigasterisk.com
parents: 24
diff changeset
13 background: rgb(247 112 31 / 44%);
41
drewp@bigasterisk.com
parents: 38
diff changeset
14 border-bottom: 3px solid black;
drewp@bigasterisk.com
parents: 38
diff changeset
15 display: flex;
drewp@bigasterisk.com
parents: 38
diff changeset
16 align-items: center;
drewp@bigasterisk.com
parents: 38
diff changeset
17 }
drewp@bigasterisk.com
parents: 38
diff changeset
18
drewp@bigasterisk.com
parents: 38
diff changeset
19 footer {
drewp@bigasterisk.com
parents: 38
diff changeset
20 background: rgb(247 112 31 / 44%);
drewp@bigasterisk.com
parents: 38
diff changeset
21 border-top: 3px solid black;
drewp@bigasterisk.com
parents: 38
diff changeset
22 display: flex;
drewp@bigasterisk.com
parents: 38
diff changeset
23 align-items: center;
drewp@bigasterisk.com
parents: 38
diff changeset
24 margin-top: 3em;
drewp@bigasterisk.com
parents: 38
diff changeset
25 padding: 6px;
38
0aea9e55899b hack in path router - dirs kind of work; putting a video in the path doesn't
drewp@bigasterisk.com
parents: 24
diff changeset
26 }
0aea9e55899b hack in path router - dirs kind of work; putting a video in the path doesn't
drewp@bigasterisk.com
parents: 24
diff changeset
27
0aea9e55899b hack in path router - dirs kind of work; putting a video in the path doesn't
drewp@bigasterisk.com
parents: 24
diff changeset
28 header img {
0aea9e55899b hack in path router - dirs kind of work; putting a video in the path doesn't
drewp@bigasterisk.com
parents: 24
diff changeset
29 height: 50px;
0aea9e55899b hack in path router - dirs kind of work; putting a video in the path doesn't
drewp@bigasterisk.com
parents: 24
diff changeset
30 vertical-align: middle;
22
ff73b95fc72f frontend cleanups and improvements. this commit contains some future work too
drewp@bigasterisk.com
parents: 13
diff changeset
31 }
ff73b95fc72f frontend cleanups and improvements. this commit contains some future work too
drewp@bigasterisk.com
parents: 13
diff changeset
32
ff73b95fc72f frontend cleanups and improvements. this commit contains some future work too
drewp@bigasterisk.com
parents: 13
diff changeset
33 h1,
ff73b95fc72f frontend cleanups and improvements. this commit contains some future work too
drewp@bigasterisk.com
parents: 13
diff changeset
34 h2,
ff73b95fc72f frontend cleanups and improvements. this commit contains some future work too
drewp@bigasterisk.com
parents: 13
diff changeset
35 h3,
ff73b95fc72f frontend cleanups and improvements. this commit contains some future work too
drewp@bigasterisk.com
parents: 13
diff changeset
36 a {
ff73b95fc72f frontend cleanups and improvements. this commit contains some future work too
drewp@bigasterisk.com
parents: 13
diff changeset
37 color: white;
ff73b95fc72f frontend cleanups and improvements. this commit contains some future work too
drewp@bigasterisk.com
parents: 13
diff changeset
38 }