-
Notifications
You must be signed in to change notification settings - Fork 0
/
Updates.html
153 lines (139 loc) · 3.9 KB
/
Updates.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
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
149
150
151
152
153
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="favicon2.ico">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
</head>
<center>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #800080;/* here are some alt color codes FF0000, 800080, FFC000 */
color: white;
}
.rotate {
animation: rotation 0.0001s infinite linear;
}
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}
</style>
<div class="topnav">
<a href="index.html">Home</a>
<a class ="active" href="Updates.html">Updates</a>
<a href="new_page.html">Site History</a>
<a href="github.html">About Me</a>
</div> -->
<div class="navbar">
<ul>
<li>
<a href="index.html">
<i class='bx bx-home icon'></i>
<i class='bx bxs-home activeIcon'></i>
</a>
</li>
<li>
<a href="github.html">
<i class='bx bx-user icon'></i>
<i class='bx bxs-user activeIcon'></i>
</a>
</li>
<li class="active">
<a href="Updates.html">
<i class='bx bx-heart icon'></i>
<i class='bx bxs-heart activeIcon'></i>
</a>
</li>
<li>
<a href="new_page.html">
<i class='bx bx-cog icon'></i>
<i class='bx bxs-cog activeIcon'></i>
</a>
</li>
<div class="indicator"></div>
</ul>
</div>
<script>
const navBar = document.querySelector(".navbar")
allLi = document.querySelectorAll("li");
allLi.forEach((li, index) => {
li.addEventListener("click" , e =>{
navBar.querySelector(".active").classList.remove("active");
li.classList.add("active");
const indicator = document.querySelector(".indicator");
indicator.style.transform = `translateX(calc(${index * 90}px))`;
});
});
</script>
<div class="blurred"></div>
<div class="middlecoversecond">
<h1><center>Updates</center></h1>
<center><p>Fixed the update page not having the updated nav ul</p></center>
<center><P>Removed broken web elements</P></center>
<center><p>Made design more consistent for all pages</p></center>
<center><p>Added audio to the pages</p></center>
<center><p>Renamed site</p></center>
<center><p>Bug fixes and added code comments</p></center>
<center><p>Remade the about page</p></center>
<center><p>complete rework of the background code</p></center>
<center><p>so it allows swapping all the backgrounds at once</p></center>
<center><p>Replaced the old nav ui with a more modern one</p></center>
<center><p>patched out most of the errors</p></center>
<center><p>Reorganized the file structure of the site</p></center>
<center><p>Made a <a href="https://trello.com/b/l6qkWxLt/mywebsite">Trello</a> for the site</p></center>
<center><p>New Favicon and fixed some minor bugs</p></center>
<center><p>Organized test folder so I can find assets quicker</p></center>
<center><p>Removed random image of JU-87</p></center>
<center><p>Deleted unused assets</p></center>
<center><p>Changed github page to about me</p></center>
<center><p>Updated Nav ui</p></center>
<title>Updates</title>
<!--Old formatting code DO NOT TOUCH
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br> -->
<!-- Pre April 2024 design revamp nav ui
<h1>HYPERLINKS</h1>
<nav>
<ul>
<li>
<a href="index.html">Home</a> <a href="new_page.html">About</a> <a href="Updates.html">Updates</a> <a href="github.html">Github</a>
</li>
</ul>
</nav>
</body> -->
</center>
<div class="blurred"></div>
</html>