forked from IT-xzy/Task
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask4.html
163 lines (128 loc) · 3.34 KB
/
task4.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Task4</title>
<style>
body {
margin: 0;
background-color: #EFF0F4;
}
.head {
height: 55px;
color: white;
background-color: #68CDD5;
text-align: center;
font-size: 20px;
}
.head a {
font-family: "Calibri Light";
color: #fff;
text-decoration: none;
}
head span{
vertical-align: middle;
}
.left {
float: left;
margin-left: 20px;
margin-top: 0.6rem;
}
.right {
float: right;
margin-right: 20px ;
margin-top: 0.6rem;
}
span{
display: inline-block;
padding-top: 10px;
}
.text1 img {
/*float: left;*/
/*padding-top: 1rem;*/
/*clear: left;*/
margin-bottom: -1.3rem;
/*vertical-align: middle;*/
}
.text2 img{
margin-bottom: -1.3rem;
}
/*.text2 img{*/
/*float: left;*/
/*padding-top: 0.5rem;*/
.text1 ,.text2{
/*font-size: 0;*/
background-color: white;
}
.text1 {
/*!*margin-top: 10px;*!*/
/*!*margin-bottom: 10px;*!*/
/*!*padding-top: 10px;*!*/
/*!*padding-bottom: 10px;*!*/
/*border-top-width: 10px;*/
/*border-botton-width: 10px*/
}
/*.text2 {*/
/*background-color: white;*/
/*!*border-top: 5px solid #EFF0F4;*!*/
/*!*border-bottom: 5px solid #EFF0F4;*!*/
/*}*/
input {
display: inline-block;
width: 70%;
padding-left: 5px;
border-bottom: none;
border-top:none;
border-right: none;
border-left:2px solid #EFF0F4;
outline: none;
margin-top: 20px;
margin-bottom: 20px;
}
button {
width: 100%;
height: 55px;
background-color: #68CDD5;
color: white;
font-size: 25px;
margin-top: 35px;
border: none;
}
.forget{
float: right;
color: #68CDD5;
text-align: right;
margin-right: 15px;
}
.bgc{
margin: 10px 0;
line-height: 35px;
}
</style>
<body>
<div class="head">
<div class="left">
<a href="">注册</a>
</div>
<strong>
<span>登录
</span>
</strong>
<div class="right">
<a href="img">关闭</a>
</div>
</div>
<div class="text">
<div class="text1 bgc">
<img src=igm/page3.png alt="photo">
<input type=text placeholder="请输入电话号码">
</div>
<div class="text2 bgc">
<img src=igm/page2.png alt="photo">
<input type=password placeholder="请输入密码">
</div>
<button>登录</button>
<a class="forget">忘记密码?</a>
</div>
</body>
</html>