-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.scss
63 lines (62 loc) · 1.15 KB
/
style.scss
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
body {
background-color: #6698FF;
margin: 0;
padding: 0;
#jumper {
width: 50px;
height: 50px;
background: red;
position: absolute;
left: 100px;
}
#highscoreList {
width: 50%;
background: grey;
visibility: hidden;
z-index: 10;
position: relative;
left: 25%;
top: 10%;
}
#info {
position: absolute;
bottom: 0;
width: 100%;
height: 30%;
background: grey;
#pausebutton {
width: 7%;
height: 30%;
}
#score {
text-align: center;
}
#changeUser {
position: absolute;
bottom: 0;
height: 98%;
border: 2px solid red;
}
#topHighscoreList {
position: absolute;
bottom: 0;
right: 0;
height: 98%;
border: 2px solid red;
background-color: rgba(255, 255, 255, 0.2);
h2 {
margin: 3px;
text-align: center;
font-size: 30px;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
font-size: 20px;
}
th, td {
padding: 4px;
}
}
}
}