64 lines
1.0 KiB
SCSS
64 lines
1.0 KiB
SCSS
@use "../base/variable" as *;
|
|
@use "../base/mixin" as *;
|
|
|
|
// Intro
|
|
.intro {
|
|
height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
background: $color-bg;
|
|
}
|
|
|
|
.intro__bg {
|
|
position: absolute;
|
|
inset: 0;
|
|
background: url("../../images/bg_home.png") center / cover no-repeat;
|
|
opacity: 0.2;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.intro__content {
|
|
position: relative;
|
|
text-align: center;
|
|
z-index: 1;
|
|
}
|
|
|
|
.intro__sub {
|
|
font-size: clamp(18px, 2.6vw, 50px);
|
|
font-weight: 100;
|
|
letter-spacing: 0.02em;
|
|
color: $color-white;
|
|
margin-bottom: clamp(16px, 2vw, 32px);
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.intro__title {
|
|
font-size: clamp(32px, 5.2vw, 100px);
|
|
font-weight: 700;
|
|
letter-spacing: 0.01em;
|
|
text-transform: uppercase;
|
|
color: $color-white;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
@include mo {
|
|
.gnb__inner {
|
|
padding: 0 20px;
|
|
height: $gnb-height-mo;
|
|
}
|
|
|
|
.gnb__nav {
|
|
display: none;
|
|
}
|
|
|
|
.gnb__hamburger {
|
|
display: flex;
|
|
}
|
|
|
|
.gnb__mobileNav {
|
|
display: block;
|
|
}
|
|
}
|