2016-10-15 03:31:04 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2016-11-21 21:07:44 +03:00
|
|
|
#layout-container {
|
2016-10-15 03:31:04 +03:00
|
|
|
height: 100%;
|
2016-11-12 16:00:48 +03:00
|
|
|
width: 100%;
|
2016-11-29 14:33:04 +03:00
|
|
|
overflow: auto;
|
2016-10-15 03:31:04 +03:00
|
|
|
}
|
|
|
|
|
2016-11-29 14:33:04 +03:00
|
|
|
/**
|
|
|
|
* Grid Container
|
|
|
|
*/
|
|
|
|
|
|
|
|
#layout-grid-container {
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Grid List
|
|
|
|
*/
|
|
|
|
|
|
|
|
.layout-grid-list-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.layout-grid-list-container > span {
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#layout-grid-list {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#layout-grid-list li {
|
|
|
|
padding: 4px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Container when no grids are present
|
|
|
|
*/
|
|
|
|
|
2016-11-21 21:07:44 +03:00
|
|
|
.layout-no-grids {
|
2016-10-15 03:31:04 +03:00
|
|
|
font-style: italic;
|
|
|
|
text-align: center;
|
|
|
|
padding: 0.5em;
|
|
|
|
}
|