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
|
.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%);
}
.u {
text-decoration: underline;
}
.card {
/*
background-color: #d1d8e0;
box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
box-shadow: 0 .25rem .75rem #d1d8e0;
border: 0.5px solid #d1d8e0 !important;
box-shadow: 1rem 1rem 1rem #d1d8e0 !important;
*/
box-shadow: 0rem 0rem .5rem .15rem #d1d8e0, 1rem 1rem 1rem #d1d8e0 !important;
}
footer {
/*
background-color: #d1d8e0 !important;
box-shadow: -0.5rem 0 .1rem .15rem #d1d8e0;
box-shadow: 0 -0.5rem .1rem .05rem #d1d8e0;
*/
box-shadow: 0 -0.2rem .1rem .05rem #d1d8e0;
}
.jumbotron.box-shadow {
box-shadow: 0rem 0rem .5rem .15rem #d1d8e0, 1rem 1rem 1rem #d1d8e0 !important;
}
.text-fade-out {
position: absolute;
bottom: 45%;
left: 0;
width: 100%;
text-align: center;
margin: 0; padding: 8px 0;
background-image: linear-gradient(to bottom, transparent, white);
}
/*
* Not used.
*/
.created_at {
bottom: 5px;
/*
margin-top: 200%;
*/
position: absolute;
background-color: #d1d8e0 !important;
color: #142639 !important;
padding-left:5px;
padding-right: 5px;
opacity: 0.9;
}
.footer-link {
padding-left: 0px !important;
}
.navbar-small {
font-size: 70% !important;
}
.search-btn-bg-white {
/*
*/
background-color: rgba(255,255,255,0.05)!important;
}
.search-btn-bg-white:hover {
background-color: rgba(255,255,255,.15)!important;
}
|