bigly-chat/static/main.css

289 lines
4.4 KiB
CSS
Raw Normal View History

2024-10-19 21:28:52 -04:00
:root {
--black: rgb(16, 16, 16);
--gray: rgb(38, 38, 38);
--white: rgb(240, 240, 240);
--primary-dark: rgb(230, 78, 78);
--primary-light: rgb(255, 200, 200);
--elem-width: min(800px, 90vw);
--elem-height: 300px;
--border-radius: 15px;
color: var(--white);
background: var(--black);
font-family: system-ui, sans-serif;
}
2024-09-08 05:04:57 -04:00
2024-10-19 21:28:52 -04:00
body {
2024-09-08 05:04:57 -04:00
display: flex;
flex-direction: column;
align-items: center;
2024-10-22 01:29:15 -04:00
overflow-x: hidden;
2024-10-19 21:28:52 -04:00
margin-top: 0;
2024-09-08 05:04:57 -04:00
}
2024-10-19 21:28:52 -04:00
.banner {
display: flex;
flex-direction: column;
justify-content: center;
2024-09-08 05:04:57 -04:00
2024-10-19 21:28:52 -04:00
margin-bottom: calc(-1 * var(--elem-height));
}
2024-09-08 05:04:57 -04:00
2024-10-19 21:28:52 -04:00
.banner-background {
border-radius: var(--border-radius);
background-color: var(--gray);
opacity: 30%;
object-fit: cover;
}
2024-09-08 05:04:57 -04:00
2024-10-19 21:28:52 -04:00
.banner-background,
.banner-content {
height: var(--elem-height);
overflow-y: auto;
2024-09-08 05:04:57 -04:00
}
2024-10-19 21:28:52 -04:00
.banner-content {
margin-left: 10px;
margin-right: 10px;
position: relative;
top: calc(-1 * var(--elem-height));
2024-09-08 05:04:57 -04:00
}
2024-10-19 21:28:52 -04:00
.header {
2024-10-25 20:48:11 -04:00
z-index: 5;
2024-10-19 21:28:52 -04:00
position: sticky;
top: 0;
display: flex;
2024-09-08 05:04:57 -04:00
2024-10-19 21:28:52 -04:00
background: var(--gray);
color: var(--white);
2024-09-08 05:04:57 -04:00
2024-10-19 21:28:52 -04:00
padding: 10px;
margin-bottom: 10px;
2024-09-22 07:35:03 -04:00
2024-10-19 21:28:52 -04:00
align-items: center;
2024-09-22 07:35:03 -04:00
2024-10-19 21:28:52 -04:00
font-size: 1.2em;
2024-09-20 08:38:33 -04:00
2024-10-19 21:28:52 -04:00
width: calc(100vw - 20px);
2024-09-19 05:04:03 -04:00
}
2024-10-19 21:28:52 -04:00
.header-link,
.link {
2024-09-08 05:04:57 -04:00
text-decoration: none;
2024-10-19 21:28:52 -04:00
font-weight: bold;
color: var(--white);
2024-09-08 05:04:57 -04:00
}
2024-10-19 21:28:52 -04:00
.header-link {
padding-left: 0.5em;
margin-left: 0.5em;
border-left: solid var(--white) 2px;
2024-09-08 05:04:57 -04:00
}
2024-10-19 21:28:52 -04:00
.header-img {
height: 2em;
width: 2em;
object-fit: cover;
2024-09-08 05:04:57 -04:00
}
2024-10-19 21:28:52 -04:00
.content,
.form,
.banner,
.banner-background {
width: var(--elem-width);
}
2024-09-08 05:04:57 -04:00
2024-10-19 21:28:52 -04:00
.form {
grid-template-columns: 0.7fr 1fr;
display: grid;
2024-09-08 05:04:57 -04:00
}
.form-key {
margin-right: 10px;
}
2024-10-19 21:28:52 -04:00
.form-input,
.comment,
2024-10-25 20:48:11 -04:00
.form-button,
.content {
2024-10-19 21:28:52 -04:00
border: solid var(--gray) 3px;
background: var(--black);
border-radius: var(--border-radius);
2024-09-08 05:04:57 -04:00
2024-10-19 21:28:52 -04:00
color: var(--white);
padding: 0.5rem;
margin-bottom: 0.5rem;
text-decoration: none;
2024-10-19 23:56:58 -04:00
}
2024-09-08 05:04:57 -04:00
2024-10-25 20:48:11 -04:00
.content {
margin-top: 10px;
width: calc(var(--elem-width) - 1rem);
}
2024-10-19 23:56:58 -04:00
.form-button {
2024-09-08 05:04:57 -04:00
font-weight: bold;
2024-09-19 04:31:30 -04:00
}
2024-10-19 21:28:52 -04:00
.form-button {
background: var(--primary-dark);
border-color: var(--primary-light);
2024-09-19 04:31:30 -04:00
}
2024-10-19 21:28:52 -04:00
.form-message {
2024-10-25 20:48:11 -04:00
margin-top: 10px;
2024-10-19 21:28:52 -04:00
font-style: italic;
2024-09-19 04:40:05 -04:00
}
2024-10-19 21:28:52 -04:00
.avatar {
display: flex;
2024-09-19 05:44:24 -04:00
}
2024-10-19 21:28:52 -04:00
.avatar-img {
width: 50px;
height: 50px;
margin-right: 15px;
2024-09-19 18:18:44 -04:00
}
2024-09-19 18:38:24 -04:00
2024-10-19 21:28:52 -04:00
.content-header {
width: var(--elem-width);
}
2024-09-19 05:58:01 -04:00
.videos {
display: flex;
flex-direction: row;
flex-wrap: wrap;
2024-09-19 18:18:44 -04:00
justify-content: space-around;
2024-10-19 21:28:52 -04:00
2024-10-23 09:13:38 -04:00
width: 90vw;
2024-09-19 05:58:01 -04:00
}
2024-10-25 20:58:51 -04:00
.controls {}
2024-09-20 08:38:33 -04:00
2024-09-19 18:38:24 -04:00
.videos a {
2024-10-19 21:28:52 -04:00
color: var(--dark);
}
2024-09-20 08:38:33 -04:00
.progressbar {
2024-10-19 21:28:52 -04:00
background-color: var(--black);
border: solid var(--primary-light) 2px;
2024-09-19 18:38:24 -04:00
border-radius: 13px;
padding: 3px;
margin: 0;
position: relative;
top: -40px;
2024-10-19 21:28:52 -04:00
width: calc(var(--elem-width) - 7px);
2024-09-20 16:51:44 -04:00
max-width: 89vmin;
2024-09-19 18:38:24 -04:00
}
2024-09-20 08:38:33 -04:00
.progressbar>div {
2024-10-19 21:28:52 -04:00
background-color: var(--primary-dark);
2024-09-19 18:38:24 -04:00
width: 40%;
height: 20px;
border-radius: 10px;
2024-09-20 08:38:33 -04:00
}
.controls img {
2024-10-25 20:58:51 -04:00
height: 45px;
2024-09-20 08:38:33 -04:00
width: 45px;
2024-10-25 20:58:51 -04:00
object-fit: contain;
2024-09-22 07:35:03 -04:00
margin: 5px;
}
2024-10-19 23:56:58 -04:00
.video {
border: solid var(--gray) 3px;
border-radius: 5px;
background: var(--dark);
font-size: 1rem;
padding: 0.5rem;
margin-bottom: 0.5rem;
2024-10-25 20:48:11 -04:00
width: 135px;
height: 140px;
2024-10-22 01:29:15 -04:00
overflow: hidden;
}
2024-10-25 20:58:51 -04:00
2024-10-22 01:29:15 -04:00
.video div {
max-height: 22px;
overflow: hidden;
2024-10-19 23:56:58 -04:00
}
2024-10-25 20:58:51 -04:00
2024-10-19 23:56:58 -04:00
.video img {
2024-10-25 20:48:11 -04:00
width: 135px;
height: 90px;
object-fit: cover;
2024-10-19 23:56:58 -04:00
}
2024-09-22 07:35:03 -04:00
.video-wrapper.full {
2024-10-19 21:28:52 -04:00
background: rgba(0, 0, 0, 0.5);
2024-09-22 07:35:03 -04:00
width: 100vw;
height: 100vh;
position: absolute;
top: 0;
left: 0;
2024-09-20 08:38:33 -04:00
}
2024-10-25 20:58:51 -04:00
2024-10-19 23:56:58 -04:00
video {
2024-10-25 20:58:51 -04:00
width: 180px;
height: 200px;
overflow-y: auto;
font-size: 1rem;
margin-bottom: 0.5rem;
border: solid var(--gray) 3px;
border-radius: var(--border-radius);
2024-10-19 23:56:58 -04:00
width: var(--elem-width);
height: auto;
max-height: 50vh;
max-width: 90vmin;
2024-10-19 21:28:52 -04:00
}
2024-10-25 20:58:51 -04:00
2024-10-19 21:28:52 -04:00
.full video {
width: 100vw;
height: 80vh;
max-width: none;
max-height: none;
border: none;
2024-09-22 22:15:55 -04:00
}
2024-10-19 21:28:52 -04:00
.full .progressbar {
width: 95vw;
max-width: 95vw;
margin: auto;
2024-09-27 03:59:23 -04:00
}
2024-10-19 21:28:52 -04:00
.controls {
2024-10-25 20:58:51 -04:00
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
2024-10-19 21:28:52 -04:00
border: solid var(--gray) 3px;
border-radius: 5px;
background: var(--dark);
2024-10-25 20:58:51 -04:00
margin-top: -30px;
2024-10-19 21:28:52 -04:00
font-size: 1rem;
padding: 0.5rem;
margin-bottom: 0.5rem;
2024-09-27 03:59:23 -04:00
}
2024-10-25 20:48:11 -04:00
.form-input {
font-family: system-ui, sans-serif;
2024-10-25 20:58:51 -04:00
}
img {
user-select: none;
2024-10-25 20:48:11 -04:00
}