diff options
author | Linnnus <[email protected]> | 2024-03-20 19:20:10 +0100 |
---|---|---|
committer | Linnnus <[email protected]> | 2024-03-20 19:20:18 +0100 |
commit | 2729f53fd3b0c074234b355619a849792b5070a2 (patch) | |
tree | 902c9172e6cefbc85ec0da60fc5960c36fbf50f2 /static/index.css | |
parent | 87d67a8c0ddfb2843bdcf52513b6acf62ed3d471 (diff) |
Add achievements banner to index
Diffstat (limited to 'static/index.css')
-rw-r--r-- | static/index.css | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/static/index.css b/static/index.css index 06e60b1..0838304 100644 --- a/static/index.css +++ b/static/index.css @@ -36,3 +36,31 @@ font-size: large; font-style: italic; } + +.achievements { + padding: 2rem 1rem; + + /* Use a dark and twisted color to make this band stand out as a separate element. */ + background-color: #6e1818; + + /* Disperse achievements evenly horisontally */ + display: flex; + justify-content: space-around; + align-items: center; +} + +.achievements__item { + /* Stack the two children vertically */ + display: flex; + flex-direction: column; + align-items: center; +} + +.achievements__item__number { + /* Numbers should be big and attention grabbing */ + font-size: 2rem; + font-style: bold; +} + +.achievements__item__text { +} |