-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelax.html
72 lines (59 loc) · 2.52 KB
/
relax.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" href="data:image/png;base64,AAABAAEAEBACAAEAAQCwAAAAFgAAACgAAAAQAAAAIAAAAAEAAQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA">
<title></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<style>
/* New styles for sidebar */
.sidebar {
height: 100vh;
background-color: #343a40;
padding: 20px;
position: fixed;
top: 0;
left: 0;
overflow-y: auto;
width: 120px;
}
.sidebar .nav-link {
color: #ffffff;
}
.sidebar .nav-link.active {
background-color: rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
.sidebar {
display: none;
}
.content {
margin-left: 0;
}
}
body {
background-color: #343a40; /* Set the body background color to match the sidebar */
color: #ffffff; /* Ensure text is readable against the dark background */
}
</style>
</head>
<body>
<div class="sidebar">
<ul class="nav flex-column">
<li class="nav-item"><a href="index.html" class="nav-link">Goals</a></li>
<li class="nav-item"><a href="ideas.html" class="nav-link">Ideas</a></li>
<li class="nav-item"><a href="code.html" class="nav-link">Code</a></li>
<li class="nav-item"><a href="content.html" class="nav-link">Content</a></li>
<li class="nav-item"><a class="nav-link active">Relax</a></li>
</ul>
</div>
<div class="content">
<!-- Your main content goes here -->
<div class="container mt-4">
<!-- Example content: You can replace this with your own -->
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>