blob: 978d2cb979ca87ebecb23a41e87f4cd7ced30f19 (
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
|
/*!
* Extra set of rules over Bootstrap
*/
.card:hover
{
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
transition: all .5s;
}
.green-text
{
color: rgb(120, 153, 34);
}
.text-bg-dark-shade
{
--bs-bg-opacity: 1;
color: #fff !important;
background-color: rgba(47, 49, 54, var(--bs-bg-opacity)) !important;
;
}
.limit-text
{
max-width: 30rem;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
|