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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<link rel="icon" href="http://transparent-favicon.info/favicon.ico" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fredoka:[email protected]&display=swap" rel="stylesheet">
<style>
body {
background-color: white;
margin: 0;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
font-family: "Fredoka", sans-serif;
}
.dot {
position: absolute;
width: 10px;
height: 10px;
background-color: black;
opacity: 0;
border-radius: 50%;
animation: floatUp 5s linear infinite;
animation-delay: calc(2s * var(--delay));
}
@keyframes floatUp {
0% {
transform: translateY(100vh) translateX(calc((100vw - 10px) * var(--startX)));
opacity: 1;
}
100% {
transform: translateY(-100vh) translateX(calc((100vw - 10px) * var(--endX)));
opacity: 0;
}
}
p {
color: black;
font-size: 155px;
text-align: center;
margin-top: 20px;
margin-bottom: 50px;
}
.login-container {
width: 300px;
padding: 20px;
border-radius: 20px;
background-color: rgba(255, 255, 255, 0.8);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
opacity: 0.7;
}
.login-header {
text-align: center;
margin-bottom: 20px;
font-size: 24px;
}
.login-form {
display: flex;
flex-direction: column;
align-items: center;
}
.form-group {
margin-bottom: 15px;
}
.form-group label {
font-weight: bold;
color: purple;
font-size: 18px;
}
.form-group input[type="password"] {
padding: 10px;
border: none;
border-radius: 10px;
outline: none;
width: 100%;
background-color: #f5f5f5;
}
.form-group input[type="submit"] {
padding: 10px 20px;
border: none;
border-radius: 5px;
background-color: purple;
color: white;
cursor: pointer;
font-weight: bold;
transition: background-color 0.3s ease;
}
.form-group input[type="submit"]:hover {
background-color: #6a1b9a;
}
</style>
</head>
<body>
<div class="dot" style="--delay: 0; --startX: 0.1; --endX: 0.1;"></div>
<div class="dot" style="--delay: 1; --startX: 0.2; --endX: 0.3;"></div>
<div class="dot" style="--delay: 2; --startX: 0.3; --endX: 0.2;"></div>
<div class="dot" style="--delay: 3; --startX: 0.4; --endX: 0.5;"></div>
<div class="dot" style="--delay: 4; --startX: 0.5; --endX: 0.4;"></div>
<div class="dot" style="--delay: 5; --startX: 0.6; --endX: 0.7;"></div>
<div class="dot" style="--delay: 6; --startX: 0.7; --endX: 0.6;"></div>
<div class="dot" style="--delay: 7; --startX: 0.8; --endX: 0.9;"></div>
<div class="dot" style="--delay: 8; --startX: 0.9; --endX: 0.8;"></div>
<div class="dot" style="--delay: 9; --startX: 0.4; --endX: 0.3;"></div>
<div class="dot" style="--delay: 10; --startX: 0.3; --endX: 0.2;"></div>
<div class="dot" style="--delay: 11; --startX: 0.6; --endX: 0.7;"></div>
<div class="dot" style="--delay: 12; --startX: 0.1; --endX: 0.2;"></div>
<div class="dot" style="--delay: 13; --startX: 0.8; --endX: 0.9;"></div>
<div class="dot" style="--delay: 14; --startX: 0.7; --endX: 0.8;"></div>
<div class="dot" style="--delay: 15; --startX: 0.5; --endX: 0.6;"></div>
<div class="dot" style="--delay: 16; --startX: 0.2; --endX: 0.3;"></div>
<div class="dot" style="--delay: 17; --startX: 0.9; --endX: 0.8;"></div>
<div class="dot" style="--delay: 18; --startX: 0.4; --endX: 0.5;"></div>
<div class="dot" style="--delay: 19; --startX: 0.7; --endX: 0.6;"></div>
<p>luna</p>
<div class="login-container">
<form class="login-form">
<div class="form-group">
<label for="password" style="font-size: 24px;">Key: </label>
<input type="password" id="key" name="key" required>
</div>
<div class="form-group">
<input type="submit" value="Login">
</div>
</form>
</div>
</body>
</html>
Commentaires
Pas encore de commentaires