-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSearch.html
115 lines (96 loc) · 3.15 KB
/
Search.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<html>
<head>
<title>Wormbook</title>
<meta name="description" content="Not banana!">
</meta>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<style>
body {
background-color: #1B1B1B;
color: white;
}
header {
border-bottom: rgba(153, 153, 153, 0.5) 1px solid;
padding-bottom: 10px;
}
.search {
background-color: #1B1B1B;
/* color: white;
border-radius: 6px;
border: 1px solid white; */
}
.active-btn {
border-bottom : #6FA866 1px solid;
cursor:pointer;
}
.inactive-btn {
color: #3D3D3D;
cursor:pointer;
}
.search-input {
background-color:#1B1B1B;
width:15rem;
color:white;
border: #6D6D6D 1px solid;
}
.search-btn {
background-color:#8CD77F;
width:5rem;
}
.search-icon {
color:white;
}
</style>
<body>
<header class="d-flex justify-content-between align-items-center mx-4 ">
<div class="logo">
<img src="images/odds-read-logo.png" width="100px" />
</div>
<div class="menu d-flex">
<div>
<input class="search" placeholder="Search" />
</div>
<div>
<img src="images/cloud.png" width="50px" />
</div>
<div>
<img src="images/book.png" width="40px" />
</div>
<div>
<img src="images/noti.png" width="40px" />
</div>
<div>
<img src="images/profile.png" width="40px" />
</div>
</div>
</header>
<content>
<!-- [START] Content -->
<div class="d-flex flex-column mt-5">
<div class="d-flex justify-content-center">
<div class="d-flex align-items-end justify-content-between col-6 col-md-6 col-xl-4">
<p class="active-btn">ISBN Search</p>
<p class="inactive-btn">Add ISBN</p>
<p class="inactive-btn">Show Detail</p>
</div>
</div>
<div class="d-flex justify-content-center mt-5">
<img src="images/isbn-search.png" width="120px" height="120px">
</div>
<div class="d-flex justify-content-center mt-5">
<p>Use our search engine to find book information</p>
</div>
<div class="d-flex justify-content-center">
<input class="form-control py-2 search-input" type="search" placeholder="Search ISBN...">
<button class="btn ml-2 search-btn" type="button">
<i class="fa fa-search search-icon"></i>
</button>
</div>
</div>
<!-- [END] Content -->
</content>
</body>
</html>