blob: 474750792dc4e10e2829c494c18ec92f4a7a5913 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/** Office sections
* (main layout css-classes)
* -----------------------------------------------------------------------------
* .office {
* .top-bar {
* .breadcrumb
* .admin
* }
* .side-bar {
* .search
* .categories
* }
* .content
* }
* -----------------------------------------------------------------------------
*/
/* Variables
* ----------------------------------------------------------------------------
*/
:root {
--class-blue: #337ab7;
--class-blue-opaque: #337ab799;
--class-blue-dark: #082e44;
--class-orange: #f47920;
--class-orange-opaque: #f4792099;
--class-grey-background: #eeedeb;
--class-red: #d13;
--light-grey-bgr: #f2f3f8;
}
/* main layout classes
* ----------------------------------------------------------------------------
*/
.office .top-bar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 14px;
border-bottom: 1px solid #ddd;
box-shadow: 1px 1px 7px #9997;
background: var(--light-grey-bgr);
}
.office .top-bar .fa,
.office .top-bar .fas {
width: 32px;
text-align: center;
}
.office .main-content {
padding: 1.5em;
max-width: 1440px;
min-height: calc(100vh - 345px);
}
.office .page-container { max-width: 1024px; }
|