website/main_theme.css

44 lines
822 B
CSS
Raw Normal View History

2022-10-30 20:04:09 -04:00
/* Page design by Unix_Petrel (Primrose) */
/* This CSS document is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. Get a copy of the license at https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode */
body {
background-image: url(/assets/backgrounds/purple_nebula.jpg);
color: #ffffff;
text-align: center;
font-family: sans-serif;
}
a:link {
color: #ffffff;
}
a:visited {
color: #ffffff;
}
a:hover {
color: #ffffff;
}
a:active {
color: #ffffff
}
.content {
margin: auto;
width: 60%;
}
.button {
background-color: rgba(255, 255, 255, 0.4);
backdrop-filter: blur(5px);
border-radius: 15px;
border: 0px solid #ffffff;
padding: 10px 10px;
text-decoration: none;
display: inline-block;
font-size: 15px;
margin: 4px 2px;
cursor: pointer;
}