-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpower4.css
More file actions
111 lines (97 loc) · 1.7 KB
/
Copy pathpower4.css
File metadata and controls
111 lines (97 loc) · 1.7 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
html {
background-image: url(https://cdn.discordapp.com/attachments/587307618155102257/701723145194700820/unknown.png);
background-attachment: fixed;
background-size: cover;
color: white;
text-align: center;
}
h1 {
padding: 0 0 20px 0;
}
div {
text-align: center;
}
img {
width: 100%;
height: 100%;
}
.OXO {
width: 75%;
padding: 3%;
margin: 5% 7.5%;
background-color: rgb(0, 0, 0,0.7);
}
.aligned {
display: inline-flex;
width: 75%;
}
#Grid_settings {
margin-left: 10%;
width: 100%;
}
#Grid_settings div {
padding: 12.5%;
}
#full_grid {
display: grid;
background-color: rgb(0, 0, 0,0.7);
border: 2px solid gray;
width: 100%;
grid-template-columns: 1fr 1fr 1fr;
margin: auto;
justify-content: center;
align-items: center;
font: sans-serif;
}
.column {
height: 100%;
transition: background-color 0.17s ease-in-out;
display: grid;
grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
}
.case {
display: flex;
font-size: 40px;
width: 100%;
justify-content: center;
align-items: center;
border: 2px solid gray;
transition: background-color 0.17s ease-in-out;
}
.column:hover {
background-color: gray;
}
#whose_turn {
padding: 20px;
}
@media screen and (max-device-width: 750px) {
#full_grid {
width: 80%;
}
.aligned {
flex-direction: column;
}
.grid_and_text {
width: 100%;
}
#Grid_settings {
margin-left: 0%;
}
#Grid_settings div {
padding: 2%;
}
.OXO {
width: 100%;
padding: 0%;
padding-top: 1%;
margin: 5% 0%;
}
.aligned {
width: 100%;
}
}
@media screen and (max-device-width: 500px) {
#full_grid {
width: 95%;
}
}