-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathmain.html
More file actions
88 lines (75 loc) · 2.12 KB
/
main.html
File metadata and controls
88 lines (75 loc) · 2.12 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<title>Flippy</title>
<link rel="stylesheet" href="main.css">
<link rel="icon" href="logo.png" type="image/x-icon">
<!-- Boxicons CDN Link -->
<link href='https://unpkg.com/boxicons@2.0.7/css/boxicons.min.css' rel='stylesheet'>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
opacity: 0;
animation: fadeIn ease-in-out 1.5s forwards;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.sidebar .logo-details {
transition: background-color 0.3s ease;
}
.sidebar:hover .logo-details {
background-color: #3498db; /* Change to the desired hover background color */
}
.sidebar ul li a {
transition: background-color 0.3s ease, color 0.3s ease;
}
.sidebar ul li a:hover {
background-color: #3498db; /* Change to the desired hover background color */
color: #fff; /* Change to the desired hover text color */
}
.home-section .e3_2 {
opacity: 0;
animation: fadeIn ease-in-out 1.5s forwards;
}
</style>
</head>
<body>
<div class="sidebar">
<div class="logo-details">
<i class='bx bxl-slack icon'></i>
<div class="logo_name">Flippy</div>
<i class='bx bx-menu' id="btn"></i>
</div>
<ul class="nav-list">
<!-- Your existing list items here -->
</ul>
</div>
<section class="home-section">
<div class="e3_2">
<div class="happy1">
<!-- Your existing images here -->
</div>
</div>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/6.2.4/firebase.js"></script>
<script>
// Your Firebase configuration should be updated here with your own credentials
// ...
</script>
<script src="main.js"></script>
<script>
window.onload = function () {
document.body.style.opacity = "1";
document.querySelector(".home-section .e3_2").style.opacity = "1";
}
</script>
</body>
</html>