curious-greg/static/style.css

60 lines
915 B
CSS

body {
font-family: sans-serif;
margin: 2.5%;
text-align: center;
background-color: #282c37;
color: white;
}
h1, h2 {
font-weight: 300;
}
h1 {
font-size: 4em;
margin:0;
font-family:"Open Sans", sans-serif;
}
h2 {
font-size: 2.5em;
font-family:"Open Sans", sans-serif;
}
#footer {
position:absolute;
bottom:2.5%;
width:95%;
font-size:0.8em;
}
#footer, #footer a {
color: #aaa;
}
#logo-main {
height:300px;
width:300px;
}
form {
background-color: #444b5d;
display:inline-block;
padding:50px;
border-radius:5px;
font-size:1.4em;
}
input {
margin:20px;
font-size:1.2em;
}
button, .button {
font-size:1em;
text-transform: uppercase;
color:#2b90d9;
border: 2px #2b90d9 solid;
background-color:transparent;
border-radius:2px;
padding:10px 25px;
transition:0.2s all ease-in;
cursor: pointer;
text-decoration:none;
}
button:hover, .button:hover{
background-color:#2b90d9;
color:white;
}