-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
82 lines (71 loc) · 1.33 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
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: 'Times New Roman';
font-weight: bold;
}
body {
background-color: grey;
}
h1 {
height: auto;
width: auto;
font-size: 3rem;
text-align: center;
text-decoration: underline;
margin-top: 3vh;
}
hr {
margin: 0.5rem 0rem;
}
.winner {
height: auto;
width: auto;
text-align: center;
font-size: 2rem;
}
.hidden {
display: none;
}
.main-box {
border: 10px solid rgb(25, 25, 25);
border-radius: 25px;
height: 24rem;
width: 24rem;
margin: auto;
background-color: grey;
box-shadow: inset 3px 3px 50px;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}
.box {
border-width: 0.5rem;
border-color: rgb(50, 50, 50);
height: 6rem;
width: 6rem;
background-color: rgb(220, 220, 220);
margin: 0.5rem;
cursor: pointer;
font-size: 3rem;
}
.box:hover {
box-shadow: inset 3px 3px 50px;
}
.reset {
text-align: center;
}
#reset {
border-width: 0.5rem;
height: auto;
width: auto;
background-color: rgb(220, 220, 220);
padding: 1rem;
font-size: 1rem;
cursor: pointer;
}
#reset:hover {
box-shadow: inset 3px 3px 50px;
}