webui: add back buttom to links.html

This commit is contained in:
Sergey Krashevich
2026-02-04 06:23:39 +03:00
parent 1b06558140
commit 3984a074a1
4 changed files with 22 additions and 40 deletions
-20
View File
@@ -134,26 +134,6 @@
margin-bottom: 8px;
}
.back-link {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--accent-cyan);
text-decoration: none;
font-weight: 500;
padding: 8px 16px;
border: 1px solid var(--accent-cyan);
border-radius: 6px;
transition: all 0.3s;
margin-bottom: 24px;
}
.back-link:hover {
background: var(--accent-cyan);
color: var(--bg-primary);
box-shadow: var(--glow-cyan);
}
@media (max-width: 768px) {
.page-title {
font-size: 24px;
+2
View File
@@ -268,6 +268,8 @@
<main>
<div class="container">
<a href="index.html" class="back-link">← Back to Streams</a>
<div class="page-header">
<h1 class="page-title">Stream Links</h1>
<div class="stream-name">Stream: <span id="stream-name"></span></div>
-20
View File
@@ -134,26 +134,6 @@
margin-bottom: 8px;
}
.back-link {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--accent-cyan);
text-decoration: none;
font-weight: 500;
padding: 8px 16px;
border: 1px solid var(--accent-cyan);
border-radius: 6px;
transition: all 0.3s;
margin-bottom: 24px;
}
.back-link:hover {
background: var(--accent-cyan);
color: var(--bg-primary);
box-shadow: var(--glow-cyan);
}
@media (max-width: 768px) {
.page-title {
font-size: 24px;
+20
View File
@@ -445,3 +445,23 @@ a:hover::after {
border-radius: 4px;
}
}
.back-link {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--accent-cyan);
text-decoration: none;
font-weight: 500;
padding: 8px 16px;
border: 1px solid var(--accent-cyan);
border-radius: 6px;
transition: all 0.3s;
margin-bottom: 24px;
}
.back-link:hover {
background: var(--accent-cyan);
color: var(--bg-primary);
box-shadow: var(--glow-cyan);
}