forked from FalconLK/facoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·48 lines (45 loc) · 1.07 KB
/
index.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
<!DOCTYPE html>
<!DOCTYPE html>
<html lang="en">
<head>
<title>GitSearch - A source code search engine for GitHub</title>
<!-- <link rel="stylesheet" type="text/css" href="css/style.css"> -->
<style type="text/css">
html, body {
height: 100%;
}
.main {
height: 100%;
width: 100%;
display: table;
}
.wrapper {
display: table-cell;
height: 100%;
vertical-align: middle;
}
input:focus{
outline: 0
}
#top {
position: fixed;
top: 10;
left: 0;
z-index: 999;
width: 100%;
height: 23px;
}
</style>
</head>
<body style="text-align: center">
<div class="main"><div class="wrapper">
<div style="margin-left: auto; margin-right: auto">
<img src="images/gitsearch.png">
<form>
<input type="text" name="q" style="padding:17px; width: 50%; height: 35px; color:#858c91; height:24px; font-size: 25px" />
<input type="submit" value="Search" style="background-color: #3f4b55; padding:17px 30px 17px; font-weight: 600; font-size: 25px; color: white; border: none"/>
</form>
</div>
</div></div>
</body>
</html>