-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
99 lines (88 loc) · 1.9 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
* {
font-family: "Nunito", Arial, Helvetica, sans-serif;
background-color: black;
color: white;
}
.outterContainer {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
.containerCentralGrid {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 90vh;
width: 90vh;
}
.centralGrid {
display: grid;
grid-template-columns: repeat(8, 1fr);
grid-template-rows: repeat(8, 1fr);
height: 45vh;
width: 45vh;
}
.descriptionGame {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 35vh;
width: 80vh;
}
.cell {
background-color: white;
border-radius: 4px;
border: 1px solid black;
}
#submitSolution {
background-color: rgb(240, 240, 240);
color: black;
height: 50px;
width: 130px;
border-radius: 10px;
font-size: large;
font-weight: 900;
}
#playAgain {
margin-top: 10px;
display: none;
background-color: rgb(240, 240, 240);
color: black;
height: 50px;
width: 130px;
border-radius: 10px;
font-size: large;
font-weight: 900;
border: 0px;
}
#playAgain:hover {
background-color: rgb(230, 230, 230);
cursor: pointer;
}
.rules {
text-align: center;
font-size: small;
width: 800px;
}
/*Mobile Phones*/
@media only screen and (max-width: 600px) {
.containerCentralGrid {
height: 65vh;
width: 55vh;
}
.centralGrid {
height: 38vh;
width: 38vh;
}
.rules {
width: 400px;
text-align: center;
height: 30vh;
font-size: smaller;
}
}