169 lines
3.5 KiB
CSS
169 lines
3.5 KiB
CSS
.btn-style {
|
|
background: #009f90 !important;
|
|
color: rgb(229, 236, 246) !important;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.btn-style:hover {
|
|
background-color: #007f72 !important;
|
|
}
|
|
|
|
#imgInt {
|
|
float: left;
|
|
}
|
|
|
|
#header {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
#imgLogo {
|
|
width: 100px;
|
|
height: 80px;
|
|
margin-right: 10px;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
#extDivStyle {
|
|
background-color: #c9cdb1;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
#intDivStyle {
|
|
padding-top: 10px;
|
|
padding-right: 10px;
|
|
padding-bottom: 10px;
|
|
padding-left: 10px;
|
|
}
|
|
|
|
.custom-standout {
|
|
background-color: #7f8389 !important;
|
|
color: rgb(0, 0, 0) !important;
|
|
}
|
|
|
|
/* Placeholder color for custom-standout q-inputs */
|
|
.custom-standout .q-field__native::placeholder {
|
|
color: #CFD8DC !important; /* Lighter grey for placeholder text */
|
|
opacity: 1 !important; /* Ensure full visibility */
|
|
}
|
|
|
|
.custom-standout .q-field__control::before {
|
|
border-color: #7f8389 !important; /* Keep the original border color */
|
|
}
|
|
|
|
/* Placeholder color for various browsers */
|
|
.custom-standout input::placeholder {
|
|
color: #CFD8DC !important;
|
|
opacity: 1 !important;
|
|
}
|
|
.custom-standout input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
|
|
color: #CFD8DC !important;
|
|
opacity: 1 !important;
|
|
}
|
|
.custom-standout input::-moz-placeholder { /* Mozilla Firefox 19+ */
|
|
color: #CFD8DC !important;
|
|
opacity: 1 !important;
|
|
}
|
|
.custom-standout input:-ms-input-placeholder { /* Internet Explorer 10-11 */
|
|
color: #CFD8DC !important;
|
|
opacity: 1 !important;
|
|
}
|
|
.custom-standout input::-ms-input-placeholder { /* Microsoft Edge */
|
|
color: #CFD8DC !important;
|
|
opacity: 1 !important;
|
|
}
|
|
|
|
#tabHeader {
|
|
color: #009f90;
|
|
}
|
|
|
|
#intDivStyle-left, #intDivStyle-right {
|
|
border-radius: 10px;
|
|
padding: 10px;
|
|
background-color: #fdfdfd; /* Add a background color to distinguish from the outer div */
|
|
}
|
|
|
|
/* Tab styling to match your theme */
|
|
.q-tabs {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
.q-tab {
|
|
color: #7f8389 !important;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.q-tab--active {
|
|
color: #009f90 !important;
|
|
background-color: rgba(0, 159, 144, 0.1) !important;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.q-tabs[active-color="primary"] .q-tab--active {
|
|
color: #009f90 !important;
|
|
}
|
|
|
|
/* Indicator color to match your primary color */
|
|
.q-tab__indicator {
|
|
background-color: #009f90 !important;
|
|
}
|
|
|
|
/* Dense tabs adjustment */
|
|
.q-tabs--dense .q-tab {
|
|
padding: 8px 12px;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
#intDivStyle-left .q-tab-panel, #intDivStyle-right .q-tab-panel {
|
|
height: auto; /* Let content define height */
|
|
overflow-y: hidden; /* Remove scrollbar */
|
|
}
|
|
|
|
.pixelated-plot svg image {
|
|
image-rendering: pixelated;
|
|
image-rendering: -moz-crisp-edges; /* Firefox */
|
|
image-rendering: crisp-edges;
|
|
}
|
|
|
|
*{
|
|
font-family: 'Roboto', 'Lato', sans-serif;
|
|
}
|
|
|
|
.q-card {
|
|
border-radius: 8px !important;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
|
|
margin-bottom: 16px !important;
|
|
}
|
|
|
|
.q-card__section--dark {
|
|
background: #f7f7f7 !important;
|
|
}
|
|
|
|
.q-radio__label {
|
|
font-size: 1rem !important;
|
|
}
|
|
|
|
.q-option-group > div {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
/* Loading Overlay Styles */
|
|
.loading-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(0, 0, 0, 0.7);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
z-index: 9999;
|
|
text-align: center;
|
|
}
|
|
.loading-content .q-spinner {
|
|
color: white;
|
|
}
|
|
.loading-content .text-h6 {
|
|
color: white;
|
|
} |