forked from Checkmarx/kics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.css
101 lines (85 loc) · 2.36 KB
/
custom.css
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
:root {
--md-primary-fg-color: #ffbc42;
--md-primary-fg-color--light: #ffbc42;
--md-primary-fg-color--dark: #ffbc42;
--md-accent-fg-color: #ffbc42;
}
[data-md-color-scheme="kics"] {
--md-primary-fg-color: #ffbc42;
--md-primary-fg-color--light: #ffbc42;
--md-primary-fg-color--dark: #ffbc42;
--md-accent-fg-color: #ffac22;
}
.md-header {
color: black;
}
.md-tabs {
color: black;
}
[data-md-color-scheme="slate"] {
--md-hue: 210; /* [0, 360] */
}
.table {
table-layout: fixed;
word-wrap: break-word;
}
.hide-column-query-table {
display: none;
}
@media (max-width: 991px) {
#navbar-collapse {
overflow-y: hidden;
}
}
#version-selector {
width: 200px;
}
.queries-th {
max-width: 5rem;
background-color: #ffbc42 !important;
color: #212529 !important;
}
.border-input-queries{
box-sizing: border-box;
width: 100%;
}
.md-header__button.md-logo img{
display: block;
width: 110px;
height: 100px;
fill: currentColor;
}
/* ########## Bootstrap Button CSS ########## */
/* ########## Bootstrap Button CSS ########## */
.btn-success {
color: #212529 !important;
background-color: #ffbc42 !important;
border-color: #ffbc42 !important;
}
.btn-success:hover, .btn-outline-success:hover {
color: #212529 !important;
background-color: #ffcd53 !important;
border-color: #ffcd53 !important;
}
.btn-outline-success {
color: #ffbc42 !important;
border-color: #ffbc42 !important;
}
.btn {
display: inline-block;
font-weight: 400;
color: #212529;
text-align: center;
vertical-align: middle;
cursor: pointer;
border: 1px solid transparent;
padding: 0.375rem 0.75rem;
font-size: 0.9375rem;
line-height: 1.5;
border-radius: 0.25rem;
-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
/* ########## End Bootstrap Button CSS ########## */