clrghouz/public/css/fixes.css
2021-06-13 01:31:32 +10:00

73 lines
1.2 KiB
CSS
Vendored

body {
font-size: 20px;
background-color: #000000;
line-height: 16px;
}
.bg-blue {
background-color: #000084;
color: #fff;
border: 1px solid #fff !important;
margin-top: 14px !important;
padding-top: 14px !important;
padding-bottom: 14px !important;
margin-bottom: 14px !important;
margin-left: 3.5px;
padding-left: 10.5px;
padding-right: 11.5px;
margin-right: 2.5px;
width: calc(100% - 6px);
}
/* Fix button forms */
form button.btn {
font-size: 20px !important;
line-height: 14px !important;
}
/* Fix form input box */
input.form-control {
font-size: 20px !important;
line-height: 20px !important;
height: 20px;
background: none;
background-color: #DDDDDD;
color: #000000;
padding: 0 8px;
}
input.form-control:focus {
background-color: #FFFFFF;
color: #000000;
}
/* Fix nested dropdowns */
.dropdown-submenu:hover>.dropdown-menu {
display: block;
}
.dropdown-submenu>.dropdown-toggle:active {
pointer-events: none;
}
.dropdown-menu {
line-height: 16px;
}
.dropdown-submenu {
position:relative;
line-height: 16px;
}
.dropdown-submenu>.dropdown-menu {
top: 0;
left: 97%;
margin-top: 0;
padding: 5px;
}
/* rotate caret on hover */
.dropdown-menu > li > a::after {
transform: rotate(-90deg);
}