blob: aaaaad58c1b1ecd9e88079764c58588520853fe4 (
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
.cru-avatar {
width: 60px;
height: 60px;
}
.cru-avatar.large {
width: 100px;
height: 100px;
}
.cru-avatar.small {
width: 40px;
height: 40px;
}
.cru-round {
border-radius: 50%;
}
.cru-skeleton {
padding: 0 1em;
}
.cru-skeleton-line {
height: 1em;
background-color: #e6e6e6;
margin: 0.7em 0;
border-radius: 0.2em;
}
.cru-skeleton-line.last {
width: 50%;
}
.cru-full-page {
position: fixed;
z-index: 1031;
left: 0;
top: 0;
right: 0;
bottom: 0;
background-color: white;
padding-top: 56px;
}
.cru-full-page-top-bar {
height: 56px;
position: absolute;
top: 0;
left: 0;
right: 0;
z-index: 1;
background-color: var(--tl-primary-color);
display: flex;
align-items: center;
}
.cru-full-page-content-container {
overflow: scroll;
}
.cru-menu {
min-width: 200px;
}
.cru-menu-item {
font-size: 1.2em;
padding: 0.5em 1.5em;
cursor: pointer;
}
.cru-menu-item.color-primary {
color: #0d6efd;
}
.cru-menu-item.color-primary:hover {
color: white;
background-color: #0d6efd;
}
.cru-menu-item.color-secondary {
color: #6c757d;
}
.cru-menu-item.color-secondary:hover {
color: white;
background-color: #6c757d;
}
.cru-menu-item.color-success {
color: #198754;
}
.cru-menu-item.color-success:hover {
color: white;
background-color: #198754;
}
.cru-menu-item.color-info {
color: #0dcaf0;
}
.cru-menu-item.color-info:hover {
color: white;
background-color: #0dcaf0;
}
.cru-menu-item.color-warning {
color: #ffc107;
}
.cru-menu-item.color-warning:hover {
color: white;
background-color: #ffc107;
}
.cru-menu-item.color-danger {
color: #dc3545;
}
.cru-menu-item.color-danger:hover {
color: white;
background-color: #dc3545;
}
.cru-menu-item.color-light {
color: #f8f9fa;
}
.cru-menu-item.color-light:hover {
color: white;
background-color: #f8f9fa;
}
.cru-menu-item.color-dark {
color: #212529;
}
.cru-menu-item.color-dark:hover {
color: white;
background-color: #212529;
}
.cru-menu-item-icon {
margin-right: 1em;
}
.cru-menu-divider {
border-top: 1px solid #e9ecef;
}
.cru-tab-pages-action-area {
display: flex;
align-items: center;
}
.alert-container {
position: fixed;
z-index: 1070;
}
@media (min-width: 576px) {
.alert-container {
bottom: 0;
right: 0;
}
}
@media (max-width: 575.98px) {
.alert-container {
bottom: 0;
right: 0;
left: 0;
text-align: center;
}
}
|