Update index.html
Browse files- index.html +122 -2
index.html
CHANGED
@@ -78,6 +78,62 @@
|
|
78 |
color: white;
|
79 |
}
|
80 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
.powered-by {
|
82 |
color: rgba(255, 255, 255, 0.7);
|
83 |
font-size: 13px;
|
@@ -428,6 +484,38 @@
|
|
428 |
}
|
429 |
|
430 |
/* Responsive */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
431 |
@media (max-width: 768px) {
|
432 |
.nav-container {
|
433 |
padding: 15px 20px;
|
@@ -453,6 +541,26 @@
|
|
453 |
padding: 6px 12px;
|
454 |
}
|
455 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
456 |
.powered-by {
|
457 |
font-size: 11px;
|
458 |
}
|
@@ -475,7 +583,7 @@
|
|
475 |
}
|
476 |
|
477 |
.container {
|
478 |
-
padding-top:
|
479 |
}
|
480 |
|
481 |
.news-container {
|
@@ -497,7 +605,19 @@
|
|
497 |
<a href="#best" class="tab" data-tab="best">베스트 AI</a>
|
498 |
</div>
|
499 |
</div>
|
500 |
-
<div class="
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
501 |
</nav>
|
502 |
|
503 |
<!-- Animated particles background -->
|
|
|
78 |
color: white;
|
79 |
}
|
80 |
|
81 |
+
.nav-right {
|
82 |
+
display: flex;
|
83 |
+
align-items: center;
|
84 |
+
gap: 20px;
|
85 |
+
}
|
86 |
+
|
87 |
+
/* Community Badges */
|
88 |
+
.community-badges {
|
89 |
+
display: flex;
|
90 |
+
gap: 12px;
|
91 |
+
align-items: center;
|
92 |
+
}
|
93 |
+
|
94 |
+
.community-badge {
|
95 |
+
display: flex;
|
96 |
+
align-items: center;
|
97 |
+
gap: 8px;
|
98 |
+
background: rgba(255, 255, 255, 0.15);
|
99 |
+
padding: 8px 16px;
|
100 |
+
border-radius: 25px;
|
101 |
+
text-decoration: none;
|
102 |
+
color: white;
|
103 |
+
font-size: 14px;
|
104 |
+
font-weight: 500;
|
105 |
+
transition: all 0.3s;
|
106 |
+
border: 1px solid rgba(255, 255, 255, 0.2);
|
107 |
+
}
|
108 |
+
|
109 |
+
.community-badge:hover {
|
110 |
+
background: rgba(255, 255, 255, 0.25);
|
111 |
+
transform: translateY(-2px);
|
112 |
+
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
|
113 |
+
}
|
114 |
+
|
115 |
+
.badge-icon {
|
116 |
+
font-size: 18px;
|
117 |
+
}
|
118 |
+
|
119 |
+
.discord-badge {
|
120 |
+
background: rgba(88, 101, 242, 0.3);
|
121 |
+
border-color: rgba(88, 101, 242, 0.5);
|
122 |
+
}
|
123 |
+
|
124 |
+
.discord-badge:hover {
|
125 |
+
background: rgba(88, 101, 242, 0.5);
|
126 |
+
}
|
127 |
+
|
128 |
+
.kakao-badge {
|
129 |
+
background: rgba(254, 229, 0, 0.3);
|
130 |
+
border-color: rgba(254, 229, 0, 0.5);
|
131 |
+
}
|
132 |
+
|
133 |
+
.kakao-badge:hover {
|
134 |
+
background: rgba(254, 229, 0, 0.5);
|
135 |
+
}
|
136 |
+
|
137 |
.powered-by {
|
138 |
color: rgba(255, 255, 255, 0.7);
|
139 |
font-size: 13px;
|
|
|
484 |
}
|
485 |
|
486 |
/* Responsive */
|
487 |
+
@media (max-width: 1200px) {
|
488 |
+
.nav-container {
|
489 |
+
padding: 15px 20px;
|
490 |
+
}
|
491 |
+
|
492 |
+
.nav-left {
|
493 |
+
gap: 20px;
|
494 |
+
}
|
495 |
+
|
496 |
+
.tabs {
|
497 |
+
gap: 15px;
|
498 |
+
}
|
499 |
+
|
500 |
+
.tab {
|
501 |
+
font-size: 14px;
|
502 |
+
padding: 6px 12px;
|
503 |
+
}
|
504 |
+
|
505 |
+
.community-badges {
|
506 |
+
gap: 8px;
|
507 |
+
}
|
508 |
+
|
509 |
+
.community-badge {
|
510 |
+
padding: 6px 12px;
|
511 |
+
font-size: 13px;
|
512 |
+
}
|
513 |
+
|
514 |
+
.badge-icon {
|
515 |
+
font-size: 16px;
|
516 |
+
}
|
517 |
+
}
|
518 |
+
|
519 |
@media (max-width: 768px) {
|
520 |
.nav-container {
|
521 |
padding: 15px 20px;
|
|
|
541 |
padding: 6px 12px;
|
542 |
}
|
543 |
|
544 |
+
.nav-right {
|
545 |
+
width: 100%;
|
546 |
+
flex-direction: column;
|
547 |
+
gap: 10px;
|
548 |
+
}
|
549 |
+
|
550 |
+
.community-badges {
|
551 |
+
width: 100%;
|
552 |
+
justify-content: center;
|
553 |
+
}
|
554 |
+
|
555 |
+
.community-badge {
|
556 |
+
font-size: 12px;
|
557 |
+
padding: 6px 10px;
|
558 |
+
}
|
559 |
+
|
560 |
+
.badge-icon {
|
561 |
+
font-size: 14px;
|
562 |
+
}
|
563 |
+
|
564 |
.powered-by {
|
565 |
font-size: 11px;
|
566 |
}
|
|
|
583 |
}
|
584 |
|
585 |
.container {
|
586 |
+
padding-top: 220px;
|
587 |
}
|
588 |
|
589 |
.news-container {
|
|
|
605 |
<a href="#best" class="tab" data-tab="best">베스트 AI</a>
|
606 |
</div>
|
607 |
</div>
|
608 |
+
<div class="nav-right">
|
609 |
+
<div class="community-badges">
|
610 |
+
<a href="https://discord.gg/openfreeai" target="_blank" class="community-badge discord-badge">
|
611 |
+
<span class="badge-icon">💬</span>
|
612 |
+
<span>디스코드</span>
|
613 |
+
</a>
|
614 |
+
<a href="http://pf.kakao.com/_MxmLFn" target="_blank" class="community-badge kakao-badge">
|
615 |
+
<span class="badge-icon">💛</span>
|
616 |
+
<span>카카오 채널</span>
|
617 |
+
</a>
|
618 |
+
</div>
|
619 |
+
<div class="powered-by">Powered by 비드래프트</div>
|
620 |
+
</div>
|
621 |
</nav>
|
622 |
|
623 |
<!-- Animated particles background -->
|