code-style: centralize CSS styling into stylesheet file

This commit is contained in:
Johannes 2023-07-09 13:01:01 +02:00
parent 4d7d98feed
commit 0046bc39db
6 changed files with 30 additions and 23 deletions

17
static/officeHours.css Normal file
View file

@ -0,0 +1,17 @@
/* mark required fields */
input.required ~ label::after, select.required ~ label::after {
content: ' *';
color: red;
}
/* improve indent of help texts below form fields */
.form-control ~ .form-text {
padding-left: 12px;
padding-right: 12px;
}
.timetableRightBorder {
border-right: 1px dotted;
}
td.officeHour {
border: 1px solid;
}