-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (89 loc) · 2.66 KB
/
index.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Accueil</title>
<style>
body {
margin: 0;
padding: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-image: url('Main-bg.jpg');
background-size: cover;
background-position: center;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
.signature {
position: fixed;
top: 20px;
left: 30px;
color: #fff;
font-size: 1.2rem;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
letter-spacing: 2px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
opacity: 0.9;
transition: opacity 0.3s ease;
}
.signature:hover {
opacity: 1;
}
.input {
color: #fff;
font-size: 0.9rem;
background-color: transparent;
width: 100%;
box-sizing: border-box;
padding-inline: 0.5em;
padding-block: 0.7em;
border: none;
border-bottom: 2px solid rgba(255, 255, 255, 0.3);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.input-border {
position: absolute;
width: 0%;
height: 2px;
bottom: 0;
left: 0;
transition: width 0.3s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
.input:focus {
outline: none;
}
.input:focus+.input-border {
width: 100%;
}
.form-control {
position: relative;
width: 300px;
}
.input-alt {
font-size: 1.2rem;
padding-inline: 1em;
padding-block: 0.8em;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.input-border-alt {
height: 3px;
background: linear-gradient(90deg, #FF6464 0%, #FFBF59 50%, #47C9FF 100%);
transition: width 0.4s cubic-bezier(0.42, 0, 0.58, 1.00);
}
.input-alt:focus+.input-border-alt {
width: 100%;
}
</style>
</head>
<body>
<div class="signature">By Krnivor</div>
<div class="form-control">
<form action="https://www.startpage.com/sp/search" method="get">
<input class="input input-alt" name="q" placeholder="Rechercher" required type="text">
<span class="input-border input-border-alt"></span>
</form>
</div>
</body>
</html>