-
Notifications
You must be signed in to change notification settings - Fork 2
/
wireframe.html
179 lines (129 loc) · 3.95 KB
/
wireframe.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="autocodeai-form.css">
<style>
.main {
position: relative;
height: 118vh;
min-width: 647px;
}
.form-group .logo {
border-bottom: 1px solid #ddd;
padding-bottom: 14px;
margin-bottom: 21px;
}
.form-group .logo img {
width: 125px;
height: 41px;
}
.footer{
padding: 0 32px;
color: #fff;
margin: 0 auto;
}
textarea#comment {
height: 70px;
}
input.form-control,textarea.form-control,select.form-control {
position: relative;
bottom: 5px;
left: 13px;
}
.col-sm-6 input.form-control,.col-sm-6 textarea.form-control{
width: 50%;
}
label{
float:left;
}
.form-group,.col-sm-6,.col-sm-3 {
margin: 14px 0;
}
footer nav.navbar.navbar-expand-sm.bg-secondary.navbar-dark {
display: none;
}
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
text-align: center;
background-color: #575252;
z-index: 100;
color: #fff;
}
.col-sm-6 input.form-control, .col-sm-6 textarea.form-control {
width: 50% !important;
}
.table td, .table th{
padding:0;
}
span.fa.fa-search {
position: relative;
top: -46px;
right: -9px;
border-left: 1px solid #ccc;
padding: 10px;
color: #9e9595;
float: right;
}
input[type=search]{
-webkit-box-sizing: border-box;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
font-size: 16px;
outline: 0;
padding: 12px 33px 12px 10px;
-webkit-transition: width 0.4s ease-in-out;
transition: width 0.4s ease-in-out;
-webkit-box-shadow: 3px 3px 2px #ccc;
box-shadow: 3px 3px 2px #ccc;
}
p{
border: 1px solid #9e9696;
text-align: center;
}</style></head>
<body>
<header>
</header>
<main class="main">
<form>
<div style="position:absolute;top:96px;left:112px;">
<label for="comment" style="width:320px;height:64px">Label</label>
</div>
<div style="position:absolute;top:160px;left:112px;">
<input type="text" placeholder="enter the text" class="form-control" id="usr" name="username" style="width:320px;height:80px">
</div>
<div style="position:absolute;top:272px;left:128px;">
<label for="comment" style="width:176px;height:64px">Label</label>
</div>
<div style="position:absolute;top:336px;left:112px;">
<input type="text" placeholder="enter the text" class="form-control" id="usr" name="username" style="width:320px;height:80px">
</div>
<div style="position:absolute;top:432px;left:112px;">
<label for="comment" style="width:304px;height:80px">Label</label>
</div>
<div style="position:absolute;top:512px;left:112px;">
<input type="text" placeholder="enter the text" class="form-control" id="usr" name="username" style="width:352px;height:80px">
</div>
<div style="position:absolute;top:608px;left:80px;" >
<button type="submit" class="btn btn-primary" style="width:400px;height:80px">Register</button>
</div>
</form>
</main>
<footer>
<nav class="navbar navbar-expand-sm bg-secondary navbar-dark">
<div class="footer"> © 2018</div>
</ul>
</nav>
</footer>
</body>
</html>