103 lines
1.6 KiB
CSS
103 lines
1.6 KiB
CSS
body {
|
|
background-color: #121212;
|
|
color: #ffffff;
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
margin: 0;
|
|
padding: 20px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 24px;
|
|
}
|
|
|
|
#videos {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
max-width: 1500px;
|
|
margin: auto;
|
|
}
|
|
|
|
.video {
|
|
background: #1e1e1e;
|
|
padding: 15px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.video-header {
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.progress-container {
|
|
width: 100%;
|
|
background: #333;
|
|
border-radius: 5px;
|
|
margin-top: 10px;
|
|
height: 10px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.progress-bar {
|
|
height: 100%;
|
|
width: 0%;
|
|
background: linear-gradient(90deg, #4caf50, #00c853);
|
|
transition: width 0.5s ease-in-out;
|
|
}
|
|
|
|
.finished {
|
|
color: #4caf50;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.icons {
|
|
width: 25px;
|
|
float: right;
|
|
}
|
|
|
|
.video_info {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
width: 100%
|
|
}
|
|
|
|
.table_video_info {
|
|
border-spacing: 15px;
|
|
border: 1;
|
|
}
|
|
|
|
.label {
|
|
text-align: right;
|
|
vertical-align: top;
|
|
width: 100px;
|
|
}
|
|
|
|
.img {
|
|
align-items: right;
|
|
width: 100px;
|
|
}
|
|
|
|
.loader {
|
|
border: 16px solid #f3f3f3; /* Light grey */
|
|
border-top: 16px solid #3498db; /* Blue */
|
|
border-radius: 50%;
|
|
width: 20px;
|
|
height: 20px;
|
|
animation: spin 2s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% { transform: rotate(0deg); }
|
|
100% { transform: rotate(360deg); }
|
|
}
|
|
|
|
.path {
|
|
font-size: 12px;
|
|
}
|