58 lines
780 B
CSS
58 lines
780 B
CSS
.container {
|
|
}
|
|
|
|
.title h1 {
|
|
font-size: 80px;
|
|
font-weight: bold;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.title img {
|
|
height: 80px;
|
|
}
|
|
|
|
.title {
|
|
margin-top: 40px;
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
.card {
|
|
padding: 15px;
|
|
max-width: 350px;
|
|
width: 100% !important;
|
|
background-color: #F7F7F7;
|
|
margin: 0 auto;
|
|
border-radius: 2px;
|
|
box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
|
|
overflow: hidden;
|
|
height: 150px;
|
|
margin-top: 0px;
|
|
}
|
|
|
|
/*Margin by pixel:*/
|
|
@media screen and ( min-height: 400px ) {
|
|
.card {
|
|
margin-top: calc((100vh - 120px - 150px) / 2 - 60px)
|
|
}
|
|
}
|
|
|
|
.has-margin {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.input-group .form-control, .checkbox {
|
|
padding: 10px;
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
.error-message {
|
|
color: #d9534f;
|
|
}
|
|
|
|
button {
|
|
width: 100%;
|
|
font-size: 18px;
|
|
}
|