Corrections

This commit is contained in:
gauvainboiche
2025-07-23 16:33:37 +02:00
parent 078dd982c3
commit 4a98c30f09

View File

@@ -15,10 +15,10 @@
*/ */
:root { :root {
--primary-color: #34cc26; --primary-color: #ccb626;
--secondary-color: #1fe743; --secondary-color: #e7b21f;
--primary-text-color: #FFFFFF; --primary-text-color: #FFFFFF;
--secondary-text-color: #4bb04b; --secondary-text-color: #b0954b;
--background-color: #454019; --background-color: #454019;
--font-family: 'Inconsolata', monospace; --font-family: 'Inconsolata', monospace;
} }
@@ -26,11 +26,14 @@
body { body {
background: var(--background-color); background: var(--background-color);
background: radial-gradient(circle,var(--background-color) 0%, black 100%); background: radial-gradient(circle,var(--background-color) 0%, black 100%);
background-size: cover;
color: var(--primary-text-color); color: var(--primary-text-color);
text-shadow: 0 0 5px var(--secondary-color); text-shadow: 0 0 5px var(--secondary-color);
font: 1rem Inconsolata, monospace; font: 1rem Inconsolata, monospace;
height: 100vh; height: 100vh;
width: 100vw; width: 800px;
display: grid;
grid-template-columns: repeat(2, 400px);
} }
body::after { body::after {
@@ -57,6 +60,10 @@ body::after {
/* Generecis elements */ /* Generecis elements */
header {
grid-column: 1 / 3;
}
h1, h2, p, li, form { h1, h2, p, li, form {
width: 75%; width: 75%;
padding: 10px; padding: 10px;