forked from altitudelabs/web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
80 lines (68 loc) · 1.08 KB
/
style.css
File metadata and controls
80 lines (68 loc) · 1.08 KB
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
*{
margin: 0px;
padding: 0px;
border: none;
font-family: Helvetica, Arial;
}
body{
background-color: #252825;
background-image: url("images/bg.png");
background-repeat: repeat-x repeat-y;
text-align: center;
}
.container{
margin: 0 auto;
vertical-align: middle;
position: absolute;
top: 0px;
}
.title{
margin: 0 auto;
}
.title img{
width: 100%;
max-width: 594px;
}
.content{
width: 50%;
max-width: 500px;
margin: 0 auto;
text-align: center;
padding: 20px;
}
#leaderboard{
background-color: rgba(29, 29, 29, 0.8);
width: 100%;
border: 5px solid;
border-radius: 25px;
-moz-border-radius:25px; /* Old Firefox */
border-color: #d0cfcf;
color: white;
}
#leaderboard tr{
height: 50px;
}
#leaderboard td{
vertical-align: center;
border-bottom: 1px solid #414141;
}
#leaderboard tr:last-child td{
border:none;
}
.bandName{
text-align: left;
font-weight: bold;
font-size: 18px;
padding-left: 20px;
}
.bandCount{
text-align: right;
font-size: 15px;
font-weight: lighter;
padding-right: 20px;
}
.countNumber{
font-size: 18px;
font-weight: bold;
color: #960c10;
}