blob: 60bb1f9d8bd067f59eb09809bc84b1e36202ca57 (
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
|
svg path{
fill: #00394f;
stroke: #eee !important;
stroke-width: .25 !important;
}
svg path:hover {
fill: #006284;
transition: 0.6s !important;
cursor: pointer !important;
}
.moveOn{
display: inline-block;
border: none;
padding: 6px 12px;
margin-botton: 0;
font-size: 1rem;
font-weight: normal;
text-align: center;
cursor: pointer;
border-radius: 4px;
background-color: #4BB543;
color: white;
}
button:disabled{
opacity: 0.5;
}
|