<header id="webtoon_header">
<div class="webtoon_header_top">
<div class="webtoon_container">
<div class="webtoon_header_left">
<h2><a href="#">만화</a></h2>
<em class="bar"></em>
<h3><a href="#">웹소설</a></h3>
<div class="webtoon_header_input_wrap">
<input type="text">
<button type="button" class="btn_search"></button>
</div>
</div>
<div class="webtoon_header_right">
<a href="#" class="btn_login">로그인</a>
<button type="button" class="btn_menu"></button>
</div>
</div>
</div>
<div class="webtoon_header_nav">
<div class="webtoon_container">
<nav>
<ul>
<li><a href="webtoon.html">홈</a></li>
<li class="on"><a href="webtoon_detail.html">웹툰</a></li>
<li><a href="#">베스트 도전</a></li>
<li><a href="#">도전만화</a></li>
</ul>
</nav>
<div class="webtoon_header_link_wrap">
<i class="icon_ex_mark"></i>
<a href="#">온천마을 판타지 로맨스 <모락모락 왕세자님></a>
</div>
</div>
</div>
</div>
</header>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
ol, ul {
list-style: none;
}
a {
text-decoration: none;
color: #000000;
}
img {
vertical-align: middle;
}
button {
border: none;
}
input, textarea {
outline: none;
}
.clearfix {
clear: both;
}
/* webtoon - header */
.webtoon_container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
width: 960px;
margin: 0 auto;
}
#webtoon_header {
background-color: #fff;
}
#webtoon_header .webtoon_header_top {
background-color: #fff;
border-bottom: solid 1px #f2f2f2;
padding: 10px 0 8px 0;
}
#webtoon_header .webtoon_header_top .webtoon_header_left {
display: flex;
flex-wrap: wrap;
align-items: center;
width: 550px;
}
#webtoon_header .webtoon_header_top .webtoon_header_left .bar {
width: 1px;
height: 13px;
background-color: #d2d2d2;
margin-left: 8px;
margin-right: 10px;
}
#webtoon_header .webtoon_header_top .webtoon_header_left h2 {
font-size: 20px;
}
#webtoon_header .webtoon_header_top .webtoon_header_left h3 {
margin-right: 30px;
font-size: 16px;
}
#webtoon_header .webtoon_header_top .webtoon_header_left h3 a {
color: gray;
}
#webtoon_header .webtoon_header_top .webtoon_header_input_wrap {
display: flex;
flex-wrap: wrap;
align-items: center;
width: 315px;
height: 37px;
border: solid 1px #e5e5e5;
}
#webtoon_header .webtoon_header_top .webtoon_header_input_wrap input {
width: calc(100% - 35px);
height: 100%;
border: none;
/*background-color: yellow;*/
padding: 0 10px;
}
#webtoon_header .webtoon_header_top .webtoon_header_input_wrap input:focus {
outline: none;
}
#webtoon_header .webtoon_header_top .webtoon_header_input_wrap .btn_search {
width: 35px;
height: 100%;
background-color: #00d564;
}
#webtoon_header .webtoon_header_top .webtoon_header_right {
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
align-items: center;
}
#webtoon_header .webtoon_header_top .webtoon_header_right .btn_login {
border: solid 1px #000;
padding: 2px 4px;
margin-right: 15px;
font-size: 12px;
}
#webtoon_header .webtoon_header_top .webtoon_header_right .btn_menu {
width: 16px;
height: 16px;
background-color: blue;
}
#webtoon_header .webtoon_header_nav {
border-bottom: solid 1px #e5e5e5;
}
#webtoon_header .webtoon_header_nav nav ul {
display: flex;
flex-wrap: wrap;
align-items: center;
}
#webtoon_header .webtoon_header_nav nav ul li {
width: auto;
height: 40px;
}
#webtoon_header .webtoon_header_nav nav ul li.on a {
background-color: #00d564;
color: #fff;
}
#webtoon_header .webtoon_header_nav nav ul li a {
display: block;
width: 100%;
height: 100%;
padding: 0 15px;
line-height: 40px;
font-size: 14px;
}
#webtoon_header .webtoon_header_nav .webtoon_header_link_wrap {
}
#webtoon_header .webtoon_header_nav .webtoon_header_link_wrap .icon_ex_mark {
display: inline-block;
width: 16px;
height: 14px;
background-color: #000;
vertical-align: middle;
}
#webtoon_header .webtoon_header_nav .webtoon_header_link_wrap a {
vertical-align: middle;
font-size: 12px;
color: #606060;
}
#webtoon_header .webtoon_header_nav .webtoon_header_link_wrap a:hover {
text-decoration: underline;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.