Add css for background and orbs

This commit is contained in:
Maxime Adler
2025-02-20 17:22:31 +01:00
parent 75f086b777
commit f653930142

View File

@@ -1,5 +1,59 @@
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;700&display=swap');
html, body { html, body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; margin: 0;
padding: 0;
height: 100%;
font-family: 'Noto Sans', sans-serif;
}
body {
background: linear-gradient(180deg, #2B1D3D 0%, #171229 100%);
overflow: hidden
}
html::before,
body::before,
body::after {
content: "";
position: absolute;
}
html::before {
/*Green orb*/
position: absolute;
width: 605px;
height: 605px;
left: 0px;
top: -188px;
background: #315941;
filter: blur(250px);
z-index: -999;
}
body::before {
/*Blue orb*/
position: absolute;
width: 1036px;
height: 1036px;
left: 26px;
top: 348px;
background: #3A4156;
filter: blur(250px);
z-index: -999;
}
body::after {
/*Reb orb*/
position: absolute;
width: 719px;
height: 719px;
left: 728px;
top: -188px;
background: #593533;
filter: blur(250px);
z-index: -999;
} }
h1:focus { h1:focus {