diff options
| author | Martial Simon <msimon_fr@hotmail.com> | 2023-07-08 14:44:13 +0200 |
|---|---|---|
| committer | Martial Simon <msimon_fr@hotmail.com> | 2023-07-08 14:44:13 +0200 |
| commit | 2c269250677a808b7c0abc0e7bbf8a440ffeeb1f (patch) | |
| tree | abcad541abab533580a93f7d54b7c2d5beeddb7b /style.css | |
| parent | 156302fded32688a0dd38083673e20e5977ef9c3 (diff) | |
fix: fixed horizontal scrolling
Diffstat (limited to 'style.css')
| -rw-r--r-- | style.css | 18 |
1 files changed, 14 insertions, 4 deletions
@@ -20,6 +20,8 @@ body.index{ position: fixed; right:8px; top: 2px; + background-color: rgba(220, 237, 200, 0.9); + border-radius: 3px; } br{ @@ -87,11 +89,16 @@ a.text-link::after{ justify-content: flex-start; } +.container{ + padding: 0 3%; + min-width: 93vw; + width: auto; +} + .content{ - margin: 3%; + margin: 3% 0; + margin-bottom: auto; padding: 1%; - min-width: 90vw; - width: auto; background-color: rgba(220, 237, 200, 0.65); border-radius: 5px; border: 5px dotted #b4d545; @@ -128,7 +135,10 @@ a.text-link::after{ .footer{ position: fixed; top: 5px; - margin:auto; + margin: 0 auto; + background-color: rgba(220, 237, 200, 0.9); + border-radius: 3px; + /*right: 50%;*/ animation-name: foot-anim; animation-duration: 6s; animation-iteration-count: infinite; |
