-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
64 lines (55 loc) · 1.08 KB
/
styles.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
body {
font-family: 'Arial', sans-serif;
background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
height: 100vh;
overflow: hidden;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
canvas {
z-index: 100;
background-color: rgb(255, 255, 255);
border-radius: 15px;
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
height: 90vh
}
.information {
display: flex;
align-items: center;
width: 550px;
justify-content: space-between;
margin-bottom: 10px;
}
.btn {
background: rgb(3, 205, 231);
border: none;
border-radius: 15px;
padding: 10px;
padding-inline: 10px;
font-weight: 600 ;
color: black;
}
.btn:hover {
cursor: pointer;
box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.2);
}
.score {
font-weight: 700;
font-size: medium;
}
.score:hover {
cursor: pointer;
transform: scale(1.2);
}
.difficulty-menu {
display: flex;
margin: 0;
}
.difficulty-btn {
height: 30px;
padding-inline: 3px;
}