File size: 1,863 Bytes
47476c3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | /* General Styling */
body {
font-family: 'Arial', sans-serif;
background: #181818;
color: white;
text-align: center;
margin: 0;
padding: 0;
}
/* Container */
.container {
max-width: 900px;
margin: 20px auto;
padding: 20px;
}
/* Channel Info */
.channel-info {
background: #202020;
padding: 12px;
border-radius: 8px;
display: inline-block;
margin-bottom: 15px;
}
.channel-info h2 {
margin: 0;
font-size: 24px;
color: #ffcc00;
}
.channel-info p {
margin: 5px 0 0;
font-size: 16px;
color: #ccc;
}
/* Video Container */
.video-container {
position: relative;
width: 100%;
padding-top: 56.25%; /* 16:9 Aspect Ratio */
background: black;
border-radius: 10px;
overflow: hidden;
box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.2);
}
video {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
border: none;
background: black;
border-radius: 10px;
}
/* Controls */
.controls {
margin-top: 15px;
}
button {
background: #ff0000;
border: none;
padding: 12px 18px;
margin: 5px;
color: white;
font-size: 16px;
font-weight: bold;
cursor: pointer;
border-radius: 5px;
transition: 0.3s;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
button:hover {
background: #cc0000;
transform: scale(1.05);
}
input[type="range"] {
width: 100px;
margin-left: 10px;
accent-color: #ff0000;
}
/* Channel Switch Buttons */
.channel-buttons {
margin-top: 15px;
}
.channel-buttons button {
background: #202020;
border: 1px solid #ff0000;
color: white;
padding: 10px 15px;
font-size: 14px;
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
}
.channel-buttons button:hover {
background: #ff0000;
transform: scale(1.05);
} |