watch-party/frontend/styles.css

357 lines
6.4 KiB
CSS
Raw Normal View History

2022-02-15 22:19:48 +00:00
* {
box-sizing: border-box;
}
2021-10-24 22:48:10 +00:00
:root {
--bg-rgb: 28, 23, 36;
--fg-rgb: 234, 234, 248;
--accent-rgb: 181, 127, 220;
--fg: rgb(var(--fg-rgb));
--bg: rgb(var(--bg-rgb));
--default-user-color: rgb(126, 208, 255);
--accent: rgb(var(--accent-rgb));
2022-02-16 13:48:25 +00:00
--fg-transparent: rgba(var(--fg-rgb), 0.25);
--bg-transparent: rgba(var(--bg-rgb), 0.25);
2022-02-16 00:30:22 +00:00
--autocomplete-bg: linear-gradient(
2022-02-16 15:48:34 +00:00
var(--fg-transparent),
var(--fg-transparent)
2022-02-16 00:30:22 +00:00
),
linear-gradient(var(--bg), var(--bg));
2021-10-24 22:48:10 +00:00
}
html {
background-color: var(--bg);
color: var(--fg);
font-size: 1.125rem;
font-family: sans-serif;
}
html,
body {
margin: 0;
padding: 0;
overflow: hidden;
overscroll-behavior: none;
width: 100%;
height: 100%;
}
body {
display: flex;
flex-direction: column;
2021-10-24 22:48:10 +00:00
}
video {
2021-10-25 01:59:52 +00:00
display: block;
width: 100%;
height: 100%;
object-fit: contain;
}
2021-10-25 01:59:52 +00:00
#video-container {
flex-grow: 0;
flex-shrink: 1;
display: none;
2021-10-24 22:48:10 +00:00
}
a {
color: var(--accent);
}
label {
display: block;
}
input[type="url"],
input[type="text"] {
background: #fff;
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, 0.12);
border-radius: 6px;
color: rgba(0, 0, 0, 0.8);
display: block;
margin: 0.5em 0;
padding: 0.5em 1em;
line-height: 1.5;
font-family: sans-serif;
font-size: 1em;
2022-02-15 22:19:48 +00:00
width: 100%;
2021-10-24 22:48:10 +00:00
resize: none;
overflow-x: wrap;
overflow-y: scroll;
}
button {
background-color: var(--accent);
border: var(--accent);
border-radius: 6px;
2022-02-15 22:19:48 +00:00
color: #fff;
2021-10-24 22:48:10 +00:00
padding: 0.5em 1em;
display: inline-block;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
font-family: sans-serif;
font-size: 1em;
2022-02-15 22:19:48 +00:00
width: 100%;
2021-10-24 22:48:10 +00:00
user-select: none;
border: 1px solid rgba(0, 0, 0, 0);
line-height: 1.5;
cursor: pointer;
2022-02-15 22:19:48 +00:00
margin: 0.5em 0;
}
button:disabled {
filter: saturate(0.75);
opacity: 0.75;
cursor: default;
2021-10-24 22:48:10 +00:00
}
button.small-button {
font-size: 0.75em;
padding-top: 0;
padding-bottom: 0;
}
.subtitle-track-group {
display: flex;
}
.subtitle-track-group > * {
margin-top: 0 !important;
margin-bottom: 0 !important;
margin-right: 1ch !important;
}
2021-11-11 17:26:30 +00:00
#pre-join-controls,
#create-controls {
2022-02-15 22:19:48 +00:00
margin: 0;
flex-grow: 1;
overflow-y: auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
2021-10-24 22:48:10 +00:00
}
2021-11-11 17:26:30 +00:00
#join-session-form,
#create-session-form {
2022-02-15 22:19:48 +00:00
width: 500px;
max-width: 100%;
padding: 1rem;
2021-10-24 22:48:10 +00:00
}
2021-10-25 01:59:52 +00:00
#join-session-form > *:first-child,
#create-session-form > *:first-child {
margin-top: 0;
}
2021-11-11 17:26:30 +00:00
#post-create-message {
display: none;
2022-02-15 22:19:48 +00:00
width: 100%;
2021-11-11 17:26:30 +00:00
font-size: 0.85em;
}
2021-10-25 01:59:52 +00:00
#chatbox-container {
display: none;
}
2021-11-05 13:07:21 +00:00
2021-11-23 00:48:53 +00:00
.chat-message {
overflow-wrap: break-word;
}
2022-02-16 00:30:22 +00:00
.chat-message > strong,
#viewer-list strong {
color: var(--user-color, var(--default-user-color));
}
2022-02-18 17:31:34 +00:00
/*
@supports (-webkit-background-clip: text) {
2022-02-16 00:30:22 +00:00
.chat-message > strong,
#viewer-list strong {
background: linear-gradient(var(--fg-transparent), var(--fg-transparent)),
linear-gradient(
var(--user-color, var(--default-user-color)),
var(--user-color, var(--default-user-color))
);
-webkit-background-clip: text;
color: transparent !important;
}
}
2022-02-18 17:31:34 +00:00
*/
.chat-message.user-join,
.chat-message.user-leave,
2022-02-18 19:48:36 +00:00
.chat-message.ping,
.chat-message.user-kissed {
2021-11-05 13:07:21 +00:00
font-style: italic;
}
2022-02-18 19:48:36 +00:00
.chat-message.user-kissed {
color: #ff6094;
}
.chat-message.set-time,
.chat-message.set-playing {
font-style: italic;
text-align: right;
font-size: 0.85em;
}
2022-02-16 00:30:22 +00:00
.chat-message.command-message {
font-size: 0.85em;
}
.chat-message.set-time > strong,
.chat-message.set-playing > strong {
color: unset !important;
2021-11-05 13:07:21 +00:00
}
.emoji {
width: 2ch;
height: 2ch;
object-fit: contain;
margin-bottom: -0.35ch;
}
2021-11-05 13:07:21 +00:00
#chatbox {
padding: 0.5em 1em;
2021-11-05 13:07:21 +00:00
overflow-y: scroll;
flex-shrink: 1;
flex-grow: 1;
2021-11-05 13:07:21 +00:00
}
2022-02-13 17:23:20 +00:00
#viewer-list {
padding: 0.5em 1em;
2022-02-13 17:23:20 +00:00
/* TODO: turn this into max-height instead of fixed height without breaking the chatbox height */
overflow-y: scroll;
2022-02-16 13:48:25 +00:00
border-bottom: var(--fg-transparent);
2022-02-13 17:23:20 +00:00
border-bottom-style: solid;
max-height: 4rem;
flex-shrink: 0;
2022-02-13 17:23:20 +00:00
}
2021-11-05 13:07:21 +00:00
#chatbox-container {
2022-02-16 13:48:25 +00:00
background-color: var(--bg);
flex-direction: column;
flex-grow: 1;
flex-shrink: 1;
2022-02-17 22:39:07 +00:00
flex-basis: 36ch;
min-width: 36ch;
overflow: hidden;
2021-11-05 13:07:21 +00:00
}
#chatbox-send {
padding: 0 1em;
2021-11-05 13:07:21 +00:00
padding-bottom: 0.5em;
position: relative;
2021-11-05 13:07:21 +00:00
}
#chatbox-send > input {
font-size: 0.75em;
width: 100%;
}
#emoji-autocomplete {
position: absolute;
bottom: 3.25rem;
background-image: var(--autocomplete-bg);
border-radius: 6px;
2022-02-16 13:48:25 +00:00
width: calc(100% - 2rem);
2022-02-16 00:30:22 +00:00
max-height: 8.5rem;
overflow-y: auto;
clip-path: inset(0 0 0 0 round 8px);
}
#emoji-autocomplete:empty {
display: none;
}
.emoji-option {
background: transparent;
font-size: 0.75rem;
text-align: left;
2022-02-16 00:30:22 +00:00
margin: 0 0.25rem;
border-radius: 4px;
2022-02-16 00:30:22 +00:00
width: calc(100% - 0.5rem);
display: flex;
align-items: center;
padding: 0.25rem 0.5rem;
scroll-margin: 0.25rem;
}
.emoji-option:first-child {
margin-top: 0.25rem;
}
.emoji-option:last-child {
2022-02-18 17:23:32 +00:00
margin-bottom: 0.25rem;
}
2022-02-15 22:19:48 +00:00
2022-02-16 00:30:22 +00:00
.emoji-option .emoji {
width: 1.25rem;
height: 1.25rem;
margin: 0 0.5rem 0 0;
2022-02-16 15:30:47 +00:00
font-size: 2.25ch;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
2022-02-18 17:31:34 +00:00
flex-shrink: 0;
}
2022-02-15 22:19:48 +00:00
.emoji-name {
overflow: hidden;
text-overflow: ellipsis;
}
2022-02-16 00:30:22 +00:00
.emoji-option.selected {
background: var(--fg-transparent);
}
2022-02-15 22:19:48 +00:00
#join-session-colour {
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
border: none;
padding: 0;
border-radius: 6px;
overflow: hidden;
margin: 0.5em 0;
height: 2rem;
width: 2.5rem;
cursor: pointer;
}
2022-02-16 00:30:22 +00:00
input[type="color"]::-moz-color-swatch,
input[type="color"]::-webkit-color-swatch,
input[type="color"]::-webkit-color-swatch-wrapper {
/* This *should* be working in Chrome, but it doesn't for reasons that are beyond me. */
2022-02-15 22:19:48 +00:00
border: none;
margin: 0;
padding: 0;
}
@media (min-aspect-ratio: 4/3) {
body {
flex-direction: row;
}
#chatbox-container {
height: 100vh !important;
flex-grow: 0;
}
#video-container {
flex-grow: 1;
}
#chatbox {
2022-02-13 17:23:20 +00:00
height: calc(100vh - 5em - 4em) !important;
}
2021-11-05 13:07:21 +00:00
}