ibms-dome/Backend/wwwroot/css/site.css

80 lines
1.5 KiB
CSS

/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
/* Sticky footer styles
-------------------------------------------------- */
:root {
--bims-gray:#c3c3c3;
}
html {
font-size: 16px;
}
@media (min-width: 768px) {
html {
font-size: 18px;
}
}
/* JQuery Validate*/
label.error {
color: red;
}
/* 隱藏圖片上傳 progress bar */
#power-station-images-form .dz-preview .dz-progress,
#power-station-single-line-form .dz-preview .dz-progress,
#record-file-div .dz-preview .dz-progress {
display: none;
}
/* 修改 Sweet Alert 2*/
.swal2-container {
z-index: 2051;
}
.select2-container--disabled .select2-selection__choice {
padding-right: 5px !important;
}
.highcharts-credits {
display: none;
}
.t-gray {
color:var(--bims-gray) !important;
}
/* Absolute Center Spinner */
.loading {
position: fixed;
z-index: 999;
display: block;
margin: auto;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 50px;
height: 50px;
}
/* Transparent Overlay */
.loading:before {
content: '';
display: block;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
background: -webkit-radial-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
}
.loading.hide {
display: none;
}