-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathstyle.css
68 lines (56 loc) · 1.01 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
68
body {
font-family: arial;
margin-bottom: 500px;
}
.btn {
margin-bottom: 10px;
}
table {
border-right: 2px solid gray;
border-spacing: 0;
border-collapse: collapse;
}
.day-header {
border: 1px solid gray;
white-space: nowrap;
}
.hour-cell:hover > div {
background-color: #559 !important;
color: white;
}
.hour-cell {
width: 120px;
text-align: center;
border-left: 1px solid gray;
border-bottom: 1px solid #eee;
cursor: pointer;
height: 30px;
padding: 0;
}
.hour-cell > div {
height: 100%;
}
.hour-cell .time {
padding-top: 8px; /* poor man's vertical centering */
color: #555;
}
.hour-cell .searching {
color: #88d;
font-size: 12px;
padding-top: 12px; /* poor man's vertical centering */
}
.hour-cell .result-label {
font-size: 10px;
}
.hour-cell .good-results {
color: #090;
background: #efffef;
}
.hour-cell .weak-results {
color: orange;
background: #ffffef;
}
.hour-cell .bad-results {
color: red;
background: #ffefef;
}