-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAdvanced search.html
More file actions
104 lines (90 loc) · 2.61 KB
/
Advanced search.html
File metadata and controls
104 lines (90 loc) · 2.61 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Treehouse Profile</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css" media="screen">
@import url(http://fonts.googleapis.com/css?family=Varela+Round);
@import url(http://necolas.github.io/normalize.css/3.0.2/normalize.css);
body {
background: #ECEEEF;
text-align: center;
margin: 100px auto;
max-width: 462px;
padding: 0 40px;
font: 18px normal 'Varela Round', Helvetica, serif;
color: #777B7E;
}
img {
width: 100%;
}
#searchIcon, #avatar {
width: 50%;
border-radius: 50%;
margin: 0 25% 0 25%;
}
input {
font-family: 'Varela Round', Helvetica, serif;
font-size: 18px;
padding: 31px 0;
margin: 10px 0;
text-align: center;
width: 360px;
border-radius: 4px;
border: 1px solid #D5DDE4;
color: #2C3238;
}
#username {
margin: 20px 0 0;
}
.button {
border-color: #5FB6E1;
background: #5FB6E1;
color: #fff;
}
#error {
width: 100%;
padding: 22px 0;
background: #FFE6B2;
color: #C5A14E;
position: absolute;
left: 0;
top: 0;
}
#profile {
background: #fff;
border-radius: 4px;
border: 1px solid #D5DDE4;
padding: 40px 0 0;
margin: -40px 0 0;
}
ul {
list-style-type: none;
padding: 0;
margin: 40px 0 0;
}
li {
display: inline-block;
width: 100%;
padding: 22px 0;
margin: 0;
border-top: 1px solid #D5DDE4;
}
a, a:visited {
color: #5FB6E1;
text-decoration: none;
}
span {
color: #2C3238;
}
</style>
</head>
<body><img src="http://i.imgur.com/VKKm0pn.png" alt="Magnifying Glass" id="searchIcon">
<form action="/" method="POST">
<input type="text" placeholder="Enter text" id="username" name="username">
<input type="submit" value="search" class="button">
</form></body>
</html>