-
Notifications
You must be signed in to change notification settings - Fork 0
/
Inder.01(1-100).html
134 lines (120 loc) · 3.57 KB
/
Inder.01(1-100).html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Log-in</title>
<style>
* {
margin: 0;
padding: 0;
}
body {
font-family: 'Poppins', sans-serif;
}
.bg {
min-height: 117vh;
width: 100%;
background: url('models-wet-sad-monochrome-artwork-anime-girls-nipples-boobs-water.jpg')no-repeat;
background-position: center;
background-size: cover;
}
.login-box {
position: absolute;
top: 65%;
left: 20%;
width: 350px;
padding: 40px;
margin: 20px auto;
transform: translate(-50%, -55%);
box-sizing: border-box;
box-shadow: 0 15px 25px rgba(0, 255, 255, 0.568);
border-radius: 10px;
}
.login-box p:first-child {
margin: 0 0 30px;
padding: 0;
color: #f60808;
text-align: center;
font-size: 1.5rem;
font-weight: bold;
letter-spacing: 1px;
}
.login-box .user-box {
position: relative;
}
.login-box .user-box input {
width: 100%;
padding: 10px 0;
font-size: 16px;
color: #26ff04;
margin-bottom: 30px;
border: none;
border-bottom: 1px solid #e60808;
outline: none;
background: transparent;
}
.login-box .user-box label {
position: absolute;
top: 0;
left: 0;
padding: 10px 0;
font-size: 16px;
color: #060606;
pointer-events: none;
transition: .5s;
}
.login-box .user-box input:focus~label,
.login-box .user-box input:valid~label {
top: -20px;
left: 0;
color: aqua;
font-size: 12px;
}
.login-box form a {
position: relative;
display: inline-block;
padding: 10px 20px;
font-weight: bold;
color: aqua;
font-size: 16px;
text-decoration: none;
text-transform: uppercase;
overflow: hidden;
transition: .5s;
margin-top: 40px;
letter-spacing: 3px;
border-radius: 20%;
}
.login-box a:hover {
transform: scale(1.1);
box-shadow: 0 0 24px 0;
}
a:hover .login-box {
box-shadow: 0 0 24px 0 rgba(17, 195, 195, 0.404);
}
</style>
</head>
<body>
<div class="bg">
<div class="login-box">
<p>Login</p>
<form>
<div class="user-box">
<input required="true" name="" type="email">
<label>Email</label>
</div>
<div class="user-box">
<input required="true" name="" type="password">
<label>Password</label>
</div>
<a href="#">Submit</a>
</form>
</div>
</div>
</body>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
</style>
</html>