File size: 1,328 Bytes
09a6f7f |
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 |
.ib{
display: inline-block;
margin-right: 30px;
}
#creepers{
position: relative;
bottom: 25px;
}
.btn-asset{
background-color: #885C00;
color: white;
}
btn-asset:hover{
background-color: #885C00;
color: white;
}
.btn-outline-asset{
background-color: white;
color: #885C00;
border-color: #885C00;
}
.btn-outline-asset:hover{
background-color: #885C00;
color: white;
}
#agents_list_container{
height: 400px;
overflow-y: scroll;
}
.list-group-item{
border-color: white;
}
.list-group-item.active{
background-color: #FFC700;
border-color: #FFC700;
}
.list-group-item.disabled{
background-color: lightgrey;
border-color: lightgrey;
}
hr.solid {
border-top: 2px solid #999;
}
.card > img{
height: 125px;
object-fit: cover;
object-position: 5% 0%;
}
.introjs-tooltip {
font-size: 20px;
min-width: 400px;
max-width: 600px;
}
.introjs-tooltip-title {
font-size: 22px;
color: #0a41c9;
}
.introjs-hintReference > .introjs-tooltip{
font-size: 16px;
}
.introjs-tooltip ul {
margin-left: 8px;
list-style-type: disc;
}
.nav-link {
color: black;
font-weight: bold;
}
.about-text {
font-size: 18px;
}
.about-subsection {
font-size: 26px;
font-weight: bold;
color: #0a41c9;
}
|