-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
117 lines (96 loc) · 1.85 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
*{
/* padding: 0px; */
font-family: sans-serif;
/* margin: 0px; */
/* box-sizing: border-box; */
}
body{
background-image: url("bg.jpg");
/* background-color: aqua; */
background-size: cover;
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
}
.box{
display: flex;
justify-content: center;
align-items: center;
min-height: 90vh;
}
.container{
width: 350px;
display: flex;
flex-direction: column;
padding: 0 15px 0 15px;
}
span{
color: #fff;
font-size: small;
display: flex;
justify-content: center;
padding: 10px 0 10px 0;
}
header{
color: #fff;
font-size: 30px;
display: flex;
justify-content: center;
padding: 10px 0 10px 0;
}
.input{
height: 45px;
width: 87%;
border: none;
outline: none;
border-radius: 30px;
color: #fff;
padding: 0 0 0 42px;
background: rgba(255, 255, 255, 0.1);
/* background: none; */
}
.input-field{
display: flex;
flex-direction: column;
}
i{
position: relative;
top: -31px;
left: 17px;
color: #fff;
}
::-webkit-input-placeholder{
color: #fff;
}
.submit{
border: none;
border-radius: 30px;
font-size: 15px;
height: 45px;
outline: none;
width: 100%;
background: rgba(255, 255, 255, .7);
cursor: pointer;
transition: .5s;
}
.submit:hover{
box-shadow: 1px 5px 7px 1px rgba(0, 0, 0, .2);
}
.bottom{
display: flex;
flex-direction: row;
justify-content: space-between;
font-size: small;
color: #fff;
margin-top: 10px;
}
.left{
display: flex;
}
label a{
color: white;
text-decoration: none;
}
label a:hover{
text-decoration: underline;
}