|
3 | 3 | <head>
|
4 | 4 | <title>About | Coding Hut</title>
|
5 | 5 | <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 | + <link href="https://fonts.googleapis.com/css?family=Comfortaa" rel="stylesheet"> |
6 | 7 | <style>
|
7 | 8 | body {
|
8 | 9 | overflow-x: hidden;
|
9 |
| - font-family: Sans-Serif; |
| 10 | + font-family: 'Comfortaa', Sans-Serif; |
10 | 11 | margin: 0;
|
| 12 | + font-size: 22px; |
11 | 13 | }
|
12 |
| -<link href='https://fonts.googleapis.com/css?family=Comfortaa' rel='stylesheet'> |
13 |
| -<style> |
14 |
| -body { |
15 |
| - font-family: 'Comfortaa';font-size: 22px; |
16 |
| -} |
17 | 14 |
|
18 | 15 | .menu-container {
|
19 | 16 | position: relative;
|
|
52 | 49 |
|
53 | 50 | .menu li {
|
54 | 51 | padding: 0 20px;
|
55 |
| - font-size: 22px; |
56 | 52 | }
|
57 | 53 |
|
58 | 54 | /* Mobile Styles */
|
|
107 | 103 | <body>
|
108 | 104 | <nav class="menu-container">
|
109 | 105 | <!-- Logo -->
|
110 |
| - <a href="https://scratch-coding-hut.github.io" class="menu-logo"> |
111 |
| - <img src="Images/Coding-Hut-Logo.png" alt="Coding Hut Logo" width="50" height="50"></img> |
| 106 | + <a href="/" class="menu-logo"> |
| 107 | + <img src="Images/Coding-Hut-Logo.png" alt="Coding Hut Logo" width="50" height="50"> |
112 | 108 | </a>
|
113 | 109 |
|
114 | 110 | <!-- Menu for Mobile -->
|
|
117 | 113 | <!-- Menu Items -->
|
118 | 114 | <div class="menu">
|
119 | 115 | <ul>
|
120 |
| - <li><a href="https://scratch-coding-hut.github.io">Home</a></li> |
121 |
| - <li><a href="https://scratch-coding-hut.github.io/about">About</a></li> |
| 116 | + <li><a href="/">Home</a></li> |
| 117 | + <li><a href="/about">About</a></li> |
122 | 118 | <li><a href="https://scratch.mit.edu/discuss/topic/652178/">Scratch Forum</a></li>
|
123 |
| - <li><a href="https://scratch-coding-hut.github.io/Wiki/sitemaplinks">Wiki | FAQ | More Links</a></li> |
| 119 | + <li><a href="/Wiki/sitemaplinks">Wiki | FAQ | More Links</a></li> |
124 | 120 | </ul>
|
125 | 121 | <ul>
|
126 |
| - <li><a href="https://scratch-coding-hut.github.io/messages">Messages</a></li> |
127 |
| - <li><a id="user" href="https://scratch-coding-hut.github.io/account">My Account</a></li> |
| 122 | + <li><a href="/messages">Messages</a></li> |
| 123 | + <li><a id="user" href="/account">My Account</a></li> |
128 | 124 | </ul>
|
129 | 125 | </div>
|
130 | 126 | </nav>
|
131 | 127 |
|
132 | 128 | <h1 style="text-align:center;"><b>About Coding Hut</b></h1>
|
133 | 129 | <h2 style="text-align:center;">Shop Created At Dec. 27, 2022 20:53:31</h2>
|
134 |
| -Coding Hut is a shop that does coding, art, and many more! For more than 3 years, we have been helping Scratchers as well as New Scratchers with lots of Scratch-related things. |
135 |
| -<br> |
136 |
| -Coding Hut was founded by <a href='https://scratch.mit.edu/users/MyScratchedAccount'>@MyScratchedAccount</a> on Dec. 27, 2022 20:53:31.</h2> |
| 130 | + <p> |
| 131 | + Coding Hut is a shop that does coding, art, and many more! For more than 3 years, we have been helping Scratchers as well as New Scratchers with lots of Scratch-related things. |
| 132 | + </p> |
| 133 | + <p> |
| 134 | + Coding Hut was founded by <a href="https://scratch.mit.edu/users/MyScratchedAccount">@MyScratchedAccount</a> on Dec. 27, 2022 20:53:31. |
| 135 | + </p> |
137 | 136 |
|
138 |
| - |
139 | 137 | <script>
|
140 | 138 | const username = localStorage.getItem('username');
|
141 |
| - if (user) { |
| 139 | + if (username) { |
142 | 140 | document.getElementById('user').textContent = username;
|
143 | 141 | }
|
| 142 | + |
144 | 143 | function toggleMenu() {
|
145 | 144 | var menu = document.querySelector('.menu');
|
146 | 145 | menu.style.display = menu.style.display === 'flex' ? 'none' : 'flex';
|
|
0 commit comments