-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
67 lines (57 loc) · 1.89 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
.ovp_container, #ovp_navi {
font-family: Arial, sans-serif;
font-size: 12px
}
.ovp_table {
border-collapse: collapse;
}
.ovp_table th {
background-color: #bbb;
}
.ovp_table, .ovp_table tr, .ovp_table td, .ovp_table th {
border: 1px solid black;
padding-left: 3pt;
padding-right: 3pt;
vertical-align: top;
white-space: nowrap;
}
/* this is for the print table:
* time, course, subject, duration, change, room
*/
#ovp_table_print tr>td {text-align: right; width: 1cm;}
#ovp_table_print tr>td+td {text-align: center; width: 1cm;}
#ovp_table_print tr>td+td+td {text-align: center; width: 1cm;}
#ovp_table_print tr>td+td+td+td {text-align: center; width: 1cm;}
#ovp_table_print tr>td+td+td+td+td {text-align: left; width: auto; white-space: normal;}
#ovp_table_print tr>td+td+td+td+td+td {text-align: left; width: 1cm;}
#ovp_table_print td.ovp_cell_teacher {
padding-top: 1em;
font-weight: bold;
text-align: left;
vertical-align: baseline;
}
/* this is for the public table:
* time, course, subject, oldroom, duration, change, newroom
*/
#ovp_table_public tr>td {text-align: right; width: 1cm;}
#ovp_table_public tr>td+td {text-align: center; width: 1cm;}
#ovp_table_public tr>td+td+td {text-align: center; width: 1cm;}
#ovp_table_public tr>td+td+td+td {text-align: center; width: 1cm;}
#ovp_table_public tr>td+td+td+td+td {text-align: center; width: 1cm;}
#ovp_table_public tr>td+td+td+td+td+td {text-align: left; width: auto; white-space: normal;}
#ovp_table_public tr>td+td+td+td+td+td+td {text-align: left; width: 1cm;}
.ovp_container input[type="submit"] {
width: 100%;
}
.ovp_error {
background: #FF8888;
padding: 5px;
}
.ovp_success {
background: lightgreen;
padding: 5px;
}
#ovp_tip {
font-size: small;
font-style: italic;
}