blob: 9d69997be7947702f46e8934014faab71a4738e1 (
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
|
@import "./theme.css";
* {
box-sizing: border-box;
margin-inline: 0;
margin-block: 0;
}
body {
background: var(--cru-bg-color);
color: var(--cru-text-color);
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.cru-text-center {
text-align: center;
}
.cru-text-end {
text-align: end;
}
.cru-float-left {
float: left;
}
.cru-float-right {
float: right;
}
.cru-align-text-bottom {
vertical-align: text-bottom;
}
.cru-align-middle {
vertical-align: middle;
}
.cru-clearfix::after {
clear: both;
}
.cru-fill-parent {
width: 100%;
height: 100%;
}
.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-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;
}
}
|