-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
45 lines (43 loc) · 841 Bytes
/
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
/* Set default font for all elements */
body {
font-family: 'Press Start 2P', cursive;
text-shadow: 3px 3px red;
text-align: center;
margin: 0;
font-size: 21px;
}
/* set up the table row, title and body */
#leaderboard tr {
color: rgb(255, 255, 0);
text-transform: uppercase;
padding-bottom: 1%;
white-space: nowrap;
}
#leaderboard {
padding-top:20px;
padding-left:20px;
width: 1920px;
height: 1080px;
background: #00ff00;
overflow: hidden;
}
#title {
color: orange;
height: 80px;
font-weight: 600;
font-size: 60px;
}
/* styles for the 3 columns of content in the table */
.plrRnk{
padding-right: 30px;
width: 175px;
}
.plrScore {
width: 210px;
padding-left: 30px;
}
.plrName {
max-width: 1425px;
text-align: left;
overflow: hidden;
}