blob: 0e09533b22659a78e459b8b998b25babe4753f7f (
plain)
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
|
#search, #week-selector {
background-color: inherit;
box-shadow: inherit;
}
#search {
border-bottom: 1px solid black;
position: absolute;
}
#search .top-bar, #week-selector .week-wrapper {
max-width: inherit;
}
#search input[type="search"] {
background-color: inherit;
color: black;
font-weight: bold;
}
#search .fav {
display: none !important;
}
#search #overflow-button {
display: none;
}
#week-selector .week-wrapper {
display: block;
}
#week-selector button {
display: none;
}
#week-selector .current {
color: black;
padding: 16px;
font-size: 1.1em;
float: right;
}
#search-space-filler {
display: none;
}
.mdl-menu__container {
display: none !important;
}
#schedule {
padding-top: 16px;
width: 100%;
}
.no-print {
display: none;
}
.print {
display: initial;
}
|