diff options
| author | Martial Simon <msimon_fr@hotmail.com> | 2023-07-07 17:00:57 +0200 |
|---|---|---|
| committer | Martial Simon <msimon_fr@hotmail.com> | 2023-07-07 17:00:57 +0200 |
| commit | 156302fded32688a0dd38083673e20e5977ef9c3 (patch) | |
| tree | 6d93f3ae5dcf1a2e16af00acf591f2045b877802 /style.css | |
| parent | 5fe9db9eb57e76bbf081685f9e851d70596d3417 (diff) | |
feat: started implementing side scrolling
Diffstat (limited to 'style.css')
| -rw-r--r-- | style.css | 18 |
1 files changed, 11 insertions, 7 deletions
@@ -1,7 +1,4 @@ body{ - display: flex; - flex-direction: column; - justify-content: center; background: url(img/wp.gif) no-repeat fixed; background-size:cover; text-align:center; @@ -84,12 +81,17 @@ a.text-link::after{ top: 3%; } +.content-container{ + display: flex; + flex-direction: row; + justify-content: flex-start; +} + .content{ - margin: auto; - margin-top: 2%; - margin-bottom: 2%; + margin: 3%; padding: 1%; - width: 75%; + min-width: 90vw; + width: auto; background-color: rgba(220, 237, 200, 0.65); border-radius: 5px; border: 5px dotted #b4d545; @@ -124,6 +126,8 @@ a.text-link::after{ } .footer{ + position: fixed; + top: 5px; margin:auto; animation-name: foot-anim; animation-duration: 6s; |
