-
Notifications
You must be signed in to change notification settings - Fork 0
/
kart.html
400 lines (393 loc) · 13.7 KB
/
kart.html
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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
<!DOCTYPE html>
<html>
<head>
<title>OZ Gaming</title>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Gothic+A1|Sunflower:500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Nanum+Gothic&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Mukta&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="oz/ozicon.ico">
<style>
* {
margin: 0; padding: 0;
box-sizing: border-box;
}
#all {
margin: 0 auto;
background: white;
background: #575e40;
}
/*
start header
*/
#header {
background: black;
overflow: hidden;
width: 100%;
position: fixed;
z-index: 99999;
}
#header #logo {
margin-left: 30px;
float: left;
}
#header #logo img { width: 15%; margin-top: 1px; }
#header ul {
float: right;
list-style: none;
margin-right: 30px;
padding: 21px;
}
#header ul li {
margin: 0 21px;
display: inline;
font-family: 'Sunflower', sans-serif;
}
#header ul a {
text-decoration: none;
color: white;
font-size: 16px;
padding: 22px 10px;
}
#header ul a:nth-child(3) {
border-bottom: 2px solid #feed05;
color: #feed05;
}
#header ul a:hover {
background: #feed05;
color: black;
}
/*
end header
*/
/*
start content
*/
#content {
overflow: hidden;
width: 75%;
margin: 0 auto;
background: black;
}
#content #main_title {
margin-top: 64px;
overflow: hidden;
position: relative;
}
#content #main_title h1 {
color: #feed05;
position: absolute;
width: 470px; height: 80px;
top: 50%; left: 50%;
margin-top: -40px; margin-left: -235px;
font-size: 60px;
text-align: center;
line-height: 70px;
font-family: 'Mukta', sans-serif;
}
#content #main_content {
padding: 10px;
color: white;
overflow: hidden;
}
#content #main_title img { width: 100%; opacity: 0.5; }
#content #main_title ul {
width: 602px;
margin: 0 auto;
}
#content #main_title ul li {
list-style: none;
float: left;
border: 1px solid white;
padding: 10px;
width: 150px;
color: white;
text-align: center;
font-family: 'Sunflower', sans-serif;
font-size: 20px;
}
#content #main_title ul li:hover {
border: 1px solid #feed05;
background-color: #feed05;
}
#content #main_title ul li:hover a { color: black; }
#content #main_title ul li:nth-child(4) {
color: #feed05;
border: 1px solid #feed05;
}
#content #main_title a { text-decoration: none; color: white; padding: 10px 20px; }
#content #main_content .player {
overflow: hidden;
margin-top: 20px;
}
#content #main_content .player h1 { clear: both; margin: 10px; }
#content #main_content .player_info {
width: 20%; height: 340px;
background: white;
color: black;
float: left;
font-family: 'Nanum Gothic', sans-serif;
}
#content #main_content .player_info img { width: 100%; }
#content #main_content .player_info .player_prod p { float: right; }
.player_prod, .player_sns { padding: 10px; }
.player_sns a { text-decoration: none; }
#content #main_content .player_sns img {
width: 9.8%;
margin: 5px;
}
/*
end content
*/
/*
start footer
*/
#footer { background: #373c28; }
#footer #up_content {
width: 85%;
margin: 0 auto;
border-bottom: 1px solid white;
overflow: hidden;
}
#footer #down_content {
width: 85%;
margin: 0 auto;
overflow: hidden;
}
#footer #up_content #sponcer {
width: 55%;
float: left;
padding: 10px;
}
#footer #up_content #sns {
width: 45%;
float: right;
padding: 10px;
}
#footer #down_content #contact {
width: 100%;
padding: 10px;
}
#footer span {
font-size: 30px;
color: white;
float: left;
}
#footer img, svg {
height: 50px;
float: left;
margin-left: 10px;
}
#footer ul {
margin-left: 10px;
list-style: none;
float: left;
color: white;
font-size: 20px;
font-family: 'Nanum Gothic', sans-serif;
}
</style>
</head>
<body>
<div id="all">
<div id="header">
<a id="logo" href="index.html"><img src="./oz/oz.jpg"></a>
<ul>
<a href="index.html"><li>Home</li></a>
<a href="about.html"><li>About</li></a>
<a href="lol.html"><li>Team</li></a>
<a href="news.html"><li>News</li></a>
<a href="match.html"><li>Match</li></a>
<a href="gallery.html"><li>Gallery</li></a>
<a href="http://ozgaming.kr/shop"><li>Shop</li></a>
</ul>
</div>
<div id="content">
<div id="main_title">
<img src="./oz/kartrider/karthead.jpg">
<h1>KARTRIDER</h1>
<ul>
<li><a href="lol.html">LOL</a></li>
<li><a href="overwatch.html">Overwatch</a></li>
<li><a href="pubg.html">PUBG</a></li>
<li><a href="kart.html">Kartrider</a></li>
</ul>
</div>
<div id="main_content">
<div class="player">
<h1>Staff</h1>
<div class="player_info">
<img src="./oz/kartrider/김승래.png">
<div class="player_prod">
<h3>Kim Seung Rae</h3>
<p>Head Coach</p>
<h4>김승래</h4>
</div>
<div class="player_sns">
<a target="blank" href="http://bj.afreecatv.com/tmdfo1994">
<img src="./oz/sns/afreeca.png" onmouseover="this.src='./oz/sns/afreecaon.png'" onmouseout="this.src='./oz/sns/afreeca.png'">
</a>
<a target="blank" href="https://www.youtube.com/channel/UCpqhgKIkZT5mT2gL8ao_PVA">
<img src="./oz/sns/youtube.png" onmouseover="this.src='./oz/sns/youtubeon.png'" onmouseout="this.src='./oz/sns/youtube.png'">
</a>
<a target="blank" href="https://www.twitch.tv/tmdfo1994/">
<img src="./oz/sns/twitch.png" onmouseover="this.src='./oz/sns/twitchon.png'" onmouseout="this.src='./oz/sns/twitch.png'">
</a>
</div>
</div>
</div>
<div class="player">
<h1>Player</h1>
<div class="player_info">
<img src="./oz/kartrider/이재인.png">
<div class="player_prod">
<h3>Lee Jae In</h3>
<p>SPEED ACE</p>
<h4>이재인</h4>
</div>
<div class="player_sns">
</div>
</div>
<div class="player_info">
<img src="./oz/kartrider/김기수.png">
<div class="player_prod">
<h3>Kim Ki Soo</h3>
<p>RUNNER</p>
<h4>김기수</h4>
</div>
<div class="player_sns">
<a target="blank" href="bj.afreecatv.com/rltn10298646">
<img src="./oz/sns/afreeca.png" onmouseover="this.src='./oz/sns/afreecaon.png'" onmouseout="this.src='./oz/sns/afreeca.png'">
</a>
<a target="blank" href="https://www.youtube.com/channel/UCBagHTv7Tg52YFLA0tp51bw">
<img src="./oz/sns/youtube.png" onmouseover="this.src='./oz/sns/youtubeon.png'" onmouseout="this.src='./oz/sns/youtube.png'">
</a>
</div>
</div>
<div class="player_info">
<img src="./oz/kartrider/문민기.png">
<div class="player_prod">
<h3>Moon Min Ki</h3>
<p>SWEEPER</p>
<h4>문민기</h4>
</div>
<div class="player_sns">
<a target="blank" href="http://bj.afreecatv.com/alsrlsp">
<img src="./oz/sns/afreeca.png" onmouseover="this.src='./oz/sns/afreecaon.png'" onmouseout="this.src='./oz/sns/afreeca.png'">
</a>
</div>
</div>
<div class="player_info">
<img src="./oz/kartrider/서정현.png">
<div class="player_prod">
<h3>Seo Jeong Hyun</h3>
<p>ITEM ACE</p>
<h4>서정현</h4>
</div>
<div class="player_sns">
</div>
</div>
<div class="player_info">
<img src="./oz/kartrider/우성민.png">
<div class="player_prod">
<h3>Woo Sung Min</h3>
<p>RUNNER</p>
<h4>우성민</h4>
</div>
<div class="player_sns">
<a target="blank" href="http://bj.afreecatv.com/le9end">
<img src="./oz/sns/afreeca.png" onmouseover="this.src='./oz/sns/afreecaon.png'" onmouseout="this.src='./oz/sns/afreeca.png'">
</a>
<a target="blank" href="https://www.youtube.com/channel/UCfEnn4OcIA9bOfR4cOhvF7Q">
<img src="./oz/sns/youtube.png" onmouseover="this.src='./oz/sns/youtubeon.png'" onmouseout="this.src='./oz/sns/youtube.png'">
</a>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<div id="up_content">
<div id="sponcer">
<span>Partners | </span>
<a href="https://battlica.com//"target="blank"><img src="./oz/battlica.png"></a>
<a href="http://www.ozarena.com/"target="blank"><img src="./oz/optimum_zone.png"></a>
<a href="http://wesl.kr/"target="blank"><img src="./oz/wesl.png"></a>
</div>
<div id="sns">
<span>Social | </span>
<a href="https://www.facebook.com/ozgamingkr/" target="blank">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 87.9 70.9" style="enable-background:new 0 0 87.9 70.9;" xml:space="preserve">
<style type="text/css"> .st0{fill:#FFFFFF;} </style>
<path class="st0" d="M67.4,6.4H20.4c-3,0-5.5,2.5-5.5,5.5v46.9c0,3,2.5,5.5,5.5,5.5H46V42h-7.5v-8.8H46v-6.5
c0-7.5,4.6-11.5,11.2-11.5c2.3,0,4.6,0.1,6.8,0.3v7.8h-4.7c-3.6,0-4.3,1.8-4.3,4.3v5.6h8.7L62.6,42H55v22.4h12.5
c3,0,5.5-2.5,5.5-5.5V12C72.9,8.9,70.5,6.4,67.4,6.4z"/>
</svg>
</a>
<a href="https://twitter.com/OZ_Gaming_kr" target="blank">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 300 300" style="enable-background:new 0 0 300 300;" xml:space="preserve">
<style type="text/css"> .st0{fill:#ffffff;} </style>
<path class="st0" d="M250,88c-7.4,3.3-15.3,5.5-23.6,6.5c8.5-5.1,15-13.1,18-22.7c-7.9,4.7-16.7,8.1-26.1,10c-7.5-8-18.1-13-30-13
c-22.7,0-41,18.4-41,41c0,3.2,0.4,6.3,1.1,9.4c-34.1-1.7-64.3-18-84.6-42.9c-3.5,6.1-5.6,13.1-5.6,20.6c0,14.2,7.2,26.8,18.3,34.2
c-6.7-0.2-13.1-2.1-18.6-5.1c0,0.2,0,0.3,0,0.5c0,19.9,14.1,36.5,32.9,40.2c-3.4,0.9-7.1,1.4-10.8,1.4c-2.6,0-5.2-0.3-7.7-0.7
c5.2,16.3,20.4,28.2,38.3,28.5c-14,11-31.7,17.6-51,17.6c-3.3,0-6.6-0.2-9.8-0.6c18.2,11.6,39.7,18.4,62.9,18.4
c75.5,0,116.7-62.5,116.7-116.7c0-1.8,0-3.5-0.1-5.3C237.5,103.4,244.5,96.2,250,88z"/>
</svg>
</a>
<a href="https://www.instagram.com/ozgaming_kr/" target="blank">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 720 720" style="enable-background:new 0 0 720 720;" xml:space="preserve">
<style type="text/css"> .st0{fill:#FFFFFF;} </style>
<path class="st0" d="M456.6,601.1h-195c-74.6,0-135.7-61.1-135.7-135.7V257.6c0-74.6,61.1-135.7,135.7-135.7h195
c74.6,0,135.7,61.1,135.7,135.7v207.8C592.3,540.1,531.2,601.1,456.6,601.1z M456.6,565.3c26.5,0,51.5-10.4,70.5-29.4
s29.4-44,29.4-70.5V257.6c0-26.5-10.4-51.5-29.4-70.5s-44-29.4-70.5-29.4h-195c-26.5,0-51.5,10.4-70.5,29.4s-29.4,44-29.4,70.5
v207.8c0,26.5,10.4,51.5,29.4,70.5s44,29.4,70.5,29.4H456.6z"/>
<path class="st0" d="M488.2,359.7c0,70.9-57.5,128.4-128.4,128.4s-128.4-57.5-128.4-128.4s57.5-128.4,128.4-128.4
S488.2,288.7,488.2,359.7z M359.1,275.7c-46.4,0-84.1,37.7-84.1,84.1s37.7,84.1,84.1,84.1s84.1-37.7,84.1-84.1
S405.6,275.7,359.1,275.7z"/>
<circle class="st0" cx="490.3" cy="229.2" r="30.4"/>
</svg>
</a>
<a href="https://www.twitch.tv/ozgamingkr" target="blank">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 300 300" style="enable-background:new 0 0 300 300;" xml:space="preserve">
<style type="text/css"> .st0{fill:#ffffff;} </style>
<g>
<path class="st0" d="M96.9,259c0-8.7,0-17.1,0-26.1c-17.7,0-35.1,0-52.9,0c0-1.2,0-1.9,0-2.8c0-49.1,0-98,0-147.1
c0-1.6,0.3-2.8,0.6-4.4c3.7-11.8,7.8-23.6,11.8-35.5c0.6-1.6,1.2-2.2,2.8-2.2c64.7,0,129.1,0,193.7,0c0.6,0,1.2,0,2.2,0
c0,0.9,0,1.9,0,2.8c0,42.3,0,84.3,0,126.6c0,1.9-0.6,3.1-1.9,4.4c-18.7,18.7-37.3,37.3-56,56c-1.2,1.2-2.5,1.9-4.4,1.9
c-11.5,0-22.7,0-34.2,0c-2.2,0-3.7,0.6-5.3,2.2c-7.5,7.8-15.2,15.2-22.7,22.7c-0.6,0.6-1.9,1.6-2.8,1.6c-10.3,0-20.2,0-30.5,0
C97.6,259.3,97.2,259,96.9,259z M76.7,61.2c0,46.3,0,92.7,0,139c15.5,0,30.8,0,46.3,0c0,8.7,0,17.4,0,26.4c0.6-0.6,1.2-0.9,1.6-1.6
c7.8-7.8,15.5-15.5,23.3-23.3c1.2-1.2,2.2-1.6,3.7-1.6c16.2,0,32.3,0,48.5,0c1.2,0,2.8-0.6,3.4-1.6c10-10,20.2-19.9,30.2-29.9
c1.2-1.2,1.6-2.2,1.6-3.7c0-33.9,0-67.5,0-101.4c0-0.9,0-1.6,0-2.5C182.5,61.2,129.6,61.2,76.7,61.2z"/>
<path class="st0" d="M149.5,101c0,19.6,0,39.2,0,58.8c-6.5,0-13.1,0-19.6,0c0-19.6,0-39.2,0-58.8C136.4,101,142.7,101,149.5,101z"
/>
<path class="st0" d="M202.1,160.1c-6.5,0-12.8,0-19.3,0c0-19.6,0-39.2,0-58.8c6.2,0,12.8,0,19.3,0
C202.1,120.6,202.1,140.2,202.1,160.1z"/>
</g>
</svg>
</a>
<a href="https://www.youtube.com/channel/UCV2MKUOI0nxQy4HrY7j1KIw" target="blank">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 300 300" style="enable-background:new 0 0 300 300;" xml:space="preserve">
<style type="text/css"> .st0{fill:#ffffff;} </style>
<path class="st0" d="M207.4,65.9H91.6c-63.3,0-63.3,18-63.3,62.4v43.4c0,42.2,9,62.4,63.3,62.4h115.7c49.1,0,63.3-11.8,63.3-62.4
v-43.4C270.7,81.6,268.3,65.9,207.4,65.9z M124.7,183v-68.1l65.3,33.9L124.7,183z"/>
</svg>
</div>
</div>
<div id="down_content">
<div id="contact">
<span>Contact | </span>
<ul>
<li>Owner : 이개성</li>
<li>Address : 서울시 강남구 봉은사로 24길 73, e스포츠센터 (주)피지엠파트너스</li>
</ul>
</div>
</div>
</div>
</div>
</body>
</html>