/* @import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700"; | |
body { | |
font-family: 'Poppins', sans-serif; | |
background: #fafafa; | |
display: flex; | |
flex-direction: column; | |
align-items: center; | |
margin-left: 20%; | |
margin-right: 20%; | |
} | |
* { | |
font-family: 'Poppins', sans-serif; | |
} | |
.container { | |
display: flex; | |
flex-direction: column; | |
align-items: center; | |
justify-content: center; | |
justify-items: center; | |
margin-top: 5%; | |
margin-bottom: 5%; | |
width: 100%; | |
} | |
h1 { | |
font-size: 3em; | |
text-align: center; | |
color: blue; | |
} | |
form { | |
display: flex; | |
flex-direction: row; | |
margin-top: auto; | |
font-family: 'Poppins', sans-serif; | |
} | |
button { | |
margin: 0.5em; | |
padding: 0.5em; | |
background-color: blue; | |
color: white; | |
border: none; | |
border-radius: 0.5em; | |
padding-left: 1em; | |
padding-right: 1em; | |
font-size: 1.1em; | |
font-weight: 300; | |
line-height: 1.7em; | |
transition: all 0.3s; | |
cursor: pointer; | |
align-self: self-end; | |
} | |
button:disabled { | |
background-color: #ccc; | |
color: #666; | |
cursor: not-allowed; | |
} | |
button:hover { | |
background-color: #ace; | |
color: #fff; | |
} | |
input { | |
margin: 0.5em; | |
padding: 0.5em; | |
width: 35em; | |
} | |
p { | |
font-size: 1.1em; | |
font-weight: 300; | |
line-height: 1.7em; | |
color: #999; | |
max-width: 30em; | |
} | |
a { | |
color: blue; | |
text-decoration: none; | |
transition: all 0.3s; | |
} | |
a:hover, | |
a:focus { | |
color: cornflowerblue; | |
text-decoration: none; | |
transition: all 0.3s; | |
} | |
#content { | |
width: 100%; | |
padding: 20px; | |
min-height: 100vh; | |
transition: all 0.3s; | |
position: absolute; | |
top: 0; | |
right: 0; | |
} */ |