blob: ed715b67c002e5094fcd231ddfd1bac5c6d7a17f (
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
|
#search, #week-selector {
background-color: inherit;
box-shadow: inherit;
}
#search {
border-bottom: 1px solid black;
}
#search .top-bar, #week-selector .week-wrapper {
max-width: inherit;
}
#search input[type="text"] {
background-color: inherit;
color: black;
font-weight: bold;
}
#search .fav {
display: none;
}
#search #overflow-button {
display: none;
}
#week-selector .week-wrapper {
display: block;
}
#week-selector input[type='button'] {
display: none;
}
#week-selector .current {
color: black;
padding: 16px;
font-size: 1.1em;
float: right;
}
#search-space-filler {
display: none;
}
|