hs-anyone-web/templates/assets/css/index.css
Nathan Woodburn e9bad16917
All checks were successful
Build Docker / BuildImage (push) Successful in 28s
feat: Update some styling
2024-10-03 15:33:08 +10:00

43 lines
648 B
CSS

body {
background-color: #000000;
color: #ffffff;
}
h1 {
font-size: 50px;
margin: 0;
padding: 0;
}
.centre {
margin-top: 10%;
text-align: center;
}
a {
color: #ffffff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.footer {
position: fixed;
bottom: 0;
width: 100%;
height: 50px;
text-align: center;
}
input {
padding: 10px;
border-radius: 5px;
border: 1px solid #000000;
}
button {
padding: 10px;
border-radius: 5px;
border: 1px solid #000000;
}
button:hover {
background-color: #000000;
color: #ffffff;
border: 1px solid #ffffff;
}