Files
rwv/sign.css
2019-03-30 23:28:27 -04:00

77 lines
1019 B
CSS

/*Signin/Signup page*/
body{
font-family: Trebuchet MS;
font-size: 1.1em;
}
form{
margin: auto;
padding-top: 5%;
padding-bottom: 5%;
margin-top: 5%;
border: 2px solid black;
border-radius: 3px;
width: 40%;
}
form>*{
display: block;
margin: auto;
text-align: center;
}
form>h1{
margin-bottom: 40px;
}
input:not(#submit){
width: 40%;
height: 1.2em;
text-align: left;
font-size: 1.2em;
outline-width: 0;
}
.p{
margin-bottom: 7px;
}
#submit{
width: 120px;
height: 45px;
background-color: #04043c;
color: white;
border: 0px solid white;
font-size: 1em;
}
#submit:hover{
cursor: pointer;
}
#username{
margin-bottom: 15px;
}
#password{
margin-bottom: 20px;
}
#cookies{
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: #252525;
color: white;
text-align: center;
padding: 2% 0;
font-family: sans-serif;
}
#cookies>p{
width: 80%;
margin: 0 auto;
}
#cookies>a{
font-size: 0.9em;
color: white;
}