I was supposed to optimise, but I relised I couldn't be asked

This commit is contained in:
Michał Gdula 2022-07-14 14:04:40 +01:00
parent a7150c089b
commit 5dab307513
6 changed files with 84 additions and 74 deletions

View file

@ -4,11 +4,9 @@
:root {
--bg: #151515df;
--bg-alt: #E8E3E3;
--bg-dark: #242621;
--bg-dark-alt: #1D1E1C;
--bg-1: #242621;
--bg-2: #1D1E1C;
--h: #8C977D;
--fg:#E8E3E3;
--fg-dark: #151515;
@ -26,7 +24,7 @@
html {
margin: 0; padding: 0;
background-color: var(--bg-dark-alt);
background-color: var(--bg-2);
background-image: url("images/bg-6.svg");
height: 100vh;
@ -39,7 +37,7 @@ body {
margin: 0 auto; padding: 1rem;
max-width: 969px; width: auto; min-width: none;
background-color: var(--bg-alt);
background-color: var(--bg-1);
background: none;
}
@ -50,7 +48,7 @@ p,a {
h1,h2,h3,h4 {
font-family: "Lexend Deca", sans-serif;
font-weight: 600;
color: var(--h);
color: var(--green);
}
h1 {
font-size: 40px;
@ -84,6 +82,12 @@ a:visited {
text-decoration: underline;
}
hr {
height: 0.2rem;
background-color: var(--green);
}
span {
display: inline;
}