Files
development-site/newVersion/css/style.css
2023-05-19 07:53:09 +02:00

70 lines
933 B
CSS

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;
}
::selection {
background-color: rgb(41, 37, 95);
color: white;
-webkit-background-clip: none;
background-clip: none;
-webkit-text-fill-color: currentColor;
}
/*
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;
}
/*
Colours
*/
.white {
color: white;
}
/*
SIZES
*/
.huge {
font-size: 500%;
}
.biggest {
font-size: 325%;
}
.bigger {
font-size: 200%;
}
.small-margin {
margin: 0.5%;
}
.no-margin {
margin: 0;
}
.half-width {
width: 50%;
}