mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-08 17:12:25 +03:00
26 lines
415 B
CSS
26 lines
415 B
CSS
body {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
background-color: #f5f8fa;
|
|
}
|
|
|
|
#forgot-password-frame {
|
|
width: 630px;
|
|
margin: auto;
|
|
background: #FFF;
|
|
border: 1px solid #DDDADA;
|
|
padding: 70px;
|
|
}
|
|
|
|
.user-login {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
@media(max-width: 640px) {
|
|
#forgot-password-frame {
|
|
width: 100%;
|
|
padding: 20px;
|
|
}
|
|
}
|