Kyoga TV is a fully fledged online tv station in northern Uganda
Kyoga TV Live
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Poppins', sans-serif;
background-color: #f2f2f2;
color: #333;
line-height: 1.6;
}
header {
background-color: #fff;
color: #333;
padding: 20px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid #ddd;
}
header img {
height: 50px;
}
.datetime {
font-size: 14px;
color: #555;
}
nav.nav {
background-color: #1d1147;
padding: 15px 20px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
.logo h2 a {
color: #f0ac45;
text-decoration: none;
font-weight: 700;
font-size: 24px;
}
ul.nav-links {
list-style: none;
display: flex;
flex-wrap: wrap;
}
ul.nav-links li {
margin: 0 10px;
}
ul.nav-links li a {
color: #ffffff;
font-weight: 600;
font-size: 16px;
padding: 10px 15px;
text-decoration: none;
border-radius: 5px;
transition: background 0.3s ease, color 0.3s ease;
}
ul.nav-links li a:hover {
background-color: #f0ac45;
color: #1d1147;
}
#menu-toggle {
display: none;
font-size: 28px;
color: #fff;
background: none;
border: none;
cursor: pointer;
}
main {
padding: 40px 20px;
max-width: 1000px;
margin: auto;
}
.radio-player, .video-section {
background: #f0f3f2;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
margin-bottom: 30px;
text-align: center;
}
.radio-player h2 {
margin-bottom: 15px;
}
.radio-player audio {
width: 100%;
}
.news-ticker {
width: 100%;
background-color: #8bc2ee;
color: white;
overflow: hidden;
white-space: nowrap;
padding: 10px 0;
box-shadow: 0 2px 4px rgba(39, 3, 245, 0.2);
margin: 30px 0;
font-size: 16px;
font-weight: bold;
position: relative;
}
.ticker-content {
display: inline-block;
padding-left: 100%;
animation: ticker 20s linear infinite;
}
@keyframes ticker {
0% { transform: translateX(0%); }
100% { transform: translateX(-100%); }
}
iframe {
width: 100%;
height: 450px;
border-radius: 10px;
border: none;
}
footer {
background-color: #1d1147; …