136 lines
2.2 KiB
CSS
136 lines
2.2 KiB
CSS
*,
|
|
*:before,
|
|
*:after {
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
font-family: 'Open Sans';
|
|
}
|
|
|
|
body {
|
|
background: -webkit-gradient(linear, left top, left bottom, from(#000000f0), to(#00000070)), url("bg.jpg") no-repeat center center fixed;
|
|
background: linear-gradient(#000000f0, #00000070), url("bg.jpg") no-repeat center center fixed;
|
|
background-size: cover;
|
|
height: 100vh;
|
|
margin: 0;
|
|
color: #363636;
|
|
}
|
|
|
|
body #wrapper {
|
|
padding-top: 20px;
|
|
}
|
|
|
|
body a {
|
|
font-size: 12px;
|
|
color: #363636;
|
|
text-decoration: none;
|
|
}
|
|
|
|
body a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
body a#home {
|
|
display: inline-block;
|
|
width: 50%;
|
|
text-align: left;
|
|
}
|
|
|
|
body a#login {
|
|
display: inline-block;
|
|
width: 50%;
|
|
text-align: right;
|
|
}
|
|
|
|
body #banner {
|
|
background-image: url(banner.png);
|
|
background-size: contain;
|
|
height: 63px;
|
|
width: 300px;
|
|
margin: 60px auto;
|
|
}
|
|
|
|
body #footer {
|
|
max-width: 500px;
|
|
padding: 15px 35px;
|
|
font-size: 12px;
|
|
background-color: #f0f0f0;
|
|
color: #7a7b76;
|
|
margin: auto;
|
|
text-align: center;
|
|
}
|
|
|
|
body #footer a {
|
|
color: #0066cc;
|
|
}
|
|
|
|
body #form {
|
|
background-color: white;
|
|
padding: 20px 40px 30px 40px;
|
|
max-width: 500px;
|
|
margin: auto;
|
|
border-top: 4px solid #0066cc;
|
|
}
|
|
|
|
body #form h1 {
|
|
font-weight: 300;
|
|
font-size: 24px;
|
|
text-align: center;
|
|
}
|
|
|
|
body #form p {
|
|
text-align: center;
|
|
}
|
|
|
|
body #form p a {
|
|
color: #0066cc;
|
|
font-size: inherit;
|
|
}
|
|
|
|
body #form p.error {
|
|
color: #c40233;
|
|
}
|
|
|
|
body #form label {
|
|
display: inline-block;
|
|
font-size: 12px;
|
|
margin-top: 15px;
|
|
}
|
|
|
|
body #form input[type='email'],
|
|
body #form textarea {
|
|
width: 100%;
|
|
height: 2.25rem;
|
|
border: 1px solid #ededed;
|
|
border-bottom-color: #8a8d90;
|
|
padding: 5px 8px;
|
|
}
|
|
|
|
body #form input[type='email']:hover,
|
|
body #form textarea:hover {
|
|
border-bottom-width: 2px;
|
|
border-bottom-color: #0066cc;
|
|
}
|
|
|
|
body #form textarea {
|
|
resize: none;
|
|
height: 10rem;
|
|
}
|
|
|
|
body #form input[type='submit'] {
|
|
width: 100%;
|
|
background-color: #0066cc;
|
|
color: white;
|
|
padding: 6px 16px;
|
|
border: none;
|
|
margin-top: 15px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
body #form input[type='submit']:hover {
|
|
background-color: #004080;
|
|
}
|
|
|
|
body .small {
|
|
font-size: 12px;
|
|
}
|
|
/*# sourceMappingURL=style.css.map */ |