No title
November 02, 2024
0
.channel-thumbnail {
position: relative;
display: inline-block;
margin: 10px;
cursor: pointer;
border-radius: 8px;
overflow: hidden;
width: 90px;
height: 115px;
border: 1px solid #00ffff;
text-align: center;
background-color: #16697A; /* Dark background for visibility */
transition: transform 0.3s, box-shadow 0.3s;
}
.channel-thumbnail:hover {
transform: scale(1.05);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.channel-thumbnail img {
width: 100%;
height: auto;
object-fit: cover;
padding: 10px;
}
.channel-name {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
background-color: #000;
color: #f0f0f0;
font-size: 14px;
padding: 5px 0;
}
.container-search {
position: relative;
margin-bottom: 20px;
padding: 5px;
background-color: #222;
border-radius: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
#liveSearch {
width: 100%;
padding: 10px 20px;
background-color: #333;
border: 1px solid #16697A;
border-radius: 20px;
font-size: 16px;
color: #f0f0f0;
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}
.player-options {
margin-top: 20px;
display: inline-block;
border: 2px solid #00FFFF;
border-radius: 10px;
padding: 5px;
}
.player-options a {
color: #00FFFF;
text-decoration: none;
margin: 0 10px;
display: inline-flex;
align-items: center;
}
.player-options img {
width: 24px;
height: 24px;
margin-right: 5px;
vertical-align: middle;
}
#liveSearch::placeholder {
color: #999;
}
#liveSearch:focus {
outline: none;
box-shadow: 0 0 0 2px #444;
}
.sticky-player {
position: sticky;
top: 0;
z-index: 999;
background-color: #111;
padding: 10px;
border-radius: 8px;
margin-bottom: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
.container-channels {
text-align: center;
}
