45 lines
635 B
CSS
45 lines
635 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;
|
|
}
|
|
|
|
/*
|
|
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;
|
|
} |