-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotebook.html
155 lines (130 loc) · 5.52 KB
/
notebook.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
154
155
<!doctype html>
<!--
-- GOOD BOY PROJECTS --
GOODBOYPROJECTS.NET
. ....
,&@@@@@@@@@@@@@@* .%@@@@@@@@@@&(.
*%@@@@%. .#@@. .%@@@@#*,. ..,(@@&
.&@@%/ /@@. #@@@#. %@&,
/@@&, .&@/ ,@@@# *@@,
*@@# *(&&( &@* #@@( ,(%&&#*(@&
*@@* ,@@@@@@@@@@@ .@@#. *@@@@@@@@@@@,
&@# #@@@@@@@@@@@@/&@# ,@@@@@@@@@@@@(
,@@, &@@@@@@@@@@@@#@&. .&@@@@@@@@@@@%
,@@. #@@@@@@@@@@%*@@. .&@@@@@&#&@#
.&@* ,/#(,%@&. &@/ .%@@,
*@@. *@@@, ,@@/ ,@@&,
,@@. .%@@# ,&@( %@@*
.&@, *@@@, &@% .%@@&
.@@/ .*&@@@/ *@@&/ ,#@@@#
.#@@@@@@@@@@@@&#*. /@@@@@@@@@@@@@@%.
...... .
DESIGN AND DEVELOPMENT BY MATTHEW FLORES
2021-??? A.D.
-->
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Good Boy Projects</title>
<meta name="description" content="Vessel Score">
<meta name="author" content="Matthew Flores">
<link rel="shortcut icon" type="image/png" href="/images/favicon.png">
<link rel="stylesheet" href="css/style.css">
<script rel="javascript" src="js/script.js"></script>
</head>
<body>
<div class="title"><a href="index.html">GOOD BOY PROJECTS</a></div>
<div class="subtitle">"Chasing Our Tail Since 2019"</div>
<div class="weathercontainer">
<span id="temperature"></span>°F & <span id="description"></span> in Atlanta, GA, USA.
</div>
<div class="timecontainer">
<span>Office Hours: </span><span>M-F, 9:00-5:00</span><br>
<span>Currently:</span><span id="time"></span><br>
<span>We Are: </span><span id="officehours"></span>
</div>
<div class="center">
<img src="/images/dog.gif">
</div>
<table>
<thead>
<tr>
<th>Entry No.</th>
<th>Title</th>
<th>Date</th>
<th>Notes</th>
</tr>
</thead>
<tbody>
<tr>
<td>N-001</td>
<td>Notes on a Relaunch</td>
<td>2021-10-31 @ 5:04 P.M. EST</td>
<td>Old and archived</td>
</tr>
<tr>
<td>N-002</td>
<td>Notes on Funny Fone</td>
<td>2022-01-12 @ 3:20 P.M. EST</td>
<td>Old and archived</td>
</tr>
</tbody>
</table>
<div class="footer">
<span><a href="index.html">Index</a></span> |
<span><a href="notebook.html">Notebook</a></span> |
<span><a href="mailto:[email protected]?subject=Let's Make Something Fun Together!">Contact</a></span>
<br>
<span>Courtesy of Good Boy Projects, <span id="copyright"></span><br>
<span>Last Modified: <span id="timestamp"></span></span><br>
<button id="toggle-style-button">Play Ball!</button>
</div>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" width="0" height="0">
<defs>
<filter id="distort">
<feTurbulence baseFrequency="1 1" numOctaves="1" />
<feDisplacementMap in="SourceGraphic" scale="1.5" />
</filter>
</defs>
</svg>
</body>
<script>
document.getElementById("timestamp").innerHTML = document.lastModified;
</script>
<script>document.getElementById('copyright').appendChild(document.createTextNode(new Date().getFullYear()))</script>
<script>
const toggleButton = document.getElementById('toggle-style-button');
toggleButton.addEventListener('click', function () {
const isGreen = document.body.style.backgroundColor === 'green';
if (isGreen) {
// Switch back to original colors
document.body.style.backgroundColor = '#ffd900';
document.body.style.color = 'black';
document.querySelectorAll('a').forEach(link => {
link.style.color = 'black';
});
document.querySelectorAll('table').forEach(table => {
table.style.border = '1px solid black';
});
document.querySelectorAll('th, td').forEach(cell => {
cell.style.border = '1px solid black';
});
} else {
// Switch to green background and white text
document.body.style.backgroundColor = 'green';
document.body.style.color = 'white';
document.querySelectorAll('a').forEach(link => {
link.style.color = 'white';
// Change table borders to white
document.querySelectorAll('table').forEach(table => {
table.style.border = '1px solid white';
});
document.querySelectorAll('th, td').forEach(cell => {
cell.style.border = '1px solid white';
});
});
}
});
</script>
</html>