-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
84 lines (72 loc) · 1.22 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
body {
display: flex;
font-family: sans-serif;
justify-content: center;
}
.container {
background: #50742c;
margin: -5px;
padding: 50px;
padding-top: 10px;
width: 650px;
height: 725px;
align-items: center;
}
.game-cell{
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
border: none;
outline: none;
font-weight: bold;
}
.game-grid{
height: 600px;
width: 600px;
display: grid;
grid-template-columns: repeat(6, 1fr);
grid-template-rows: repeat(6, 1fr);
margin-left: 25px;
margin-top: 25px;
}
.game-title{
color: white;
text-align: center;
font-size: 40px;
margin-top: 5px;
margin-bottom: 15px;
}
.top-details{
width: 600px;
display: flex;
align-items: center;
justify-content: space-around;
margin-left: 25px;
}
.game-text{
color: #ff0000;
font-size: 18px;
}
.reset-btn{
font-size: 18px;
color: #ffffff;
cursor: pointer;
background: none;
border: none;
}
.reset-btn:hover{
color: #aad751;
}
.difficulty-level{
font-size: 18px;
color: #ffffff;
background: none;
}
option{
background: #50742c;
border: none;
}
select{
border: none;
}