-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
90 lines (79 loc) · 1.42 KB
/
index.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
83
84
85
86
87
88
89
90
* {
-webkit-touch-callout:none;
-webkit-user-select:none;
-khtml-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}
body {
color: #4495fb;
margin: 0;
padding: 0;
}
#jump_app {
position: absolute;
top: 0px;
background-color: rgba(37, 42, 47, 0.6);
height: 100%;
width: 100%;
}
#jump_app > div:first-child {
position: relative;
margin: 12% auto 0;
width: 450px;
height: 450px;
max-width: 100%;
background-color: rgba(37, 42, 47, 0.8);
border-radius: 6px;
box-sizing: border-box;
}
#jump_app > div > :nth-child(2) {
display: flex;
align-items: center;
}
#jump_app > div > :last-child {
width: 100%;
position: absolute;
margin: 0 auto;
text-align: center;
bottom: 80px;
}
.jump_gameBtn {
display: inline-block;
margin: 0 auto;
font-size: 26px;
cursor: pointer;
color: #fff;
background-color: #4495fb;
border: none;
padding: 4px 10px;
border-radius: 4px;
outline: none;
}
label {
margin-left: 50px;
}
select {
font-size: 18px;
outline: none;
margin-left: 30px;
height: 34px;
width: 150px;
}
h1 {
padding-top: 15px;
text-align: center;
}
#jump_restartGame {
display: none;
}
#jump_score {
position: absolute;
width: 100%;
display: none;
text-align: center;
z-index: 100;
top: 30px;
font-size: 24px;
}