lazy-player/lazy_player/style.css

93 lines
1.5 KiB
CSS
Raw Permalink Normal View History

2025-03-08 23:34:19 +01:00
.file-icon {
2025-03-09 10:18:12 +01:00
-gtk-icon-size: 24px;
}
.unwatched {
color: #666;
}
.in-progress {
color: #ff0;
}
.completed {
color: #0f0;
2025-03-08 23:34:19 +01:00
}
2025-03-11 20:13:15 +01:00
#file-list {
margin: 8px;
margin-top: 122px;
border-radius: 4px;
box-shadow: rgba(32, 32, 32, 0.5) 0px 0px 4px;
}
#file-list > row {
padding: 8px;
font-size: 24px;
font-family: monospace;
}
#thumbnail-picture {
margin: 16px;
margin-top: 32px;
margin-right: 8px;
border-radius: 4px;
box-shadow: rgba(32, 32, 32, 0.5) 0px 0px 4px;
background: #444;
}
2025-03-11 19:02:15 +01:00
#overlay {
2025-03-08 21:14:30 +01:00
background-color: black;
}
2025-03-08 21:51:44 +01:00
2025-03-11 19:02:15 +01:00
#overlay-message {
2025-03-08 21:51:44 +01:00
color: white;
2025-03-08 22:32:47 +01:00
font-size: 24px;
2025-03-08 21:51:44 +01:00
font-family: monospace;
background-color: rgba(32, 32, 32, 0.5);
2025-03-08 22:32:47 +01:00
padding: 24px;
border-radius: 8px;
margin: 32px;
2025-03-08 21:51:44 +01:00
}
2025-03-09 22:23:22 +01:00
2025-03-11 19:02:15 +01:00
#main-clock,
#overlay-clock {
2025-03-09 22:52:44 +01:00
color: white;
font-size: 48px;
font-family: monospace;
2025-03-11 14:13:20 +01:00
padding: 12px;
2025-03-11 20:13:15 +01:00
box-shadow: rgba(32, 32, 32, 0.5) 0px 0px 4px;
background-color: rgba(32, 32, 32, 1);
border-bottom-right-radius: 8px;
2025-03-11 14:13:20 +01:00
}
2025-03-11 19:02:15 +01:00
#overlay-clock {
2025-03-11 20:13:15 +01:00
background-color: rgba(64, 64, 64, 0.5);
border-bottom-right-radius: 8px;
}
#progressbar {
margin-left: 64px;
margin-right: 64px;
margin-bottom: 32px;
border-radius: 0px;
box-shadow: rgba(32, 32, 32, 0.5) 0px 0px 8px;
background: rgba(32, 32, 32, 0.5);
border: 0px;
}
#progressbar trough {
min-height: 32px;
border-radius: 0px;
padding: 2px;
border: 2px solid #fff;
background: transparent;
}
#progressbar progress {
border-radius: 0px;
min-height: 32px;
background: #fff;
border: 0px;
2025-03-09 22:52:44 +01:00
}