-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (50 loc) · 974 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
body {
background: rgb(2, 0, 36);
background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%,
rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
color: aliceblue;
font-family: Arial, Helvetica, sans-serif;
text-align: center;
}
.title {
font-size: 30px;
font-weight: bold;
}
.move-icon {
height: 50px;
}
.move-buttom {
background: transparent;
padding: 10px 15px;
border: 3px solid white;
height: 100px;
width: 120px;
border-radius: 70px;
margin-right: 10px;
cursor: pointer;
}
.result {
font-size: 25px;
font-weight: bold;
margin-top: 50px;
}
.score {
margin-top: 60px;
}
.reset-score-buttom {
background-color: aliceblue;
border: none;
font-size: 15px;
padding: 8px 15px;
cursor: pointer;
}
.reset-score-buttom:hover {
background-color: rgb(7, 8, 8);
color: aliceblue;
}
footer {
margin-top: 100px;
}
footer a img {
width: 100px;
}