72 lines
873 B
CSS
72 lines
873 B
CSS
html {
|
|
height: 100vh;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
|
|
"Lucida Sans", Arial, sans-serif;
|
|
color: white;
|
|
height: 100%;
|
|
}
|
|
body::before {
|
|
z-index: -1;
|
|
content: "";
|
|
font-size: 28px;
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
a {
|
|
color: rgb(18, 229, 113);
|
|
}
|
|
a:visited {
|
|
color: rgb(23, 138, 125);
|
|
}
|
|
|
|
#app {
|
|
height: 100%;
|
|
background: radial-gradient(rgb(24, 82, 65), rgb(1, 42, 16));
|
|
}
|
|
|
|
.hand {
|
|
background: radial-gradient(rgb(24, 70, 82), rgb(1, 42, 41));
|
|
}
|
|
|
|
.full {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.w-full {
|
|
width: 100%;
|
|
}
|
|
|
|
.center {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.free {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.fixed-br {
|
|
position: fixed;
|
|
bottom: 0;
|
|
right: 0;
|
|
}
|
|
|
|
.clear {
|
|
pointer-events: none;
|
|
}
|