-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (94 loc) · 3.56 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
<!DOCTYPE html>
<html data-theme="garden" lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/sakura.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/full.min.css" rel="stylesheet" type="text/css" />
<title>clip.github.io</title>
<style>
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
@media (max-width: 767px) {
#change {
display: none;
}
}
.container {
position: absolute;
top: 30%; /* Adjust this value to move the container higher or lower */
left: 50%;
transform: translate(-50%, -50%);
}
.bg-cover {
background-size: cover;
background-position: center;
height: 100%; /* Set the height to 100% of the viewport height or any other desired value */
}
</style>
</head>
<body style="background-color: white;">
<div class="container overflow-hidden text-center my-10">
<div class="grid grid-cols-1 md:grid-cols-2 my-10 gap-8">
<!-- First div -->
<div class="mb-5 p-10 font-mono select-none md:mt-10">
<h1 class="block animate__animated animate__fadeInDown animate__delay-1s text-4xl font-bold text-gray-800 uppercase mb-8">clip.github.io</h1>
<div class="flex flex-col gap-8">
<div class="animate__animated animate__fadeInDown animate__delay-2s">
<div class="tooltip lg:tooltip" data-tip="[email protected]">
<button class="btn-outline btn">Email</button>
</div>
</div>
<div class="animate__animated animate__fadeInDown animate__delay-3s">
<div class="tooltip" data-tip="@clip">
<button class="btn btn-outline">Github</button>
</div>
</div>
<div class="animate__animated animate__fadeInDown animate__delay-4s">
<div class="tooltip" data-tip="@nyingjee">
<button class="btn btn-outline">Discord</button>
</div>
</div>
<div class="animate__animated animate__fadeInDown animate__delay-5s">
<div class="tooltip" data-tip="@nyingjee">
<button class="btn btn-outline">Instagram</button>
</div>
</div>
</div>
</div>
<!-- Second div -->
<div id="change" class="bg-cover mt-10 md:mt-0 lg:h-auto rounded-xl overflow-hidden" style="background-image: url('https://i.ibb.co/vvpztFQ/85-C79265-ED86-489-D-9795-E702-BE236-D7-F.jpg');"></div>
</div>
</div>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/sakura.min.js"></script>
<script>
document.getElementById('change').classList.add('animate__animated', 'animate__fadeInDown', 'animate__delay-5s');
var sakura = new Sakura('body', {
colors: [
{
gradientColorStart: 'rgba(255, 183, 197, 0.9)',
gradientColorEnd: 'rgba(255, 197, 208, 0.9)',
gradientColorDegree: 120,
},
{
gradientColorStart: 'rgba(255,189,189)',
gradientColorEnd: 'rgba(227,170,181)',
gradientColorDegree: 120,
},
{
gradientColorStart: 'rgba(212,152,163)',
gradientColorEnd: 'rgba(242,185,196)',
gradientColorDegree: 120,
},
],
});
</script>
</body>
</html>