-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (73 loc) · 1.17 KB
/
style.css
File metadata and controls
79 lines (73 loc) · 1.17 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
75
76
77
78
79
body {
text-align: center;
background-color: rgb(186, 250, 122);
}
.bg-music {
display: none;
}
.error-music {
display: none;
}
.top-title {
display: flex;
justify-content: center;
}
.top-title img {
margin-top: 20px;
}
.btn {
height: 150px;
width: 150px;
border-radius: 20%;
border: 7px solid black;
margin: 1.2rem;
cursor: pointer;
}
.btn-container {
display: flex;
justify-content: center;
}
.yellow {
background-color: #f99b45;
}
.red {
background-color: #d95980;
}
.purple {
background-color: #819ff9;
}
.green {
background-color: #63aac0;
}
.flash {
background-color: white;
}
.userflash {
background-color: green;
}
button {
background-color: lightskyblue;
width: 100px;
height: 30px;
font-family: "Courier New", Courier, monospace;
font-weight: 700;
font-size: 1.2rem;
cursor: pointer;
border-radius: 14px;
}
button:hover {
background-color: springgreen;
}
@media (max-width: 600px) {
HTML,
body {
width: 100%;
overflow-x: hidden;
overflow-y: hidden;
}
.btn {
height: 80px;
width: 80px;
border: 4px solid black;
}
}