diff options
| author | Martial Simon <msimon_fr@hotmail.com> | 2023-06-28 13:24:56 +0200 |
|---|---|---|
| committer | Martial Simon <msimon_fr@hotmail.com> | 2023-06-28 13:24:56 +0200 |
| commit | 44f5ca09550fcb5de9c4411e61cbe8d02cb021b1 (patch) | |
| tree | 12ac8ddb6a91eb65077fed3148046a3987711c25 /style.css | |
| parent | a907fb793e959001b77ac9636d6fcfd2c3755f4f (diff) | |
feat: true centered body contents, played with pseudo classes for the return buttons
Diffstat (limited to 'style.css')
| -rw-r--r-- | style.css | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -1,10 +1,17 @@ body{ + display: flex; + flex-direction: column; + justify-content: center; background: url(img/wp.gif) no-repeat fixed; background-size:cover; text-align:center; font-family:Cousine; } +body.index{ + height: 97vh; +} + .frame{ margin-top=10px; margin-bottom=10px; @@ -107,13 +114,8 @@ a{ animation-timing-function: linear; } -@keyframes unopacitize{ - from{ - opacity: 1; - } - to{ - opacity: 0.6; - } +.footer::before, .footer::after{ + content: "<<<"; } @keyframes spin{ |
