diff options
| author | ilotterytea <iltsu@alright.party> | 2025-12-06 16:03:44 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-12-06 16:03:44 +0500 |
| commit | 880776528c0acf361ee06b8a5ec6c4071c329d7f (patch) | |
| tree | c28600a0d369860ac1f0849b1fac7c04723ec4b1 /static/style.css | |
initial commit
Diffstat (limited to 'static/style.css')
| -rw-r--r-- | static/style.css | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..6ec0668 --- /dev/null +++ b/static/style.css @@ -0,0 +1,33 @@ +* { + margin: 0; + padding: 0; +} + +body { + width: 50em; + margin: 0 auto; + font-family: 'Times New Roman', Times, serif; +} + +header { + border: 1px solid black; + margin: 8px 0; + display: flex; + flex-direction: column; +} + +header .banner { + background-color: seagreen; + min-height: 10vh; + display: flex; + align-items: end; + justify-content: end; +} + +header .links { + padding: 4px; + border-top: 1px solid black; + display: flex; + flex-direction: row; + justify-content: space-around; +}
\ No newline at end of file |
