blob: b718b506a471673617af86c73c0ac790ac3c6722 (
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
|
.custom-flex-child {
min-width: 0;
}
.h3-truncate {
min-width: 0;
}
.custom-flex-child > .h3-truncate > .hide-overflow{
overflow: hidden;
text-overflow: ellipsis !important;
}
.custom-flex-child > .hide-overflow{
overflow: hidden;
text-overflow: ellipsis !important;
}
.hide-overflow{
overflow: hidden;
text-overflow: ellipsis !important;
}
.footer-col {
padding-right: 20px;
padding-left: 20px;
}
.w-55 {
width: 55% !important;
}
.h-40 {
height: 40% !important;
}
.h-45 {
height: 45% !important;
}
.text-small {
font-size: 80%;
}
.mt-10 {
margin-top: 10px;
}
.mt-20 {
margin-top: 20px;
}
.text-dotted {
text-decoration: underline dotted;
}
.off-badge {
color: white;
font-size: 150%;
padding-right: 10px;
padding-left:10px;
opacity: 0.9;
}
.off-badge-small {
font-size: 120%;
}
.text-large {
font-size: 120%;
}
.img-grey {
opacity: 0.7;
filter: grayscale(100%);
}
|