-
Notifications
You must be signed in to change notification settings - Fork 4
/
style.css
73 lines (59 loc) · 1.44 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
69
70
71
72
73
* {
-webkit-transition: ease .2s;
}
body {
position: relative;
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
font-size: 24px;
width: 60%;
margin: 0 auto 100px auto;
}
table {
width: 100%;
border: solid 5px #ccc;
}
a {
text-decoration: none;
}
thead th { background-color: #eee; cursor: pointer; -webkit-user-select: none; }
thead th:hover { background-color: #fff; }
tbody th { text-align: left;}
tbody tr:hover th, tbody tr:hover td { background-color: #ffc; }
th, td { padding: 10px; }
.login { position: absolute; top: 0; right: 0; }
.plusones { text-align: center;}
.photo { text-align: center;}
td img {
height: 30px;
vertical-align: middle;
}
button {
display: block;
-webkit-user-select: none;
border-radius: 10px;
border: solid 1px #ccc;
background: #ccc -webkit-linear-gradient(top, #eee, #ccc);
color: #666;
padding: 3px 6px;
text-align: center;
cursor: pointer;
}
button:hover {
border-color: #666;
background: #ccc -webkit-linear-gradient(top, #ccc, #999);
}
button:active {
background: #ccc -webkit-linear-gradient(bottom, #ccc, #999);
}
button.disabled {
background: transparent;
color: gray;
cursor: default;
border: none;
}
.sortby-plusones thead th:nth-child(1),
.sortby-name thead th:nth-child(2),
.sortby-guests thead th:nth-child(3),
.sortby-lastvote thead th:nth-child(4)
{ background: #ddd;}
tr.selected { outline: solid 5px #000; background-color: #ff9 !important;}