73 lines
1.3 KiB
CSS
73 lines
1.3 KiB
CSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: sans-serif;
|
|
height: 100vh;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
header {
|
|
display: none;
|
|
}
|
|
|
|
.box {
|
|
background-color: rgba(0, 0, 0, 0.8);
|
|
border-radius: 10px;
|
|
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.8);
|
|
margin: auto auto;
|
|
padding: 40px;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
.box h2 {
|
|
margin: 0 0 30px 0;
|
|
padding: 0;
|
|
color: #fff;
|
|
text-align: center;
|
|
}
|
|
|
|
.box .inputBox label {
|
|
color: #fff;
|
|
}
|
|
|
|
.box .inputBox input {
|
|
background: transparent;
|
|
border: none;
|
|
border-bottom: 1px solid #fff;
|
|
color: #fff;
|
|
font-size: 18px;
|
|
letter-spacing: 2px;
|
|
margin-bottom: 30px;
|
|
outline: none;
|
|
padding: 10px 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.box input[type="submit"], .box button[type="submit"], a.button {
|
|
font-family: sans-serif;
|
|
background: #03a9f4;
|
|
font-size: 11px;
|
|
border: none;
|
|
border-radius: 5px;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
font-weight: 600;
|
|
padding: 10px 20px;
|
|
letter-spacing: 2px;
|
|
outline: none;
|
|
text-transform: uppercase;
|
|
text-decoration: none;
|
|
margin: 2px 10px 2px 0;
|
|
display: inline-block;
|
|
}
|
|
|
|
.box input[type="submit"]:hover, .box button[type="submit"]:hover, a.button:hover {
|
|
opacity: 0.8;
|
|
}
|