diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-12-12 20:47:13 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-12-12 20:47:13 +0100 |
| commit | c0d27c055055f4aada0a96b779e0bd661347160c (patch) | |
| tree | 7fe4dea3b7328d7b15305f21e3e295405786ff88 /static/global.css | |
| parent | da393520c4a1b33bffdfe26974e817f2c65267d3 (diff) | |
Port to svelte
Diffstat (limited to 'static/global.css')
| -rw-r--r-- | static/global.css | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/static/global.css b/static/global.css new file mode 100644 index 0000000..bb27236 --- /dev/null +++ b/static/global.css @@ -0,0 +1,24 @@ +body { + padding: 3em; +} + +main { + font-family: Times, 'Times New Roman', serif; + font-size: 4em; + font-weight: bold; + margin: 0.1em 0; +} + +a { + color: #00f; +} + +::selection { + color: #fff; + background-color: #FFD900; +} + +select { + padding: 0.1em; + margin: 1.2em 0; +} |