-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWaM.css
More file actions
74 lines (74 loc) · 1.42 KB
/
Copy pathWaM.css
File metadata and controls
74 lines (74 loc) · 1.42 KB
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
body {
height: 100%;
width: 100%;
background-image: url(https://cdn.pixabay.com/photo/2016/11/01/18/38/background-1789175_1280.png);
}
.header > img {
height: 50px;
}
.title {
font-family: scripto;
color: yellow;
font-size: 500%;
margin-left: 30%;
text-align: center;
}
@font-face {
font-family: scripto;
src: url("Scripto-2OR2v.ttf");
}
.main {
padding: 100px;
padding-top: 20px;
margin: auto;
border-radius: 15px;
background-color: rgb(254, 206, 35);
opacity: 1;
width: 900px;
cursor: url(hammer30.png), default;
}
.cursor90 {
cursor: url(hammer90.png), default;
}
.game {
display: grid;
grid-template-columns: 300px 300px 300px;
grid-template-rows: 100px 100px 100px;
}
.blur {
filter: blur(3px);
}
.game > img {
margin: 20px;
}
.scoreTitle {
text-align: center;
}
.points {
text-align: center;
}
.start {
display: float;
top: 400px;
left: 800px;
height: 40px;
width: 100px;
border: 39px;
border-color: burlywood;
border-radius: 20px;
font-size: medium;
color: rgb(255, 238, 0);
background-image: linear-gradient(to right, rgb(255, 66, 97), purple);
}
.stop {
display: none;
top: 400px;
left: 800px;
height: 40px;
width: 100px;
border: 0;
border-radius: 20px;
font-size: medium;
color: rgb(255, 238, 0);
background-image: linear-gradient(to right, rgb(255, 66, 97), purple);
}