-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
85 lines (85 loc) · 1.5 KB
/
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
*{
margin: 0;
padding: 0;
/* border: 1px solid black; */
}
body{
background-color: #ff595e;
color: white;
text-align: center;
}
h1{
margin: 50px 0 30px 0;
font-size: 3rem;
}
button{
cursor: pointer;
}
.game-mode button{
background-color: #405e10;
border: none;
padding: 10px;
border-radius: 10px;
font-size: 1.1rem;
color: #ffde83;
margin-left: 10px;
}
.result{
margin-top: 30px;
margin-bottom: -40px;
font-size: 2rem;
color: white;
}
audio{
display: block;
}
.boxes-cont{
width: 330px;
height: 330px;
margin: 10vh auto 25px auto;
/* border: 1px solid black; */
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.boxes-cont button{
width: 100px;
height: 100px;
margin: 3px;
background-color: #FFCA3A;
border: none;
border-radius: 5px;
box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.443);
font-size: 2rem;
}
.boxes:disabled{
color: black;
}
@media (max-width: 400px) {
.boxes-cont button{
width: 80px;
height: 80px;
}
.boxes-cont{
width: 260px;
height: 260px;
}
}
.refresh-box{
width: 200px;
height: 40px;
font-size: 1.5rem;
border-radius: 10px;
border: none;
background-color: #472e6b;
color: white;
margin-bottom: 100px;
}
.f-hide, .refresh-box{
display: none;
}
i{
font-size: 1.5rem;
color: #EEEEEE;
}