mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-20 11:51:25 +00:00
31 lines
613 B
CSS
31 lines
613 B
CSS
/* ============================================================
|
|
|
|
Screen styles for center part.
|
|
|
|
Datei : center.css
|
|
Datum : 2020-04-30
|
|
Autor : Christine Slotty
|
|
Copyright : Gradio
|
|
|
|
============================================================*/
|
|
@media screen {
|
|
.content {
|
|
display: flex;
|
|
justify-content: center;
|
|
overflow: auto;
|
|
line-height: 1.5em;
|
|
padding: 1.5em;
|
|
background-color: #f9fafb;
|
|
}
|
|
|
|
@media (max-width:619px) {
|
|
.content {
|
|
flex-direction: column;
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Ende @media screen */
|