custom.scss 1.2 KB
Newer Older
Spark's avatar
layout    
Spark committed
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
@import "~bootstrap/scss/functions";

$primary: #6FCBFE;
$secondary: #F1D8BA;
$info: #DBEBF8;
$warning: #F2B705;
$GrayishSkyBlue: #739DB6;
$MinDarkBlue: #59b7e3;
$Gray: #adb5bd;
$LotusSky: #E3F0FC;
$LightGray: #e0e0e0;
$maingreen: rgb(110, 189, 142);

@import "~bootstrap/scss/variables";
@import "~bootstrap/scss/mixins";

$custom-colors: (
    "GrayishSkyBlue": $GrayishSkyBlue,
    "MinDarkBlue": $MinDarkBlue,
    "Gray": $Gray,
    "LotusSky": $LotusSky,
    "LightGray": $LightGray
);
    
$theme-colors: map-merge($theme-colors, $custom-colors);
@import '~bootstrap/scss/bootstrap.scss';
    
.card-header {
    background-color: $info !important;
    color: $GrayishSkyBlue;
}

.btn-primary:hover {
    background-color: $secondary !important;
    border-color: $secondary !important;
}

.btn-Gray:hover {
    background-color: $secondary !important;
    border-color: $secondary !important;
}

.dropdown-item:hover {
    background-color: $GrayishSkyBlue !important;
    color: #fff !important;
}

.page-link:focus {
    box-shadow: none;
}

// @import '~bootstrap-icons/font/bootstrap-icons';
// @media screen and (max-width: 768px) {
//     .table > :not(caption) > * > * {
//         border-bottom-width: 0;
//     }
// }