login.css
1.5 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
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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
background-image: url(bg.png);
background-repeat: no-repeat;
background-size: 100% 100%;
background-attachment: fixed;
}
.box{
background-color: #fff;
width: 25%;
margin: 6%;
border-radius: 4px;
}
.box .top{
padding: 60px;
}
.box .top h3{
/*border-bottom: 3px solid #2864fa;*/
padding: 6px 0;
/*width: 17%;*/
font-size: 25px;
letter-spacing: 2px;
}
.summary{
margin: 20px 0;
}
.summary h4{
color: #2864FA;
}
.summary p{
font-size: 12px;
color: #A9A9A9;
font-variant:small-caps;
letter-spacing: -1px;
line-height: 11px;
}
.form p{
border-bottom: 2px solid #eee;
line-height: 88px;
height: 65px;
margin-top: 18px;
}
.form p span{
color: #2864FA;
font-size: 14px;
font-weight: 600;
}
.form p input{
width: 60%;
padding: 8px;
border: 0;
outline: none;
}
.form .check{
border-bottom: 0;
height: 35px;
line-height: 35px;
}
.btn{
width: 100%;
padding: 12px;
border: #2864FA;
background-color: #2864FA;
outline: #2864FA;
color: #fff;
font-size: 20px;
font-weight: 600;
letter-spacing: 4px;
}
.form .check {
justify-content: flex-end;
display: flex;
align-items: center;
}
.form .check input{
width: 22px;
height: 22px;
margin-left: 12px;
margin-right: 8px;
}
.tips{
font-size:xx-small;
color: #a9a9a9;
text-align: center;
line-height: 28px;
/* letter-spacing: -1px; */
position: fixed;
bottom: 30px;
width: 100%;
}