-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.css
221 lines (215 loc) · 3.4 KB
/
home.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
/* Profile */
#profileBox {
box-sizing: border-box;
width: 100%;
height: fit-content;
padding: 0px;
display: grid;
gap: 25px;
justify-content: center;
}
#profileBox h2 {
margin: 0px;
text-align: center;
}
#profileBox hr {
margin-top: 0px;
}
#colors {
display: grid;
grid-auto-flow: column;
gap: 10px;
}
.selectDot {
background-color: white;
width: 10px;
height: 10px;
border-radius: 100%;
margin-left: auto;
margin-right: auto;
margin-top: 10px;
}
.colorOption {
width: 50px;
display: grid;
}
.colorOption img {
width: 50px;
}
.inputfield {
display: grid;
width: 100%;
}
.inputfield h3 {
box-sizing: content-box;
background-color: white;
color: black;
margin: 0px auto 0px auto;
width: fit-content;
border-radius: 10px 10px 0px 0px;
padding: 10px 10px 0px 10px;
font-size: large;
}
.inputfield input {
box-sizing: border-box;
border-radius: 10px;
width: 100%;
height: 100%;
}
.selections {
display: grid;
gap: 10px;
border: 5px white solid;
padding: 10px;
grid-auto-flow: column;
justify-items: center;
border-radius: 10px;
}
/*Main center*/
#homeLogo {
height: 100px;
}
#mainBox {
box-sizing: border-box;
width: 100%;
display: grid;
place-items: Center;
gap: 1rem;
height: fit-content;
}
.title {
margin-top: -30px;
}
#codeContainer {
display: grid;
grid-auto-flow: column;
align-items: center;
text-align: center;
border: 5px white solid;
border-radius: 10px;
width: 70%;
}
#codeContainer input {
border: none;
border-radius: 10px;
width: 100%;
}
#codeContainer button {
box-sizing: border-box;
height: calc(100% + 2px);
width: calc(100% + 2px);
background-color: white;
border: none;
border-radius: 0px;
}
/*Games*/
#openGames {
width: 100%;
}
#divider {
box-sizing: border-box;
width: 80%;
border: 2px solid white;
margin-top: 75px;
background-color: white;
}
#redcircle {
display: none;
position: fixed;
left: -50px;
top: 0;
height: 100%;
z-index: 0;
}
#gamesBox {
text-align: center;
width: 100%;
}
#gamesBox hr {
margin: 0px auto 0px auto;
}
#gamesBox h2 {
margin: 0px;
}
#openGamesContainer {
margin: 0px;
height: 500px;
padding-top: 25px;
overflow-x: hidden;
overflow-y: scroll;
}
.openGame p {
margin: 10px;
width: 100%;
text-overflow: ellipsis;
overflow: hidden;
}
.openGame {
border: white solid 5px;
border-radius: 10px;
display: grid;
grid-auto-flow: column;
grid-template-columns: 3fr 1fr;
margin: 10px auto 0px auto;
width: 70%;
}
.openGame button {
box-sizing: border-box;
height: calc(100% + 2px);
width: calc(100% + 2px);
background-color: white;
border: none;
border-radius: 0px;
}
/*Other*/
#bottomButtons {
bottom: 0px;
top: auto;
}
#homeContainer {
height: 100%;
display: grid;
width: 100%;
gap: 10px;
place-items: center;
grid-auto-flow: column;
grid-template-columns: repeat(3, 1fr);
}
.homePanel {
margin: auto 0px auto 0px;
padding: 10px;
text-align: center;
}
@media (max-width: 1000px) {
input {
width: 80%;
}
#homeLogo {
height: 80px;
}
#homeContainer {
grid-template-columns: 1fr;
}
#codeContainer {
width: 90%;
}
}
@media (min-width: 1000px) {
#bottomButtons {
display: none;
}
}
@media (max-height: 700px) {
#divider {
margin-top: 10px;
}
.title {
margin-bottom: 0px;
}
#profileBox {
gap: 10px;
}
#openGamesContainer {
height: 400px;
}
}