summaryrefslogtreecommitdiff
path: root/static/index.css
diff options
context:
space:
mode:
authorLinnnus <[email protected]>2024-03-20 19:20:10 +0100
committerLinnnus <[email protected]>2024-03-20 19:20:18 +0100
commit2729f53fd3b0c074234b355619a849792b5070a2 (patch)
tree902c9172e6cefbc85ec0da60fc5960c36fbf50f2 /static/index.css
parent87d67a8c0ddfb2843bdcf52513b6acf62ed3d471 (diff)
Add achievements banner to index
Diffstat (limited to 'static/index.css')
-rw-r--r--static/index.css28
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 {
+}