hectamail-website/public/static/css/main.css

82 lines
1.2 KiB
CSS
Raw Permalink Normal View History

2023-11-04 16:46:10 +00:00
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100&display=swap');
body {
color: white;
text-align: center;
font-family: Roboto Mono;
background-color: rgb(20, 10, 30);
}
input {
padding: 10px;
background-color: rgb(67, 0, 166);
color: white;
border-style: none;
border-radius: 5px;
margin-top: 5px;
}
button {
padding: 10px;
background-color: rgb(67, 0, 166);
color: white;
border-style: none;
border-radius: 5px;
margin-top: 5px;
}
.pswdbox {
margin-top: 5px;
}
.spacer {
margin-top: 5px;
}
.spacer2 {
margin-top: 30px;
}
input[type="password"],
input[type="text"] {
background-color: rgb(91, 91, 91);
}
.headerbar {
position: fixed;
top: 0px;
left: 0px;
right: 0px;
background-color: #23064f;
height: 60px;
align-items: center;
display: flex;
}
.content {
position: fixed;
left: 0px;
right: 0px;
top: 60px;
}
.main {
font-size: 20px;
padding: 20px;
color: white;
text-decoration: none;
font-weight: bold;
background-color: #140a1e
}
a {
padding: 20px;
font-size: 18px;
text-decoration: none;
color: white;
}
a:hover {
background-color: #140a1e
}