-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
126 lines (107 loc) · 2.33 KB
/
style.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
125
126
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body{
background-color: #209dd6;
overflow: hidden;
}
.container{
max-width: 440px;
padding: 0 20px;
margin: 140px auto;
}
.whole{
width: 100%;
background: #fff;
border-radius: 5px;
box-shadow: 8px 5px 15px rgba(0, 0, 0, 0.2);
}
.whole .title{
background: #209dd6;
line-height: 80px;
font-size: 35px;
font-weight: 700;
text-align: center;
border-radius: 5px 5px 0 0 ;
color: #fff;
padding: 0;
cursor:default;
}
.title span{
filter: drop-shadow(5px 3px 2px rgba(0, 0, 0, 0.25));
}
.whole form{
padding: 30px 20px 25px 25px;
}
.whole form .row{
height: 45px;
margin-bottom: 15px ;
position: relative;
}
.whole form .row input{
height: 100%;
width: 100%;
/* background-color: aqua; */
padding: 0 10px 0 50px;
border-radius: 5px;
border: 1px solid lightgrey;
outline: none;
transition: all 0.3s ease;
}
form .row input:focus{
border-color: #209dd6;
box-shadow: inset 0 0 2px 2px rgb(26, 188, 156, 0.25);
}
.whole form .row i{
position: absolute;
width: 40px;
height: 100%;
background-color: #209dd6;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
border-radius: 5px 0 0 5px;
}
.whole form .botton input{
border: none;
padding: 0;
background: #209dd6;
color: #fff;
font-size: 18px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease-in;
}
.whole form .botton input:hover{
background-color: #209dd6;
border: 2px solid #209dd6;
}
.whole form .pass{
margin: -8px 0 20px 0;
font-size: 15px;
}
.whole form .pass a{
text-decoration: none;
color: #209dd6;
}
.whole form .pass:hover{
text-decoration: underline;
}
.whole form .signup_link{
text-align: center;
margin-top: 25px;
font-size: 15px;
}
.whole form .signup_link a{
text-decoration: none;
color: #209dd6;
}
.whole form .signup_link a:hover{
text-decoration: underline;
}