SkunkyURL/etc/theme.css

82 lines
1.5 KiB
CSS

html {
/* background-color: black; */
background-image: url(/etc/background.png);
background-size: cover;
background-size: 200%;
}
html, body {
font-family: ubuntu;
margin: 0;
}
html h1, p {
color: antiquewhite;
}
header {
position: sticky;
top: 0;
background-color: rgba(100, 100, 100, 0.364);
backdrop-filter: blur(100px);
display: flex;
margin-bottom: 3%;
padding-left: 1%;
padding-right: 1%;
}
.links {
margin-top: auto;
margin-bottom: auto;
margin-left: auto;
}
.links a {
margin-left: 7px;
}
main {
display: flex;
justify-content: center;
}
body {
background-color: rgba(0, 0, 0, 0.558);
backdrop-filter: blur(20px);
height: 100%;
}
button {
background-color: #4600a2;
padding: 9px;
border-radius: 3%;
color: white;
transition: 0.2s;
width: max-content;
border: none;
}
button:hover {
background-color: #7000c0;
box-shadow: 0px 0px 50px 1px #4600a2;
}
form {
background-image: linear-gradient(to top, rgb(14, 25, 64), rgb(52, 0, 120));
padding: 3%;
border-radius: 1%;
margin-top: auto;
margin-bottom: auto;
width: 220px;
}
form button {
display: flex;
margin-left: auto;
margin-right: auto;
}
form input {
background-color: #5d5d5d8f;
color: white;
border: none;
border-radius: 2px;
padding: 2%;
font-size: smaller;
display: flex;
margin-left: auto;
margin-right: auto;
}
form p {
display: flex;
font-size: medium;
}