2021.08. 26 youtube css(2) ๐ŸŒด

hae.logยท2021๋…„ 8์›” 27์ผ
0

index.htmlโœ

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>์œ ํŠœ๋ธŒ ํŠœํ† ๋ฆฌ์–ผ</title>
	<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>


	<div id="wrapper">
		
		<nav id="youtube-top-nav">

			<div class="youtube-top-wrap flex-align-between">
				<div class="nav-left flex-align-start">
					<button type="button" class="btn-menu"></button>
					<h1>
						<a href="#">
							<img src="https://via.placeholder.com/90x20">
						</a>
					</h1>
				</div>

				<div class="nav-center flex-align-start">
					<div class="search-wrap flex-align-start">
						<input type="text" placeholder="๊ฒ€์ƒ‰">
						<button type="button" class="btn-search"></button>
					</div>
					<button class="btn-voice"></button>
				</div>

				<div class="nav-right flex-align-end">
					<button type="button" class="btn-menu btn-menu-1"></button>
					<button type="button" class="btn-menu btn-menu-2"></button>
					<a href="#" class="btn-login">๋กœ๊ทธ์ธ</a>
				</div>
			</div>
			
		</nav>












		<nav id="youtube-left-nav">
			<div id="youtube-left-content">

			</div>
		</nav>

		<main id="youtube-main" role="main">
			
		</main>


	</div>




</body>
</html>

style.cssโœ

/* ์ƒ๋‹จ ๋ฉ”๋‰ด */
#youtube-top-nav {
	position: fixed;

	width: 100%;
	height: 56px;
	background-color: #212121;

	padding: 0 16px;

	z-index: 99999;
}


#youtube-top-nav .nav-left {
	height: 56px;
}

#youtube-top-nav .nav-left .btn-menu {
	width: 24px;
	height: 24px;
	background-color: yellow;
}

#youtube-top-nav .nav-left h1 {
	margin-left: 16px;
}

#youtube-top-nav .nav-left h1 a {

}

#youtube-top-nav .nav-left h1 img {
	width: 90px;
	height: 20px;
}

#youtube-top-nav .nav-right {
	height: 56px;
}

#youtube-top-nav .nav-right .btn-menu {
	width: 40px;
	height: 40px;
	margin-right: 16px;
}

#youtube-top-nav .nav-right .btn-menu.btn-menu-1 {
	background-color: grey;
}

#youtube-top-nav .nav-right .btn-menu.btn-menu-2 {
	background-color: yellow;
}

#youtube-top-nav .nav-right .btn-login {
	display: inline-block;
	border: solid 1px #3ea6ff;
	padding: 10px 12px 8px;
	font-size: 14px;

	color: #3ea6ff;
}

#youtube-top-nav .nav-center {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

#youtube-top-nav .nav-center .search-wrap {
	width: 640px;
	height: 30px;
}

#youtube-top-nav .nav-center .search-wrap input {
	width: calc(100% - 65px);
	height: 30px;
	border: solid 1px grey;
	background-color: #212121;

	color: #ffffff;
	padding: 2px 6px;

	font-size: 14px;
}

#youtube-top-nav .nav-center .search-wrap .btn-search {
	width: 65px;
	height: 30px;
	border: solid 1px grey;
	background-color: grey;
}

#youtube-top-nav .nav-center .btn-voice {
	width: 24px;
	height: 24px;
	background-color: blue;

	margin-left: 16px;
}

๊ฒฐ๊ณผ๋ฌผ ๐Ÿš€

0๊ฐœ์˜ ๋Œ“๊ธ€