green theme
This commit is contained in:
parent
2a0721040b
commit
b57328a740
@ -7,159 +7,272 @@
|
|||||||
<title>TVCOM Přenosy</title>
|
<title>TVCOM Přenosy</title>
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
font-family: system-ui, sans-serif;
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||||
margin: 20px;
|
margin: 0;
|
||||||
background: #f5f5f5;
|
padding: 20px;
|
||||||
|
background: linear-gradient(135deg, #1a5f23 0%, #ff8c00 100%);
|
||||||
color: #333;
|
color: #333;
|
||||||
|
min-height: 100vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 30px;
|
||||||
|
color: #fff;
|
||||||
|
font-size: 2.8rem;
|
||||||
|
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
|
||||||
|
background: linear-gradient(to right, #ff8c00, #32cd32);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
background-clip: text;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
max-width: 1400px;
|
||||||
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.filters {
|
.filters {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
gap: 10px;
|
gap: 15px;
|
||||||
margin-bottom: 20px;
|
padding: 20px;
|
||||||
|
background: rgba(46, 139, 87, 0.9);
|
||||||
|
border-radius: 15px;
|
||||||
|
box-shadow: 0 8px 32px rgba(0,0,0,0.1);
|
||||||
|
margin-bottom: 30px;
|
||||||
|
backdrop-filter: blur(10px);
|
||||||
}
|
}
|
||||||
|
|
||||||
input, select, button {
|
input, select, button {
|
||||||
padding: 8px 16px;
|
padding: 12px 20px;
|
||||||
font-size: 15px;
|
font-size: 16px;
|
||||||
border: 1px solid #ddd;
|
border: 2px solid #32cd32;
|
||||||
border-radius: 5px;
|
border-radius: 25px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
background: #fff;
|
||||||
|
color: #1a5f23;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
button {
|
input:focus, select:focus {
|
||||||
background: white;
|
outline: none;
|
||||||
transition: all 0.2s;
|
border-color: #ff8c00;
|
||||||
|
box-shadow: 0 2px 10px rgba(255, 140, 0, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
button:hover {
|
button:hover {
|
||||||
background: #f0f0f0;
|
transform: translateY(-3px);
|
||||||
|
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
|
||||||
|
background: linear-gradient(45deg, #32cd32, #ff8c00);
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
button:active {
|
||||||
|
transform: translateY(0);
|
||||||
|
background: linear-gradient(45deg, #ff8c00, #32cd32);
|
||||||
}
|
}
|
||||||
|
|
||||||
button.active {
|
button.active {
|
||||||
background: #4a90e2;
|
background: linear-gradient(45deg, #32cd32, #ff8c00);
|
||||||
color: white;
|
color: #fff;
|
||||||
border-color: #4a90e2;
|
border-color: #32cd32;
|
||||||
|
box-shadow: 0 5px 15px rgba(50, 205, 50, 0.4);
|
||||||
}
|
}
|
||||||
|
|
||||||
.sport-buttons {
|
.sport-buttons {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
gap: 8px;
|
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
margin-bottom: 20px;
|
gap: 12px;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
padding: 15px;
|
||||||
|
background: rgba(46, 139, 87, 0.9);
|
||||||
|
border-radius: 15px;
|
||||||
|
box-shadow: 0 8px 32px rgba(0,0,0,0.1);
|
||||||
|
backdrop-filter: blur(10px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.sport-buttons button {
|
||||||
|
background: linear-gradient(45deg, #32cd32 0%, #ff8c00 100%);
|
||||||
|
border: none;
|
||||||
|
color: #fff;
|
||||||
|
padding: 10px 20px;
|
||||||
|
border-radius: 30px;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
font-weight: 600;
|
||||||
|
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.sport-buttons button:hover {
|
||||||
|
transform: translateY(-3px);
|
||||||
|
box-shadow: 0 6px 15px rgba(0,0,0,0.2);
|
||||||
|
background: linear-gradient(45deg, #ff8c00, #32cd32);
|
||||||
|
}
|
||||||
|
|
||||||
|
.sport-buttons button.active {
|
||||||
|
background: linear-gradient(45deg, #32cd32, #ff8c00);
|
||||||
|
box-shadow: 0 5px 15px rgba(50, 205, 50, 0.4);
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-container {
|
.table-container {
|
||||||
background: white;
|
background: rgba(46, 139, 87, 0.95);
|
||||||
border-radius: 10px;
|
border-radius: 15px;
|
||||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
box-shadow: 0 12px 40px rgba(0,0,0,0.15);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
margin: 0 auto;
|
||||||
|
max-width: 1400px;
|
||||||
|
width: 100%;
|
||||||
|
backdrop-filter: blur(10px);
|
||||||
}
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-collapse: collapse;
|
border-collapse: separate;
|
||||||
|
border-spacing: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
thead {
|
thead {
|
||||||
background: #4a90e2;
|
background: linear-gradient(45deg, #32cd32, #ff8c00);
|
||||||
color: white;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
th {
|
th {
|
||||||
padding: 12px;
|
padding: 16px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
font-weight: 600;
|
font-weight: 700;
|
||||||
font-size: 14px;
|
font-size: 16px;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
letter-spacing: 0.5px;
|
letter-spacing: 1px;
|
||||||
|
border-bottom: 2px solid rgba(255,255,255,0.2);
|
||||||
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
td {
|
td {
|
||||||
padding: 12px;
|
padding: 16px;
|
||||||
border-bottom: 1px solid #e0e0e0;
|
border-bottom: 1px solid #eee;
|
||||||
}
|
}
|
||||||
|
|
||||||
tbody tr {
|
tbody tr {
|
||||||
transition: background-color 0.2s;
|
transition: all 0.3s ease;
|
||||||
|
border-bottom: 1px solid #eee;
|
||||||
}
|
}
|
||||||
|
|
||||||
tbody tr:hover {
|
tbody tr:hover {
|
||||||
background-color: #f8f9fa;
|
background: linear-gradient(90deg, rgba(50, 205, 50, 0.1) 0%, rgba(255, 140, 0, 0.1) 100%);
|
||||||
}
|
transform: scale(1.01);
|
||||||
|
|
||||||
tbody tr:last-child td {
|
|
||||||
border-bottom: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.thumbnail {
|
.thumbnail {
|
||||||
width: 80px;
|
width: 100px;
|
||||||
height: 60px;
|
height: 70px;
|
||||||
object-fit: cover;
|
object-fit: cover;
|
||||||
border-radius: 5px;
|
border-radius: 10px;
|
||||||
|
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
|
||||||
|
border: 2px solid #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.title-cell {
|
.title-cell {
|
||||||
font-weight: 500;
|
font-weight: 600;
|
||||||
color: #333;
|
color: #333;
|
||||||
|
font-size: 18px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.title-cell a {
|
.title-cell a {
|
||||||
color: #333;
|
color: #32cd32;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
.title-cell a:hover {
|
.title-cell a:hover {
|
||||||
color: #4a90e2;
|
color: #ff8c00;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
|
transform: scale(1.05);
|
||||||
}
|
}
|
||||||
|
|
||||||
.time-cell {
|
.time-cell {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
color: #666;
|
color: #ff8c00;
|
||||||
font-size: 14px;
|
font-size: 16px;
|
||||||
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sport-cell {
|
.sport-cell {
|
||||||
color: #666;
|
color: #32cd32;
|
||||||
font-size: 14px;
|
font-size: 15px;
|
||||||
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
.league-cell {
|
.league-cell {
|
||||||
color: #888;
|
color: #555;
|
||||||
font-size: 13px;
|
font-size: 14px;
|
||||||
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
.no-results {
|
.no-results {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 40px;
|
padding: 60px;
|
||||||
color: #666;
|
color: #1a5f23;
|
||||||
font-size: 16px;
|
font-size: 18px;
|
||||||
|
background: rgba(46, 139, 87, 0.7);
|
||||||
|
border-radius: 10px;
|
||||||
|
margin: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#loading {
|
#loading {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 1.2em;
|
font-size: 1.5em;
|
||||||
margin-top: 30px;
|
margin-top: 50px;
|
||||||
|
color: #fff;
|
||||||
|
font-weight: 600;
|
||||||
|
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
|
||||||
|
background: linear-gradient(45deg, #32cd32, #ff8c00);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
background-clip: text;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loading-spinner {
|
||||||
|
border: 5px solid rgba(50, 205, 50, 0.3);
|
||||||
|
border-radius: 50%;
|
||||||
|
border-top: 5px solid #ff8c00;
|
||||||
|
width: 50px;
|
||||||
|
height: 50px;
|
||||||
|
animation: spin 1s linear infinite;
|
||||||
|
margin: 20px auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes spin {
|
||||||
|
0% { transform: rotate(0deg); }
|
||||||
|
100% { transform: rotate(360deg); }
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
|
.filters {
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sport-buttons {
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
th, td {
|
th, td {
|
||||||
padding: 8px;
|
padding: 12px 8px;
|
||||||
font-size: 13px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.thumbnail {
|
.thumbnail {
|
||||||
width: 60px;
|
width: 70px;
|
||||||
height: 45px;
|
height: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 2.2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
th:nth-child(4), td:nth-child(4) {
|
th:nth-child(4), td:nth-child(4) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user