diff options
| author | marcellus <msimon_fr@hotmail.com> | 2023-07-02 01:49:55 +0200 |
|---|---|---|
| committer | marcellus <msimon_fr@hotmail.com> | 2023-07-02 01:49:55 +0200 |
| commit | 8809417987d66220d39d7eda88a4961f9fad0be5 (patch) | |
| tree | bcfdcc517297d4feef4e9bc8e9b80c16153482c3 /style.css | |
| parent | 3a51178d310f352417c85cb650a08c9ebb28dd70 (diff) | |
feat: added text shadow on index to improve the readability, added transition on buttons, will have to make a container
Diffstat (limited to 'style.css')
| -rw-r--r-- | style.css | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -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%; } |
