61 lines
1.0 KiB
CSS
61 lines
1.0 KiB
CSS
body {
|
|
background-image: linear-gradient(to bottom right, #512483, #000000) !important;
|
|
background-color: #512483;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: cover !important;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
text-align: center;
|
|
}
|
|
|
|
*, *:active, *:focus, *:hover, *:visited, *:link {
|
|
color: #e6d5f6;
|
|
text-decoration: none;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
body, main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
p, main a {
|
|
font-weight: bold;
|
|
font-size: 1.5em;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 3em;
|
|
margin-bottom: 0;
|
|
background-image: url(../img/logo-light.svg);
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: contain;
|
|
color: transparent !important;
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
}
|
|
|
|
hr {
|
|
width: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
main {
|
|
margin-top: 50px;
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
main a {
|
|
padding: 10px 20px;
|
|
}
|
|
|
|
main a:hover {
|
|
background-color: #ffffff14;
|
|
}
|