-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
131 lines (127 loc) · 2.55 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
127
128
129
130
@font-face {
font-family: "Poppins";
src: url('/assets/Poppins-Light.ttf');
}
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
height: 100vh;
width: auto;
display: grid;
place-items: center;
background: url(/assets/pexels-james-wheeler-417074.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
font-family: 'Poppins';
color: white;
overflow: hidden;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
height: 550px;
width:auto;
padding: 5%;
background: rgba( 255, 255, 255, 0.1 );
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.35);
backdrop-filter: blur( 5px );
-webkit-backdrop-filter: blur( 5px );
border-radius: 10px;
border: 1px solid rgba( 255, 255, 255, 0.18 );
}
form{
font-size: 1.35rem;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
#Login , #Password{
margin: 10px;
display: flex;
flex-direction: column;
}
::placeholder{
color: rgba(255, 255, 255, 0.5);
}
#Login label, #Password label{
margin-left: 10px;
color: rgb(255, 255, 255);
}
.error, .error_p{
margin-left: 10px;
font-size: 0.9rem;
color: rgb(255, 255, 255,0.6);
}
.container img{
height: 100px;
width: 100px;
border-radius: 50%;
}
#Submit{
margin: 10px;
width: 225px;
padding: 15px;
border-radius: 25px;
font-family: 'Poppins';
background: rgb(255, 255, 255,0.0);
color: aliceblue;
border: 0.002rem solid aliceblue;
transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#Submit:hover{
background: aliceblue;
color: black;
}
#Submit:active{
position: relative;
top: 2px;
color: black;
background: aliceblue;
}
#email , #password{
margin: 10px;
width: 250px;
padding: 12px;
background: rgb(255, 255, 255,0.3);
color: aliceblue;
font-family: 'Poppins';
font-size: 1rem;
border: 0.002rem solid white;
}
form #email:active{
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.35);
}
.logwith{
height: 50px;
width: 150px;
display: flex;
justify-content: space-around;
align-items: center;
}
.logwith i{
transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.logwith i:hover{
color: rgba(0, 0, 0, 0.44);
}
#error_l , #error_p{
display: none;
font-size: 0.90rem;
color: rgb(211, 0, 0);
}
@media only screen and (max-width:700px) {
body {
background-image: url('assests/pexels-james-wheeler-417074.jpg');
background-position: center bottom;
background-attachment: fixed;
background-size: cover;
background-repeat: no-repeat;
}
}