forked from IIITM-Jay/Property-management-System
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
146 lines (130 loc) · 2.08 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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="/css/style.css">
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
<title>Property Managemant System</title>
</head>
<body>
<header>
<div class="main">
</div>
<div class="title">
<h1>Your Search for Property Begins and Ends here....
</h1>
</div>
<div class="search-box">
<form action="http://127.0.0.1:8000/front">
<input class="search-txt" type="text" name="" placeholder="search">
<a class="search-btn" href="login.html">
<i class ="fas fa-search"></i>
</a>
</from>
</div>
</header>
<style>
*{
margin: 0;
padding: 0;
font-family: Century Gothic;
}
header
{
background-image:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(7.jpg);
height:100vh;
background-size:cover;
background-position:center;
}
.title{
position:absolute;
text-align:center;
top:50%;
left:50%;
transform:translate(-50%,-50%);
}
.title h1{
color: #fefe10;
font-size:40px;
font-weight: bold;
}
ul{
float:right;
list-style-type:none;
margin-top:25px;
}
ul li
{
display:inline-block;
}
ul li a {
text-decoration:none;
color:#fff;
padding:5px 20px;
border: 1px solid transparent;
transition:0.6s ease
}
ul li a:hover{
background-color:powderblue;
color:#000;
}
.main{
max-width: 1200px;
margin:auto;
}
ul li.active a{
background-color:powderblue;
color:#000;
}
.search-box{
position:absolute;
top:65%;
left:50%;
transform:translate(-50%,-50%);
background:powderblue;
height:40px;
border-radius:40px;
padding:10px;
justify-content:center;
align-items:center;
}
.search-box:hover > .search-txt{
width:240px;
padding:0 6px;
}
.search-box:hover > .search-btn{
background:#000;
}
.search-btn{
color:#e84118;
float:right;
width:40px;
height:40px;
border-radius:50%;
background:#2f3640;
display:flex;
justify-content:center;
align-items:center;
transition:0.4s;
}
.h1 {
height: 100%;
width: 100%;
align-items: center;
justify-content: center;
}
.search-txt
{
border:none;
background:none;
outline:none;
float:left;
padding:0;
color:black;
font-size:16px;
transition:0.4s;
line-height:40px;
width:0px;
}
</style>
</body>
</html>