blob: 6bbdb3fffce03c58bbcae4c5ce860d68b0cdeb30 (
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
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
|
nav ,body{
background-color:#fff !important;
color:#343a40 !important;
}
header{
background-color:#f8f9fa !important;
color:#343a40 !important;
}
p, h1, h2, h3, h4, h5{
color:#343a40 !important;
}
a, .page-link {
color: #007473 !important;
}
.page-item.active .page-link{
color: #f8f9fa !important;
background-color: #007473 !important;
}
.topcrumb.active > span {
background: #007473 !important;
}
.nav-bg{
background-color:#fff !important;
color:#343a40 !important;
}
.nav-bg:hover{
background-color:#f8f9fa !important;
transition-duration:0.2s;
}
.dropDown-bg{
background-color:#d6d8db !important;
color:#343a40 !important;
}
.btn-primary{
color: #f8f9fa !important;
background-color: #007473 !important;
border:0px !important;
transition-duration:0.2s !important;
}
.btn-primary:hover{
color: #343a40 !important;
background-color: #6BDAD5 !important;
border:0px !important;
}
.btn-primary:focus{
color: #343a40 !important;
background-color: #6BDAD5 !important;
border:0px !important;
}
.btn-success{
color: #f8f9fa;
background-color: #008852;
border:0px !important;
}
.btn-success:hover{
color: #343a40;
background-color: #00CE7C;
border:0px !important;
}
.btn-success:focus{
color: #343a40;
background-color: #00CE7C;
border:0px !important;
}
.btn-danger {
color: #f8f9fa;
background-color: #af2b38;
border:0px !important;
}
.btn-danger:hover {
color: #f8f9fa;
background-color: #dc3545;
border:0px !important;
}
.alert-danger{
background-color: #e6b3c1 !important;
color:#820c2c !important;
border:0px !important;
}
.Anuket-Text{
color:#343a40 !important;
}
.selected_node {
border-color: #008852;
box-shadow: 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(109 243 76 / 60%);
transition: border-color ease-in-out .1s,box-shadow ease-in-out .1s;
}
::selection {
background: #BCE194;
color:#343a40;
}
::-moz-selection {
background: #BCE194;
color:#343a40;
}
|