-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
100 lines (95 loc) · 1.93 KB
/
style.css
File metadata and controls
100 lines (95 loc) · 1.93 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
96
97
98
99
100
* {
margin: 0;
padding: 0;
}
.bg_box {
width: 100%;
height: 100vh;
background: url(wzry.jpg) no-repeat top;
display: flex;
align-items: center;
justify-content: center;
}
.login_content {
position: relative;
/* top: 300px;
right: 50px; */
width: 800px;
height: 360px;
background-color: rgba(173, 98, 94, 0.3);
border-radius: 30px;
padding: 30px;
}
.banner_box {
display: inline-block;
width: 500px;
height: 100%;
background: url(images/wzry_.jpg) center no-repeat;
background-size: cover;
border-radius: 20px 0 0 20px;
}
.login_box {
width: 330px;
height: 100%;
/* background-color: skyblue; */
position: absolute;
top: 0;
right: 0;
border-radius: 0 20px 20px 0;
display: flex;
flex-direction: column;
align-items: center;
}
.login_box b {
font-size: 30px;
margin: 60px 0;
color:#fff;
}
.login_box input {
margin-bottom: 20px;
width: 200px;
height: 36px;
padding: 0 20px;
border-radius: 30px;
border: 0;
outline: 0 ;
}
.login_btn {
margin-top: 20px;
display: inline-block;
width: 200px;
height: 40px;
background-color: #66b1ff;
border-radius: 40px;
text-align: center;
line-height: 40px;
color: #fff;
font-size: 18px;
}
@media screen and (max-width: 800px) {
.login_content {
margin: 0 30px;
}
.banner_box {
border-radius: 20px;
}
.login_box {
background-color: rgba(173, 98, 94, 0.3);
}
}
@media screen and (max-width: 600px) {
.bg_box {
background:url(images/wzry.jpg) no-repeat center;
}
.login_content {
background-color: rgba(173, 98, 94, 0);
}
.banner_box {
display: none;
}
.login_box {
position: initial;
margin: -20px auto;
background-color: rgba(173, 98, 94, 0);
}
}