-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcu.css
More file actions
70 lines (61 loc) · 1.2 KB
/
Copy pathcu.css
File metadata and controls
70 lines (61 loc) · 1.2 KB
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
*{
margin: 0;
padding: 0;
}
body{
background: url("image/projectbg.jpg");
background-size: cover;
height: auto;
font-family: 'Roboto';
}
.container{
max-width: 800px;
height: 600px;
background: #fff;
margin: 50px auto;
box-shadow: 0 0 20px rgba(72,98,85, 0.6);
box-sizing: border-box;
padding: 40px;
}
p{
text-align: center;
letter-spacing: 1px;
font-size: 45px;
margin-bottom: 20px;
color: #486255;
}
.input,
.msg .area{
width: 100%;
padding: 20px;
box-sizing: border-box;
margin-bottom: 25px;
border: 2px solid #e9eaea;
font-size: 14px;
border-radius: 5px;
outline: none;
transform: all 0.5s ease;
}
.login .input{
width: 48%;
float: left;
margin-right: 4%;
}
.login .input:last-child{
margin-right: 0;
}
.msg .area{
height: 200px;
}
.btn{
width: 250px;
background: #486255;
height: 50px;
line-height: 50px;
text-align: center;
border-radius: 5px;
margin: 0 auto;
color: #fff;
text-transform: uppercase;
cursor: pointer;
}