blob: 122613a9a1a2f40e0dbbfda3af040f49588db673 [file] [log] [blame]
Andreu2211ab22019-09-23 18:13:26 +02001#inner-container {
2 background-color: white;
3}
4
5p {
6 font-size: 16px;
7 text-align: justify;
8}
9
10table#ranking {
11 font-size: 18px;
12 text-align: center;
13
14 font-family: 'Open Sans';
15
16 margin: auto;
17 width: 100%;
18}
19
20table#ranking td {
21 padding: 10px;
22}
23
24tr.gold {
25 background-color: rgba(255, 225, 0, 0.3);
26}
27
28tr.silver {
29 background-color: rgba(200, 200, 200, 0.3);
30}
31
32tr.bronze {
33 background-color: rgba(200, 125, 50, 0.3);
34}
35
36tr.me {
37 background-color: rgba(50, 50, 255, 0.3);
38}
39
40tr.top3 td:first-child::before {
41 content: '';
42 background-size: 16px 16px;
43 width: 16px;
44 height: 16px;
45 float: left;
46 position: relative;
47 top: 0px;
48 left: 5px;
49}
50
51tr.gold td:first-child::before {
52 background-image: url('../bin/images/first.png');
53}
54
55
56tr.silver td:first-child::before {
57 background-image: url('../bin/images/second.png');
58}
59
60
61tr.bronze td:first-child::before {
62 background-image: url('../bin/images/third.png');
63}