Taylohtio/IDP/react/admin/public/style/default.css

222 lines
3.8 KiB
CSS

@import url('https://fonts.googleapis.com/css2?family=Kreon:wght@300;400;500;600;700&family=Signika:wght@300;400;500;600;700&display=swap');
body {
margin: 0;
}
/* main text */
.MuiTypography-root {
color: #009de2;
font-family: "Signika";
}
.MuiPaper-root {
color: #009de2;
}
/* headers */
h2.MuiTypography-root {
font-family: 'Kreon';
font-weight: 300;
color: #009de2;
font-size: 40px;
}
h3.MuiTypography-root {
font-family: 'Kreon';
font-weight: 300;
color: #000;
font-size: 36px;
}
h4.MuiTypography-root {
font-family: 'Kreon';
font-weight: 600;
font-size: 24px;
}
h5.MuiTypography-root {
font-family: 'Kreon';
font-weight: 600;
color: #000;
font-size: 18px;
}
@media(max-width: 899px) {
h2.MuiTypography-root {
font-size: 30px;
}
}
/* error text */
.errorText {
color: red;
}
.MuiFormHelperText-root {
font-family: "Signika";
}
.MuiIconButton-root {
color: #069de4;
}
.tooltip.MuiTypography-root {
color: #FFF;
}
.tooltip {
color: #FFF;
}
/* card */
.MuiCard-root {
border-bottom: 20px solid #009de2;
}
/* buttons */
.MuiButton-contained {
background-color: #009de2;
}
.MuiButton-contained:hover {
background-color: #009de2;
}
.MuiButton-contained .MuiTypography-root {
color: #FFF;
}
.MuiButton-text .MuiTypography-root {
text-transform: none;
}
/* select company */
.selectCompany {
margin-top: 20px;
}
.selectCompany .MuiCardHeader-content {
border-bottom: 1px dotted #000;
padding-bottom: 10px;
}
.selectCompany__dropdown option {
font-family: "Signika";
}
.selectCompany__searchIcon {
color: #009de2;
}
/* table */
.MuiTable-root {
width: auto;
}
.MuiTableCell-root {
font-family: "Signika";
border: none;
}
.MuiTableCell-head {
padding-right: 16px;
white-space: nowrap;
}
.MuiTableHead-root tr {
background-color: #FFF !important;
}
.MuiTableRow-root:nth-child(2n+1) {
background-color: rgb(202, 209, 212, .4);
}
.MuiTableRow-root:nth-child(2n) .MuiTableCell-root {
padding-top: 10px;
padding-bottom: 10px;
}
.table_w100 {
width: 100%;
}
.tableContainer {
position: relative;
}
.tableContainer::after {
content: unset;
}
.tableContainer.after-true::after {
content: "";
background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(243, 241, 241, 0.2));
position: absolute;
right: 0;
top: 0;
width: 40px;
height: 100%;
}
/* own flats selection */
.ownFlatsSelection .ownFlatsSelection__pmcContainer {
border-bottom: 1px dotted #000;
padding-bottom: 10px;
}
.ownFlatsSelection .ownFlatsSelection__pmcName {
border-bottom: 1px dotted #000;
padding-bottom: 5px;
margin-bottom: 10px;
}
.ownFlatsSelection__table .MuiIconButton-root svg {
color: #009de2;
}
.ownFlatsSelection .ownFlatsSelection__titleIcon {
color: #009de2;
font-size: 60px;
margin-right: 20px;
}
.ownFlatsSelection__selectRow {
color: #000;
}
@media(max-width: 899px) {
.ownFlatsSelection .ownFlatsSelection__titleIcon {
font-size: 40px;
}
}
/* table: flats management */
.flatsManagement__table .MuiIconButton-root svg {
color: #009de2;
}
/* table: condo mappings */
.condoMappings__table .MuiIconButton-root svg {
color: #009de2;
}
.condoMappings__table_change {
color: #009de2;
white-space: nowrap;
}
/* table: approved user flats */
.manageApprovedMappings__table .checkIcon {
color: #2eaf06;
}
.manageApprovedMappings__table .crossIcon {
color: #f81d0e;
}
/* modal dialog */
.MuiDialogTitle-root .MuiTypography-h6 {
font-size: 30px;
padding-right: 20px;
}
.MuiDialogTitle-root .modalDialog__img {
margin-right: 15px;
}
.MuiDialogActions-root {
justify-content: center;
}
@media(max-width: 899px) {
.MuiDialogTitle-root {
padding-top: 8px;
padding-bottom: 8px;
}
.MuiDialogTitle-root .MuiTypography-h6 {
font-size: 20px;
}
.MuiDialogTitle-root .modalDialog__img {
width: 30px;
height: auto;
}
}