-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.css
62 lines (54 loc) · 1.06 KB
/
page.css
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
* {
margin: 0;
padding: 0;
}
.box {
text-align: center;
width: 390px;
height: 470px;
margin: 100px auto;
background: rgba(102, 222, 235, 0.5);
border-radius: 15px;
}
.box img {
width: 100px;
height: 100px;
display: block;
margin-left: auto;
margin-right: auto;
}
.box h1 {
height: 77px;
margin-top: 35px;
text-align: center;
font-size: 30px;
}
.box input {
width: 356px;
height: 50px;
border:none;
outline: none;
border-bottom: 2px solid black;
padding-left: 15px;
margin-bottom: 14px;
box-sizing: border-box;
background-color:rgba(255,255,255,0);
}
.box button {
width: 356px;
height: 50px;
background-color: skyblue;
color: #fff;
border: none;
}
input:focus {
width: 356px;
height: 50px;
border:none;
outline: none;
border-bottom: 2px solid green;
padding-left: 15px;
margin-bottom: 14px;
box-sizing: border-box;
background-color:rgba(255,255,255,0);
}