This commit is contained in:
2025-05-24 12:17:22 +04:00
parent 8b911b537a
commit 000d7a9f67

View File

@@ -161,45 +161,49 @@
margin-top: 2rem;
}
.stream-item {
background: #111;
border: 2px solid #ff00ff;
border-radius: 10px;
padding: 1rem;
box-shadow: 0 0 12px #ff00ff88;
transition: box-shadow 0.3s ease;
user-select: none;
}
background: #111;
border: 2px solid #ff00ff;
border-radius: 10px;
padding: 1rem;
box-shadow: 0 0 12px #ff00ff88;
transition: box-shadow 0.3s ease;
user-select: none;
display: flex;
flex-direction: column;
height: 100%;
}
.stream-item:hover {
box-shadow: 0 0 20px #00ffffdd;
border-color: #00ffff;
}
.stream-item img {
width: 100%;
border-radius: 8px;
margin-bottom: 1rem;
box-shadow: 0 0 8px #ff00ffaa;
}
width: 100%;
border-radius: 8px;
margin-bottom: 1rem;
box-shadow: 0 0 8px #ff00ffaa;
}
.stream-item h3 {
margin: 0 0 0.5rem;
color: #ff00ff;
text-shadow: none;
}
margin: 0 0 0.5rem;
color: #ff00ff;
text-shadow: none;
}
.stream-item p {
color: #aaa;
font-size: 0.95rem;
margin-bottom: 1rem;
}
color: #aaa;
font-size: 0.95rem;
margin-bottom: 1rem;
}
.stream-item button {
background-color: #ff00ff;
border: none;
padding: 0.5rem 1.2rem;
color: #111;
font-weight: 700;
border-radius: 6px;
cursor: pointer;
box-shadow: 0 0 10px #ff00ff;
transition: background-color 0.3s ease;
}
background-color: #ff00ff;
border: none;
padding: 0.5rem 1.2rem;
color: #111;
font-weight: 700;
border-radius: 6px;
cursor: pointer;
box-shadow: 0 0 10px #ff00ff;
transition: background-color 0.3s ease;
margin-top: auto;
}
.stream-item button:hover {
background-color: #00ffff;
box-shadow: 0 0 14px #00ffff;