-
Notifications
You must be signed in to change notification settings - Fork 1
/
sorttable.css
86 lines (71 loc) · 1.36 KB
/
sorttable.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
74
75
76
77
78
79
80
81
82
/* CSS */
#leaderboard {
overflow: hidden;
}
.grid {
overflow: auto;
padding-right: 5px;
width: 100%;
}
/* clear fix */
.grid:after {
content: '';
display: block;
clear: both;
}
.element-item {
position: relative;
float: left;
width: 100%;
height:30px;
margin-right: 5px;
padding-top: 5px;
padding-bottom: 5px;
padding: 2px;
color: #262524;
/* border-bottom: 1px solid #ddd; */
line-height: 30px;
-webkit-box-shadow: 1px 1px 2px 0px rgba(112,112,112,0.3);
-moz-box-shadow: 1px 1px 2px 0px rgba(112,112,112,0.3);
box-shadow: 1px 1px 2px 0px rgba(112,112,112,0.3);
}
.element-name, .element-order {
float: left;
font-size: 15px;
}
.element-order {
font-size: 20px;
width: 50px;
text-align: center;
}
.element-value {
float: right;
margin-right: 10px;
font-weight: bold;
font-size: 20px;
color: #666;
}
.leaderboard-header {
position: relative;
height: 50px;
width: 100%;
background-color: #e00202;
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.leaderboard-icon, .leaderboard-title {
float: left;
width:100%;
height: 40px;
line-height: 40px;
}
.leaderboard-title {
color: #fff;
font-weight: bold;
font-size: 20px;
text-align: center;
}