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