blob: 0cc20110fe6d1da5a1a5f9a8c65e182b9a7e60ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*!
* 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;
;
}
|