23 lines
403 B
CSS
23 lines
403 B
CSS
/* Module Custom Styles */
|
|
.AbsageBtn {
|
|
|
|
background-color: #e63946; /* schönes kräftiges Rot */
|
|
color: white;
|
|
|
|
}
|
|
.AbsageBtn:hover {
|
|
background-color: #ae262f
|
|
}
|
|
.ZusageBtn {
|
|
background-color: #2a9d8f; /* angenehmes Grün */
|
|
color: white;
|
|
}
|
|
.ZusageBtn:hover {
|
|
background-color: #20776d
|
|
}
|
|
.Ueberschrift {
|
|
font-size: 1.5rem;
|
|
}
|
|
.Underline {
|
|
text-decoration: underline;
|
|
} |