File size: 1,142 Bytes
6b6d936 | 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 | @import "../../node_modules/bootstrap/dist/css/bootstrap.css";
.card {
margin: 0.25rem !important;
}
#status-text {
font-size: medium;
align-self: center;
}
#server_log_label {
font-weight: 500;
}
.btn-primary {
color: #fff;
background-color: #326690;
border-color: #326690;
}
.btn-primary:hover {
color: #fff;
background-color: #285274;
border-color: #254b6a;
}
.btn-primary:focus, .btn-primary.focus {
color: #fff;
background-color: #285274;
border-color: #254b6a;
box-shadow: 0 0 0 0 rgba(81, 125, 161, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
color: #fff;
background-color: #326690;
border-color: #326690;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
color: #fff;
background-color: #254b6a;
border-color: #224461;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
box-shadow: 0 0 0 0 rgba(81, 125, 161, 0.5);
}
|