-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
370 lines (341 loc) · 7.07 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
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
@font-face {
font-family: "HonokaMaruGothic";
src: url('Resources/font_1_honokamarugo_1.1.ttf');
}
@font-face {
font-family: "MyriadSetPro";
src: url('Resources/myriad-set-pro_text.ttf');
}
@font-face {
font-family: "TimemachineWa";
src: url('Resources/timemachine-wa.ttf');
}
*{margin:0; padding:0;}
body,html{height: 100%; font-family: 'MyriadSetPro',Arial, Helvetica, sans-serif;}
#main-picture{
background-color: gray;
height: 100%;
width: 100%;
background-image: url('Resources/osaka-small.jpg');
background-size: cover;
background-repeat: repeat;
background-position: 0px 0px;
background-attachment: fixed;
font-family: 'MyriadSetPro';
}
#quote{
padding-left: 5%;
max-width: 450px;
height: 100%;
background-image: linear-gradient(to right, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0) 100%);
}
#quote img{
width:58%;
padding-top: 180px;
}
#quote h1{
padding-top: 200px;
font-size: 36px;
color: white;
}
#quote #p1{
padding: 30px 0;
font-size: 24px;
color: white;
width: 65%;
}
#quote h2{
font-size: 26px;
color: white;
padding: 10px;
font-weight: bold;
}
#serverip{
font-family: 'Courier New', Courier, monospace;
background-color: rgba(100,207,15,0.9);
width: 310px !important;
}
#quote a{
background-color: rgba(114,137,218,0.9);
border-radius: 10px;
position: absolute;
bottom:30px;
right:20px;
width: 260px;
padding-right: 5px;
text-align: center;
}
#quote a img{
/*position: absolute;
bottom: 10%;
left: 0%;
align-self: center;*/
padding:0 10px 0 0;
vertical-align: middle;
width: 35px;
height: 35px;
}
#quote #p2{
font-size: 18px;
padding-top: 10px;
}
#AnnounceEvents{
display: flex;
flex-direction: row;
justify-content: center;
flex-wrap: wrap;
}
.AE{
width: 500px;
padding:30px;
margin: 20px 30px;
border-radius: 10px;
}
.AE h1{
margin-bottom: 10px;
}
.announce{
background-color: #FF6666;
color: white;
}
.events{
background-color: #FFBBBB;
}
#youtube{
width: 100%;
display: flex;
flex-direction: column;
background-color: rgb(219, 0, 0);
font-family: 'MyriadSetPro';
padding:10px;
text-align: center;
overflow: hidden;
}
#youtube h1{
color: white;
padding:1vh 5px;
}
#youtube #yjjcity{
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
background-color: rgb(219, 0, 0);
}
#youtube #yjjcity iframe{
margin: 10px 5px;
border-radius: 15px;
}
#rules{
padding-left: 30px;
padding-top: 100px;
width: 550px;
color: white;
/* background-image: linear-gradient(to right, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0) 100%); */
font-family: MyriadSetPro
}
#rules ol{
padding-left: 30px;
font-size: 24px;
}
.desc{
font-size: 18px;
}
.hidden{
display: none;
}
/* Tooltip container */
.tooltip {
cursor: pointer;
position: relative;
display: inline-block;
}
/* Tooltip text */
.tooltip .tooltiptext {
font-family: HonokaMaruGothic;
font-size: 18px;
opacity: 0;
width: 180px;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
/* Position the tooltip */
position: absolute;
z-index: 99;
bottom: 90%;
left: 40%;
margin-left: -60px;
transition: 0.3s;
}
/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
opacity: 1;
bottom: 110%;
}
/*========== Support for smaller screens (Mobile Compatibility) ==========*/
@media only screen and (max-width: 600px) {
header{
padding: 8px 6px;
}
header h1{
font-size:24px;
}
header div{
padding: 17px 0;
}
header a{
padding: 5px 5px;
font-size: 18px;
}
}
@media only screen and (max-width: 690px){
#discordinvite #text{
display: none;
}
#quote a{
border-radius: 100%;
width: 50px !important;
}
#discordinvite .tooltiptext{
left:-100%;
}
}
@media only screen and (max-height: 400px) {
header{
padding: 0;
}
header h1{
font-size:22px;
}
header div{
padding: 12px 0;
}
header a{
padding: 8px 10px;
font-size: 17px;
}
#main-picture{
background-position: 0 0;
}
#quote #limaruflag{
padding-top: 120px !important;
}
#quote h1{
padding-top: 12px !important;
font-size: 24px !important;
}
#quote #p1{
padding: 10px 0 !important;
font-size: 18px !important;
}
#quote a{
width: 200px;
}
#serverip{
font-size: 20px !important;
top:120px !important;
}
#discordinvite #text{
font-size: 18px !important;
}
}
@media only screen and (max-height: 700px) {
.AE{
width: 100%;
}
#quote img{
width:25vh;
padding-top: 160px;
}
#quote{
max-width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.3);
background-image:none;
}
#quote h1{
padding-top: 13px;
font-size: 30px;
}
#quote #p1{
padding: 20px 0;
font-size: 20px;
max-width:400px;
}
#serverip{
font-size: 20px;
width: 270px;
}
#quote #p2{
font-size: 12px;
}
}
@media only screen and (max-height: 468px) and (min-width: 500px){
header{
padding: 5px 8px;
}
#quote #p1{
max-width:300px;
}
#quote img{
padding-top: 140px;
}
#serverip{
border-radius: 10px 0 0 10px;
position: absolute;
right:0;
top:140px;
}
}
.story-chapter{
color: inherit;
}
/* ==================== Dropdown Button ==================== */
.fromBtn, .toBtn {
background-color: #4CAF50;
color: white;
padding: 16px;
font-size: 18px;
border: none;
cursor: pointer;
}
.fromBtn:hover, .fromBtn:focus, .toBtn:hover, .toBtn:focus {background-color: #3e8e41;}
/* The search field */
#fromInput, #toInput {
box-sizing: border-box;
background-position: 14px 12px;
background-repeat: no-repeat;
font-size: 16px;
padding: 14px 20px 12px 45px;
border: none;
border-bottom: 1px solid #ddd;
}
/* The search field when it gets focus/clicked on */
#fromInput:focus, #toInput:focus {outline: 3px solid #ddd;}
/* The container <div> - needed to position the dropdown content */
.dropdown {
position: relative;
display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
position: absolute;
background-color: #f6f6f6;
min-width: 230px;
border: 1px solid #ddd;
z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}
/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}