footer 디자인 적용
This commit is contained in:
@@ -1334,253 +1334,160 @@ body {
|
||||
}
|
||||
}
|
||||
.global-footer {
|
||||
background: #1A1A2E;
|
||||
color: #FFFFFF;
|
||||
padding: 80px 0 40px;
|
||||
background: #FFFFFF;
|
||||
border-top: 1px solid #E5E7EB;
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.global-footer {
|
||||
padding: 48px 0 32px;
|
||||
}
|
||||
}
|
||||
|
||||
.footer-top {
|
||||
display: grid;
|
||||
grid-template-columns: 2fr 3fr;
|
||||
gap: 80px;
|
||||
margin-bottom: 64px;
|
||||
max-width: 1280px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
padding: 0 24px;
|
||||
}
|
||||
@media (max-width: 1024px) {
|
||||
.footer-top {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
.footer-brand {
|
||||
max-width: 360px;
|
||||
}
|
||||
.footer-brand .footer-logo {
|
||||
height: 48px;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
.footer-brand .footer-desc {
|
||||
font-size: 14px;
|
||||
line-height: 1.8;
|
||||
color: rgba(255, 255, 255, 0.7);
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
.footer-brand .footer-newsletter {
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
.footer-brand .footer-newsletter h4 {
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.footer-brand .footer-newsletter .newsletter-form {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
}
|
||||
.footer-brand .footer-newsletter .newsletter-form input {
|
||||
flex: 1;
|
||||
padding: 8px 16px;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
border-radius: 8px;
|
||||
color: #FFFFFF;
|
||||
font-size: 14px;
|
||||
}
|
||||
.footer-brand .footer-newsletter .newsletter-form input::placeholder {
|
||||
color: rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
.footer-brand .footer-newsletter .newsletter-form input:focus {
|
||||
background: rgba(255, 255, 255, 0.15);
|
||||
border-color: #4B9BFF;
|
||||
outline: none;
|
||||
}
|
||||
.footer-brand .footer-newsletter .newsletter-form button {
|
||||
padding: 8px 24px;
|
||||
background: linear-gradient(135deg, #4B9BFF 0%, #2E7FF7 100%);
|
||||
color: #FFFFFF;
|
||||
border-radius: 8px;
|
||||
font-weight: 600;
|
||||
font-size: 14px;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
.footer-brand .footer-newsletter .newsletter-form button:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
|
||||
}
|
||||
|
||||
.social-links {
|
||||
display: flex;
|
||||
gap: 16px;
|
||||
}
|
||||
.social-links a {
|
||||
width: 44px;
|
||||
height: 44px;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border-radius: 12px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
color: #FFFFFF;
|
||||
transition: all 0.3s ease;
|
||||
font-size: 20px;
|
||||
}
|
||||
.social-links a:hover {
|
||||
background: #4B9BFF;
|
||||
transform: translateY(-3px);
|
||||
}
|
||||
.social-links a.facebook:hover {
|
||||
background: #1877f2;
|
||||
}
|
||||
.social-links a.twitter:hover {
|
||||
background: #1da1f2;
|
||||
}
|
||||
.social-links a.linkedin:hover {
|
||||
background: #0077b5;
|
||||
}
|
||||
.social-links a.github:hover {
|
||||
background: #333;
|
||||
}
|
||||
.social-links a.youtube:hover {
|
||||
background: #ff0000;
|
||||
}
|
||||
|
||||
.footer-links {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 40px;
|
||||
}
|
||||
@media (max-width: 1024px) {
|
||||
.footer-links {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.footer-links {
|
||||
grid-template-columns: 1fr;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
.footer-column h4 {
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 24px;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
.footer-column ul {
|
||||
list-style: none;
|
||||
}
|
||||
.footer-column ul li {
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.footer-column ul li a {
|
||||
color: rgba(255, 255, 255, 0.7);
|
||||
font-size: 14px;
|
||||
transition: all 0.3s ease;
|
||||
position: relative;
|
||||
}
|
||||
.footer-column ul li a::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
bottom: -2px;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 1px;
|
||||
background: #00D4FF;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
.footer-column ul li a:hover {
|
||||
color: #00D4FF;
|
||||
}
|
||||
.footer-column ul li a:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
.footer-column .footer-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
padding: 4px 8px;
|
||||
background: rgba(107, 207, 127, 0.2);
|
||||
color: #6BCF7F;
|
||||
border-radius: 50px;
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
.footer-bottom {
|
||||
padding-top: 40px;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
||||
max-width: 1280px;
|
||||
.global-footer .container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding-left: 24px;
|
||||
padding-right: 24px;
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
.footer-legal {
|
||||
.footer-content {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
min-height: 200px;
|
||||
padding: 40px 0;
|
||||
gap: 40px;
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.footer-legal {
|
||||
@media (max-width: 1024px) {
|
||||
.footer-content {
|
||||
flex-direction: column;
|
||||
gap: 24px;
|
||||
text-align: center;
|
||||
align-items: flex-start;
|
||||
gap: 32px;
|
||||
padding: 32px 0;
|
||||
}
|
||||
}
|
||||
.footer-legal p {
|
||||
color: rgba(255, 255, 255, 0.5);
|
||||
font-size: 14px;
|
||||
margin: 0;
|
||||
}
|
||||
.footer-legal .legal-links {
|
||||
|
||||
.footer-left {
|
||||
display: flex;
|
||||
gap: 24px;
|
||||
flex-direction: column;
|
||||
gap: 16px;
|
||||
}
|
||||
.footer-legal .legal-links a {
|
||||
color: rgba(255, 255, 255, 0.7);
|
||||
.footer-left .footer-logo {
|
||||
width: 114px;
|
||||
height: auto;
|
||||
object-fit: contain;
|
||||
}
|
||||
.footer-left .footer-links {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
.footer-left .footer-links .footer-link {
|
||||
font-family: "Noto Sans KR", sans-serif;
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
color: #5F666C;
|
||||
text-decoration: none;
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
.footer-left .footer-links .footer-link:hover {
|
||||
color: #0049B4;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.footer-left .footer-links .footer-separator {
|
||||
color: #D1D5DB;
|
||||
font-size: 16px;
|
||||
user-select: none;
|
||||
}
|
||||
.footer-left .footer-copyright {
|
||||
font-family: "Noto Sans KR", sans-serif;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
color: #9CA3AF;
|
||||
margin: 0;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.footer-right {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 16px;
|
||||
align-items: flex-end;
|
||||
}
|
||||
@media (max-width: 1024px) {
|
||||
.footer-right {
|
||||
align-items: flex-start;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.footer-right .footer-related-sites .related-sites-select {
|
||||
width: 240px;
|
||||
height: 44px;
|
||||
padding: 0 16px;
|
||||
font-family: "Noto Sans KR", sans-serif;
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
color: #5F666C;
|
||||
background: #FFFFFF;
|
||||
border: 1px solid #D1D5DB;
|
||||
border-radius: 6px;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
appearance: none;
|
||||
background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%235F666C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
||||
background-repeat: no-repeat;
|
||||
background-position: right 16px center;
|
||||
padding-right: 40px;
|
||||
}
|
||||
.footer-legal .legal-links a:hover {
|
||||
color: #FFFFFF;
|
||||
.footer-right .footer-related-sites .related-sites-select:hover {
|
||||
border-color: #0049B4;
|
||||
}
|
||||
.footer-right .footer-related-sites .related-sites-select:focus {
|
||||
outline: none;
|
||||
border-color: #0049B4;
|
||||
box-shadow: 0 0 0 3px rgba(0, 73, 180, 0.1);
|
||||
}
|
||||
@media (max-width: 1024px) {
|
||||
.footer-right .footer-related-sites .related-sites-select {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.footer-right .footer-contact {
|
||||
font-family: "Noto Sans KR", sans-serif;
|
||||
font-size: 30px;
|
||||
font-weight: 700;
|
||||
color: #1F2937;
|
||||
margin: 0;
|
||||
line-height: 1.2;
|
||||
}
|
||||
@media (max-width: 1024px) {
|
||||
.footer-right .footer-contact {
|
||||
font-size: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
.footer-decoration {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
@media (max-width: 576px) {
|
||||
.footer-content {
|
||||
padding: 24px 0;
|
||||
gap: 24px;
|
||||
}
|
||||
.footer-left {
|
||||
gap: 12px;
|
||||
}
|
||||
.footer-left .footer-logo {
|
||||
width: 90px;
|
||||
}
|
||||
.footer-left .footer-links {
|
||||
flex-wrap: wrap;
|
||||
gap: 6px;
|
||||
}
|
||||
.footer-left .footer-links .footer-link,
|
||||
.footer-left .footer-links .footer-separator {
|
||||
font-size: 14px;
|
||||
}
|
||||
.footer-left .footer-copyright {
|
||||
font-size: 12px;
|
||||
}
|
||||
.footer-right {
|
||||
gap: 12px;
|
||||
}
|
||||
.footer-right .footer-contact {
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
.footer-decoration::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: -100px;
|
||||
right: -100px;
|
||||
width: 300px;
|
||||
height: 300px;
|
||||
background: radial-gradient(circle, rgba(75, 155, 255, 0.1) 0%, transparent 70%);
|
||||
border-radius: 50%;
|
||||
}
|
||||
.footer-decoration::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
bottom: -150px;
|
||||
left: -150px;
|
||||
width: 400px;
|
||||
height: 400px;
|
||||
background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.grid {
|
||||
display: grid;
|
||||
gap: 24px;
|
||||
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user