53 lines
922 B
CSS
53 lines
922 B
CSS
body {
|
|
background-color: #d3e8ec;
|
|
}
|
|
.u {
|
|
text-decoration: underline;
|
|
}
|
|
.accordion-header .accordion-button {
|
|
font-size: 16pt;
|
|
}
|
|
.accordion-header .accordion-button[aria-expanded="true"] {
|
|
font-weight: bold;
|
|
background-color: #94b6bd;
|
|
color: #ffffff;
|
|
}
|
|
.accordion-button {
|
|
background-color: #f3f3f3;
|
|
}
|
|
.container .container-fluid {
|
|
display: flex;
|
|
}
|
|
body.phone .logo {
|
|
display: none;
|
|
}
|
|
.container .container-fluid .logo img {
|
|
max-height: 220px;
|
|
margin-right: 40px;
|
|
}
|
|
.container .container-fluid .banner {
|
|
}
|
|
body.phone .calBanner .col:first-child {
|
|
display: none;
|
|
}
|
|
.calGridTable {
|
|
white-space: nowrap;
|
|
}
|
|
.calGridTable th {
|
|
background-color: #f3f3f3;
|
|
font-weight: normal;
|
|
font-size: 0.85em;
|
|
}
|
|
.cal-grid-label {
|
|
font-weight: bold;
|
|
background-color: #f3f3f3;
|
|
}
|
|
.cal-grid-cell {
|
|
cursor: pointer;
|
|
font-size: 0.9em;
|
|
}
|
|
.cal-grid-cell:hover {
|
|
background-color: #94b6bd;
|
|
color: #ffffff;
|
|
}
|