From 8809417987d66220d39d7eda88a4961f9fad0be5 Mon Sep 17 00:00:00 2001 From: marcellus Date: Sun, 2 Jul 2023 01:49:55 +0200 Subject: feat: added text shadow on index to improve the readability, added transition on buttons, will have to make a container --- style.css | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index db4309c..40c5808 100644 --- a/style.css +++ b/style.css @@ -9,16 +9,29 @@ body{ body.index{ height: 97vh; + text-shadow: 0 0 8px white; + font-family: serif; } .content{ /*margin-left: 10%; margin-right: 10%;*/ margin: auto; + border: 3px dotted #777777; border-radius: 8px; color: #ffffff; } +.button{ + padding: 5px; + transition-property: border; + transition-duration: 1s; +} + +.button:hover{ + border: 3px inset #888888; +} + ul{ list-style-type: none; margin: 0; @@ -38,7 +51,7 @@ div.zikos:nth-child(odd) .desc{ margin-right: 10px; } -div.zikos:nth-child(even){ +div.zikos:nth-child(even){ flex-direction: row; margin-left: 5%; } -- cgit v1.2.3