diff options
author | Jordan Bracco <href@random.sh> | 2022-03-31 03:59:05 +0000 |
---|---|---|
committer | Jordan Bracco <href@random.sh> | 2022-03-31 03:59:05 +0000 |
commit | f836ca4eab996342b1873dd708bbb0cd0e2def24 (patch) | |
tree | 1c6e9f5ccd48512c2e5d4e2591735cd451bbcaf7 /src/site.css |
Diffstat (limited to 'src/site.css')
-rw-r--r-- | src/site.css | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/site.css b/src/site.css new file mode 100644 index 0000000..1c47ac0 --- /dev/null +++ b/src/site.css @@ -0,0 +1,33 @@ +body { + max-width: 960px; + margin: 0 auto; + font-size: 1.2em; + color: #0f172a; +} + +body > header > h1 > a { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + -webkit-font-smoothing: antialiased; + text-decoration: none; + color: black; +} + +body > header { + margin-bottom: 2em; +} + +ul.buttons { + list-style-type: none; +} +ul.buttons > li { + display: inline-block; + margin-right: 0.5em; +} +ul.buttons > li > a { + display: inline-block; + background-color: #d4d4d8; + color: #18181b; + padding: 0.2em 0.3em; + text-decoration: none; + border: 1px solid #52525b; +} |