pigallery2/frontend/app/login/login.component.css
2017-07-17 18:30:16 +02:00

68 lines
901 B
CSS

.container {
}
.title h1 {
font-size: 80px;
font-weight: bold;
white-space: nowrap;
}
.title img {
height: 80px;
}
@media screen and ( max-width: 500px ) {
.title h1 {
font-size: 70px;
}
.title img {
height: 70px;
}
}
.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: 295px;
margin-top: 0px;
}
/*Margin by pixel:*/
@media screen and ( min-height: 600px ) {
.card {
margin-top: calc((100vh - 120px - 295px) / 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;
}