diff options
author | Andrew Yu <andrew@andrewyu.org> | 2021-12-16 01:30:26 +0800 |
---|---|---|
committer | Andrew Yu <andrew@andrewyu.org> | 2021-12-16 01:30:26 +0800 |
commit | 6b68c18ec33b9573084c3fde69cefdc102795469 (patch) | |
tree | 3b6939f342b6d41d0922c2f3a5f81f2ef43eb1f7 /style.css | |
parent | 5458ca8d516ea65bf98239904836c28212cc39ca (diff) | |
download | www-6b68c18ec33b9573084c3fde69cefdc102795469.tar.gz |
rewrite styles; add questions section
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/style.css b/style.css new file mode 100644 index 0000000..c2ab6c9 --- /dev/null +++ b/style.css @@ -0,0 +1,38 @@ +body { + background-color: black; + color: white; + font-family: monospace; + width: 98%; + margin: auto; + line-height: 1.3; +} +h1 { + text-align: center; +} +.multicol { + display: flex; + flex-flow: row wrap; + justify-content: center; + align-items: flex-start; + align-content: flex-start; + gap: 2%; +} +.multicol div { + max-width: 75ex; + min-width: 35ex; + flex-basis: | auto; + /*******************************/ + /* margin: auto; */ + /* border: 1px solid white; */ + /* margin-left: auto; */ + /* margin-right: auto; */ + /* margin-bottom: auto; */ + /* width: 30%; */ + /* flex-shrink: 5; */ + /* flex-grow: 5; */ + /*******************************/ +} +#footer { + line-height: 1.2; + font-size: 80%; +} |