diff options
| author | Martial Simon <msimon_fr@hotmail.com> | 2024-08-25 12:29:36 +0200 |
|---|---|---|
| committer | Martial Simon <msimon_fr@hotmail.com> | 2024-08-25 12:29:36 +0200 |
| commit | 7a7791ed9ad69986010ed7b2ba9e86a5caf4c440 (patch) | |
| tree | ed8826856f45fd97e3b1ef7f6cf6ff548438e87c /style.css | |
| parent | e4226bfb36b7229f57a4e2b0ff44ae1c754d977b (diff) | |
feat: almost finished the text content
Diffstat (limited to 'style.css')
| -rw-r--r-- | style.css | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -1,12 +1,21 @@ body { background: url("img/bg.jpg"); color: beige; + --cont-margin: 15%; +} + +#content { + margin: auto 4vw; } h1 { text-shadow: 0.2em -0.4em #00ed60, 0.4em 0.4em #a794ff; } +h2, h3, h4 { + transform: rotate3d(1, 1, 0, -25deg); +} + #Introduction { font-style: italic; text-align: end; @@ -60,6 +69,16 @@ path#id_12 { animation-delay: 3.6s; } +.left-container { + text-align: start; + margin-right: var(--cont-margin); +} + +.right-container { + text-align: end; + margin-left: var(--cont-margin); +} + @keyframes hop{ 25% { transform: translateY(0.5em); |
