prepared calendar

This commit is contained in:
Jörg Henke
2022-07-26 16:26:10 +02:00
parent 8b14e49952
commit f754832ee0
5 changed files with 94 additions and 3 deletions

View File

@ -75,7 +75,7 @@ body {
}
.body {
height: calc(100% - 2px);
height: calc(100% - 4px);
width: 100%;
overflow: auto;
}
@ -189,10 +189,14 @@ body {
.hoverlink {
text-decoration: none;
color: black;
padding: 4px;
border: 1px solid rgba(1, 1, 1, 0.0);
border-radius: 4px;
}
.hoverlink:hover {
color: #1a5f64;
color: white;
background-image: linear-gradient(to right bottom, #99c1f1, #1a5f64);
}
.boldtext {
@ -276,4 +280,12 @@ body {
.clock {
background-image: url("../png/clock.png");
background-repeat: no-repeat;
}
.schedule {
min-width: 90vh;
max-width: 90vh;
min-height: calc(90vh - 100px);
max-height: calc(90vh - 100px);
margin: 8px;
}