start new version of website

This commit is contained in:
2023-05-18 16:38:40 +02:00
parent 951853b105
commit ccf1c67837
36 changed files with 365 additions and 0 deletions

45
newVersion/css/style.css Normal file
View File

@@ -0,0 +1,45 @@
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
font-size: calc( 16pt + 0.39vw );
}
body {
background-color: rgb(14, 14, 14);
font-family: sans-serif;
}
/*
GRADIENTS
*/
.gradient-purple {
background-image: repeating-linear-gradient(to right, rgb(85, 19, 116), rgb(131, 28, 151), rgb(119, 77, 128));
width: fit-content;
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
/*
SIZES
*/
.huge {
font-size: 500%;
}
.bigger {
font-size: 200%;
}
.small-margin {
margin: 0.5%;
}
.no-margin {
margin: 0;
}