114 lines
No EOL
1.8 KiB
CSS
Executable file
114 lines
No EOL
1.8 KiB
CSS
Executable file
/* === Allgemeines Design === */
|
|
body {
|
|
margin: 0;
|
|
font-family: Arial, sans-serif;
|
|
background-color: #121212;
|
|
color: #eee;
|
|
}
|
|
|
|
a {
|
|
color: #90caf9;
|
|
}
|
|
|
|
/* === Menü oben === */
|
|
header {
|
|
background-color: #1e1e1e;
|
|
padding: 1rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border-bottom: 1px solid #333;
|
|
}
|
|
|
|
header h1 {
|
|
margin: 0;
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
nav button {
|
|
background-color: #333;
|
|
color: #fff;
|
|
border: none;
|
|
padding: 0.5rem 1rem;
|
|
margin-left: 0.5rem;
|
|
cursor: pointer;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
nav button:hover {
|
|
background-color: #444;
|
|
}
|
|
|
|
/* === Bereich: Aktive Konvertierungen === */
|
|
#active-conversions {
|
|
padding: 1rem;
|
|
border-bottom: 1px solid #333;
|
|
}
|
|
|
|
#active-conversions h2 {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.video-card {
|
|
background-color: #1f1f1f;
|
|
padding: 1rem;
|
|
margin-bottom: 1rem;
|
|
border-radius: 8px;
|
|
position: relative;
|
|
}
|
|
|
|
.video-card h3 {
|
|
margin: 0 0 0.5rem;
|
|
}
|
|
|
|
.video-card .actions button {
|
|
background-color: #444;
|
|
color: white;
|
|
border: none;
|
|
padding: 0.4rem 0.8rem;
|
|
margin-right: 0.5rem;
|
|
cursor: pointer;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.video-card .actions button:hover {
|
|
background-color: #666;
|
|
}
|
|
|
|
.tooltip {
|
|
position: absolute;
|
|
background-color: #333;
|
|
color: #eee;
|
|
padding: 0.5rem;
|
|
border-radius: 6px;
|
|
top: 100%;
|
|
left: 0;
|
|
z-index: 1;
|
|
display: none;
|
|
width: max-content;
|
|
max-width: 300px;
|
|
font-size: 0.7rem;
|
|
}
|
|
|
|
.video-card:hover .tooltip {
|
|
display: block;
|
|
}
|
|
|
|
/* === Bereich: Warteschleife === */
|
|
#queue {
|
|
padding: 1rem;
|
|
}
|
|
|
|
#queue h2 {
|
|
margin-top: 0;
|
|
}
|
|
|
|
/* === Statistik-Bereich === */
|
|
#statistics {
|
|
padding: 1rem;
|
|
border-top: 1px solid #333;
|
|
}
|
|
|
|
#statistics h2 {
|
|
margin-top: 0;
|
|
} |