-
Notifications
You must be signed in to change notification settings - Fork 3
/
driver_login.css
124 lines (124 loc) · 2.47 KB
/
driver_login.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
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
@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins',sans-serif;
/*background-color: #E2FBFB;*/
}
body,html{
background-image: url(images/driverbg3.png);
height: 100%;
margin: 0;
background-repeat: no-repeat;
background-size: 100vw 100vh;
background-position: center;
}
section{
position: relative;
width: 100%;
height: 100vh;
display: flex;
}
section .imgBx{
position: relative;
width: 50%;
height: 100%;
}
section .imgBx:before{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(225deg,#e91e63,#03a9f4);
z-index: 1;
mix-blend-mode: screen;
}
section .imgBx img{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
section .contentBx{
display: flex;
justify-content: center;
align-items: center;
width: 50%;
height: 100%;
}
section .contentBx .formBx h2{
color: #607d8b;
font-weight: 600;
font-size: 1.5em;
text-transform: uppercase;
margin-bottom: 20px;
border-bottom: 4px solid #ff4584;
display: inline-block;
letter-spacing: 1px;
}
section .contentBx .formBx .inputBx{
margin-bottom: 20px;
}
section .contentBx .formBx .inputBx span{
font-size: 16px;
margin-bottom: 5px;
display: inline-block;
color: #607d8b;
font-weight: 300;
font-size: 16px;
letter-spacing: 1px;
}
section .contentBx .formBx .inputBx input{
width: 100%;
padding: 10px 20px;
outline: none;
font-weight: 400;
border: 1px solid #607d8b;
font-size: 16px;
letter-spacing: 1px;
color: #607d8b;
background: transparent;
border-radius: 30px;
}
/*section .contentBx .formBx .inputBx input[type="submit"]{
background: #ff4584;
color: #fff;
outline: none;
border: none;
font-weight: 500;
cursor: pointer;
}
section .contentBx .formBx .inputBx input[type="submit"]:hover{
background: #f53677;
}*/
#inputBox{
background: #ff4584;
color: #fff;
outline: none;
border: none;
font-weight: 500;
cursor: pointer;
padding: 5px;
text-align: center;
border-radius: 20px;
}
#inputBox:hover{
background: #f53677;
}
section .contentBx .formBx .remember{
margin-bottom: 10px;
color: #607d8b;
font-weight: 400;
font-size: 14px;
}
section .contentBx .formBx .inputBx p{
color: #607d8b;
}
section .contentBx .formBx .inputBx p #{
color: #ff4584;
}