๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ
Site ์ œ์ž‘

04. ํ—ค๋” ์œ ํ˜• 1

by Youcodein 2022. 9. 1.
728x90
๋ฐ˜์‘ํ˜•

ํ—ค๋” ์œ ํ˜• 01

ํ—ค๋” ์œ ํ˜• ๋ ˆ์ด์•„์›ƒ ์‚ฌ์ดํŠธ์ž…๋‹ˆ๋‹ค.

๋ ˆ์ด์•„์›ƒ ์„ค์ •

figma๋กœ ๊ทธ๋ฆฌ๋“œ์™€ ์‚ฌ์ดํŠธ์˜ ๋ ˆ์ด์•„์›ƒ์„ ์žก์Šต๋‹ˆ๋‹ค.

HTML

html ์†Œ์Šค์ž…๋‹ˆ๋‹ค.

<body>
    <section id="headerType01" class="header__wrap nexon">
        <div class="header__inner">
            <div class="header__logo">
                <a href="#">Web <em>site</em></a>
            </div>
            <div class="header__menu">
                <ul>
                    <li><a href="#">ํ—ค๋” ์˜์—ญ</a></li>
                    <li><a href="#">์Šฌ๋ผ์ด๋“œ ์˜์—ญ</a></li>
                    <li><a href="#">๋ฐฐ๋„ˆ ์˜์—ญ</a></li>
                    <li><a href="#">์ปจํ…์ธ  ์˜์—ญ</a></li>
                    <li><a href="#">ํ‘ธํ„ฐ ์˜์—ญ</a></li>
                </ul>
            </div>
            <div class="header__member">
                <a href="#">๋กœ๊ทธ์ธ</a>
            </div>
        </div>
    </section>
</body>

CSS

css ์†Œ์Šค์ž…๋‹ˆ๋‹ค. figma๋กœ ์„ค์ •ํ•ด๋†“์€ ๋ ˆ์ด์•„์›ƒ์ด๋‚˜ zaplin์„ ๋ณด๋ฉฐ ์ ์ ˆํ•˜๊ฒŒ css๋ฅผ ์„ค์ •ํ•ด์ค๋‹ˆ๋‹ค.

/* fonts */
@import url('https://webfontworld.github.io/NexonLv1Gothic/NexonLv1Gothic.css');
.nexon {
    font-family: 'NexonLv1Gothic';
    font-weight: 400;
}
/* reset */
* {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    color: #000;
}
img {
    width: 100%;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}
em, i, address {
    font-style: normal;
}
/* common */
.container {
    width: 1160px;
    padding: 0 20px;
    margin: 0 auto;
    min-width: 1160px;
}
.section {
    padding: 120px 0;
}
.section > h2 {
    font-size: 50px;
    line-height: 1;
    text-align: center;
    margin-bottom: 20px;
}
.section > p {
    font-size: 22px;
    font-weight: 300;
    color: #666;
    text-align: center;
    margin-bottom: 70px;
}
/* headerType01 */
.header__inner {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
    border-bottom: 1px solid #ccc;
}
.header__logo {
    width: 20%;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}
.header__logo em {
    font-size: 18px;
    font-weight: 400;
}
.header__menu {
    width: 60%;
    text-align: center;
}
.header__menu li {
    display: inline;
}
.header__menu li a {
    padding: 13px 30px;
    margin: 0 5px;
    transition: background-color 0.3s;
}
.header__menu li a:hover{
    background-color: #f1f1f1;
    border-radius: 5px;
}


.header__member {
    width: 20%;
    text-align: right;

}

.header__member a {
    font-size: 16px;
    border: 1px solid #000;
    padding: 10px 30px;
    border-radius: 50px;
    transition: background-color 0.3s;
}
.header__member a:hover {
    background-color: #000;
    color: #fff;
}
728x90
๋ฐ˜์‘ํ˜•

๋Œ“๊ธ€