This repository has been archived on 2024-10-21. You can view files and clone it, but cannot push or open issues or pull requests.
furao-link/static/global.css
2024-10-06 00:48:33 +00:00

58 lines
917 B
CSS

* {
margin: 0;
padding: 0;
}
body {
font-family: Arial, Helvetica, sans-serif;
padding: 10%;
background: rgb(255, 255, 255);
}
main {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
main h1 {
font-size: 40px;
color: black;
text-decoration: none;
margin-bottom: 2px;
}
#msg a {
background-color:black;
color:white;
padding:1px;
}
main p {
font-size: 20px;
color: black;
text-shadow: 0px 10px 20px rgba(90, 90, 90, 0.8);
margin-bottom: 12px;
}
form input {
width: 400px;
background: black;
font-size: 20px;
outline: none;
border: solid 1.5px #000000;
border-radius: 5px;
color: #ffffff;
padding: 10px;
}
form input::placeholder {
color: white;
}
form input:not(:placeholder-shown){
transition: .4s;
box-shadow: rgba(20, 20, 20, 0.19) 0px 10px 20px, rgba(30, 30, 30, 0.23) 0px 6px 6px;;
}