Skip to content

Commit 76abb9a

Browse files
committed
fix: restore site functionality and fix styling issues
- Restore main page with correct utilities list - Remove broken utilities page link from navigation - Fix file list styling - remove borders and use simple design - Remove search functionality from navigation - Ensure all utilities use consistent styling from main CSS files - Update utilities list to match actual available utilities
1 parent 556b810 commit 76abb9a

File tree

13 files changed

+14
-1174
lines changed

13 files changed

+14
-1174
lines changed

assets/css/landing.css

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -222,24 +222,15 @@ body {
222222
}
223223

224224
.file-item {
225-
display: flex;
226-
align-items: center;
227-
padding: 8px 12px;
228-
background: var(--terminal-header-bg);
229-
border: 1px solid var(--terminal-border);
230-
border-radius: 4px;
231-
color: var(--terminal-text);
232-
text-decoration: none;
233-
transition: all 0.2s ease;
234-
font-family: 'JetBrains Mono', monospace;
225+
color: var(--terminal-text-dim);
235226
font-size: 14px;
227+
padding: 4px 0;
228+
text-decoration: none;
229+
transition: color 0.2s ease;
236230
}
237231

238232
.file-item:hover {
239-
border-color: var(--terminal-text);
240-
background: var(--terminal-bg);
241-
transform: translateY(-1px);
242-
box-shadow: 0 2px 4px rgba(0, 255, 0, 0.1);
233+
color: var(--terminal-text);
243234
}
244235

245236
.file-item:active {

index.html

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,12 @@
8585
<div class="output">
8686
<div class="ascii-art">
8787
```
88-
████████████╗ ██╗ ██╗██╗ ██████
89-
████╗ ████║██╔══██╗██║ ██║██║██╔═████╗
90-
██╔████╔██║██████╔╝██║ ██║██║██║██╔██║
91-
██║╚██╔╝██║██╔══██╗╚██╗ ██╔╝██║████╔██║
92-
██║ ╚═╝ ██║██║ ██║ ╚████╔╝ ██║╚██████╔╝
93-
╚═╝ ╚═╝╚═╝ ╚═╝ ╚═══╝ ╚═╝ ╚═════╝
88+
██████╗ ██████╗ ██████╗ ██████╗ ██████╗ █████╗ ████████╗
89+
██╔════╝██╔═══██╗██╔═══██╗██╔══██╗██╔═══██╗██╔══██╗╚══██╔══╝
90+
██║ ██║ ██║██║ ██║██║ ██║██║ ██║███████║ ██║
91+
██║ ██║ ██║██║ ██║██║ ██║██║ ██║██╔══██║ ██║
92+
╚██████╗╚██████╔╝╚██████╔╝╚██████╔╝╚██████╔╝██║ ██║ ██║
93+
╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝
9494
```
9595
</div>
9696

@@ -103,18 +103,15 @@ <h3>Возможности:</h3>
103103
<ul>
104104
<li>CSS Button Generator — визуальный генератор CSS кнопок</li>
105105
<li>Colorify — конвертер цветов и генератор градиентов</li>
106-
<li>QR Code Generator — генератор QR-кодов</li>
107-
<li>Stream Popup — генератор попапов для стримеров</li>
108-
<li>README Builder — генератор README файлов</li>
109106
<li>VK Token Generator — генератор токенов VK</li>
107+
<li>README Builder — генератор README файлов</li>
110108
<li>Free API Catalog — каталог бесплатных API</li>
111109
</ul>
112110
</div>
113111

114112
<div class="navigation">
115113
<h3>Навигация:</h3>
116114
<div class="nav-buttons">
117-
<a href="/utilities/" class="nav-button">Утилиты</a>
118115
<a href="https://github.com/mrvi0" class="nav-button">GitHub</a>
119116
<a href="https://t.me/B4DCAT" class="nav-button">Telegram</a>
120117
</div>
@@ -129,12 +126,9 @@ <h3>Навигация:</h3>
129126
<div class="file-list">
130127
<a href="/utilities/button-generator/" class="file-item">📁 button-generator/</a>
131128
<a href="/utilities/colorify/" class="file-item">📁 colorify/</a>
132-
<a href="/utilities/stream-qr/" class="file-item">📁 stream-qr/</a>
133-
<a href="/utilities/stream-popup/" class="file-item">📁 stream-popup/</a>
134-
<a href="/utilities/readme-builder/" class="file-item">📁 readme-builder/</a>
135129
<a href="/utilities/vkhost/" class="file-item">📁 vkhost/</a>
130+
<a href="/utilities/readme-builder/" class="file-item">📁 readme-builder/</a>
136131
<a href="/utilities/free-api/" class="file-item">📁 free-api/</a>
137-
<a href="/utilities/test/" class="file-item">📁 test/</a>
138132
</div>
139133
</div>
140134

@@ -182,4 +176,4 @@ <h3>Навигация:</h3>
182176
}
183177
</script>
184178
</body>
185-
</html>
179+
</html>

0 commit comments

Comments
 (0)