-
Notifications
You must be signed in to change notification settings - Fork 1
/
create.css
134 lines (133 loc) · 2.61 KB
/
create.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
131
132
133
134
body{
margin: 0;
background: rgb(255, 255, 255);
text-align: center;
margin-top: 17px;
}
.img{
width: 190px ;
animation: float 5s ease-in-out infinite;
}
@keyframes float {
0% {
/*box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
transform: translatey(0px);
}
50% {
/*box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);*/
transform: translatey(-20px);
}
100% {
/*box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
transform: translatey(0px);
}
}
.qoute{
font-family: 'Courier New', Courier, monospace;
font-weight: normal;
margin: 0;
}
#login{
width: 380px;
height: 350px;
margin:30px auto;
box-shadow: 0 0 5px 3px rgb(255, 255, 255);
border-radius: 10px;
padding: 15px;
}
input{
display: block;
width: 95%;
outline: none;
padding: 11px;
font-size: 15px;
border-radius: 10px;
border: 1px solid rgb(255, 254, 253);
background: rgb(253, 251, 250) ;
box-shadow: 0 0 5px 3px rgb(255, 249, 249);
color: rgb(10, 9, 9);
margin-top: 13px;
}
.fa-eye{
margin-left: 280px;
margin-bottom: -800px;
cursor: pointer;
font-size: 30px;
color: aqua;
}
#btnLogin{
width: 98%;
display: block;
margin-top: 15px;
padding: 15px 0;
color: white;
font-size: 20px;
border: none;
border-radius: 10px;
font-weight: bold;
background:#131414 ;
cursor: pointer;
text-decoration-line: none;
}
#forget{
margin: 15px 0;
display: block;
font-family: arial;
text-decoration: none;
color: #000000;
font-size: 14px;
}
.forget:hover{
text-decoration: none;
}
hr{
margin: 25px 0;
opacity: o.3;
}
#btn-create{
margin: 15px auto;
display: block;
margin-top: 15px;
padding: 15px;
color: white;
font-size: 16px;
border: none;
border-radius: 10px;
font-weight: bold;
background:#0c0c0c ;
cursor: pointer;
}
/******FORGOT THE PASSWORD *******/
#login-forget{
width: 380px;
height: 350px;
margin:30px auto;
border-radius: 10px;
padding: 15px;
}
/*******CREATE ACCOUNT**********/
#create{
width: 380px;
height: 350px;
margin:30px auto;
border-radius: 10px;
padding: 15px;
}
@media screen and (max-width:920px){
.img{
width: 120px;
height: 100px;
}
#login{
width: 330px;
margin: 30px auto;
}
#login-forget{
width: 330px;
margin: 30px auto;
}
#create{
width: 330px;
margin: 30px auto;
}
}