Created
December 3, 2021 07:20
-
-
Save x3r0s/af07abedc367b821e101f234e1b6fdaa to your computer and use it in GitHub Desktop.
Search bar with search icon
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Document</title> | |
<link rel="stylesheet" href="style.css" /> | |
</head> | |
<body> | |
<h1>Kakao Image Search</h1> | |
<div id="search-container"> | |
<input id="search" type="text" id="search" /> | |
<button id="search-confirm">Search</button> | |
</div> | |
<ul id="list"> | |
<!-- 자바스크립트로 동적으로 작동함 --> | |
</ul> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
background-color: #202124; | |
color: #6A6D72; | |
} | |
#search-container { | |
width: 100%; | |
display: flex; | |
} | |
#search-container #search { | |
padding: 10px 200px; | |
border-top-left-radius: 20px; | |
border-bottom-left-radius: 20px; | |
border: 0; | |
outline: none; | |
border: none; | |
background-color: #303134; | |
color: #fff; | |
} | |
#search-container #search-confirm { | |
border-top-right-radius: 20px; | |
border-bottom-right-radius: 20px; | |
outline: none; | |
border: none; | |
background-color: #303134; | |
color: #fff; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment