maotube/public/style.css

142 lines
2.2 KiB
CSS
Raw Normal View History

2024-01-18 23:45:23 +00:00
*, *::before, *::after {
box-sizing: border-box;
2024-02-10 23:54:43 +00:00
appearance: none;
2024-01-18 23:45:23 +00:00
}
:root {
color-scheme: light dark;
2024-02-10 23:28:33 +00:00
2024-02-10 23:54:43 +00:00
--red: #c51e0e;
2024-02-10 23:32:50 +00:00
}
2024-01-18 23:45:23 +00:00
body {
margin: 0 auto;
2024-01-19 20:56:47 +00:00
padding: 0;
2024-01-18 23:55:28 +00:00
text-align: center;
2024-02-10 23:54:43 +00:00
}
nav {
margin-bottom: 20px;
}
input::file-selector-button {
appearance: none;
}
#search-form {
display: inline-block;
2024-01-18 23:45:23 +00:00
}
2024-01-19 02:10:56 +00:00
.mao-error {
display: flex;
flex-direction: column;
background: url("/chairman_1.jpg");
background-size: auto 600px;
background-repeat: no-repeat;
background-position: center center;
height: 600px;
}
.hidden {
display: none;
}
.mao-error p {
2024-02-10 23:28:33 +00:00
color: white;
2024-01-19 02:10:56 +00:00
text-transform: uppercase;
font-weight: bold;
font-family: "Impact", "Bebas", "League Gothic", "Oswald", "Coluna", "Ubuntu Condensed", system-ui, sans-serif;
2024-01-19 20:56:47 +00:00
text-shadow:
2024-01-19 02:10:56 +00:00
3px 3px 0 black,
-3px -3px 0 black,
3px -3px 0 black,
-3px 3px 0 black,
-3px 0px 0 black,
3px 0px 0 black,
0px 3px 0 black,
0px -3px 0 black;
font-size: 2em;
}
.mao-error p:last-child {
margin-top: auto;
}
2024-02-10 23:28:33 +00:00
#video-list {
2024-01-19 02:10:56 +00:00
padding: 0;
list-style: none;
2024-02-10 23:54:43 +00:00
width: 100%;
max-width: 800px;
margin: auto;
2024-01-19 02:10:56 +00:00
}
2024-01-19 03:22:22 +00:00
#video-player {
height: 60vh;
width: 100%;
background-color: black;
}
#video-result {
width: 106vh;
display: none;
text-align: left;
margin: auto;
2024-01-19 03:22:22 +00:00
}
2024-01-19 20:56:47 +00:00
2024-02-10 23:02:33 +00:00
.video-item {
2024-02-10 23:54:43 +00:00
padding: 0.5rem;
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 2rem;
text-align: left;
background-color: rgba(255, 255, 255, 0.3);
border: 1px solid black;
2024-02-10 23:02:33 +00:00
}
2024-02-10 23:32:50 +00:00
@media (prefers-color-scheme: dark) {
2024-02-10 23:54:43 +00:00
.video-item {
background-color: rgba(0, 0, 0, 0.3);
}
2024-02-10 23:32:50 +00:00
}
2024-02-10 23:28:33 +00:00
.video-item .video-image {
2024-02-10 23:54:43 +00:00
position: relative;
width: 200px;
height: 113px;
overflow: hidden;
background-color: black;
2024-02-10 23:02:33 +00:00
}
2024-02-10 23:28:33 +00:00
.video-item .video-image img {
2024-02-10 23:54:43 +00:00
position: absolute;
inset: 0;
width: 100%;
height: 100%;
2024-02-10 23:28:33 +00:00
}
.video-item .shadow {
2024-02-10 23:54:43 +00:00
object-fit: cover;
filter: blur(0.25rem) brightness(50%);
2024-02-10 23:28:33 +00:00
}
.video-item .non-shadow {
2024-02-10 23:54:43 +00:00
object-fit: contain;
2024-02-10 23:28:33 +00:00
}
2024-02-10 23:02:33 +00:00
.video-item .video-info {
2024-02-10 23:54:43 +00:00
padding-block: 0.5em;
2024-02-10 23:02:33 +00:00
}
.video-item a {
2024-02-10 23:54:43 +00:00
font-size: 1.4em;
font-weight: bold;
2024-02-10 23:02:33 +00:00
}
2024-02-10 23:28:33 +00:00
a {
2024-02-10 23:54:43 +00:00
color: var(--red);
2024-02-10 23:28:33 +00:00
}