1
Fork 0
poke/css/poketube.css

725 lines
14 KiB
CSS
Raw Normal View History

2022-11-05 05:33:43 -04:00
/*
This Source Code Form is subject to the terms of the GNU General Public License:
2022-11-07 12:58:27 -05:00
Copyright (C) 2021-202x POKETUBE (https://github.com/iamashley0/poketube)
2022-11-05 05:33:43 -04:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see https://www.gnu.org/licenses/.
*/
2023-01-08 09:42:40 -05:00
2022-12-08 13:27:48 -05:00
:root {
/* text */
--text-link: #0ab7f0;
--text-link-visited: #00c0ff;
--text-color: #ffffff;
--text-font-primary: "PokeTube Flex";
--text-header-weight: 1000;
/* Divs */
--div-gradient: linear-gradient(
2022-12-03 06:37:44 -05:00
135deg,
#f97794 10%,
#623aa2 100%,
#8e6f7e 100%
);
2022-12-08 13:27:48 -05:00
--div-border-color: #7c44a0;
--div-prim-bg: #1c1c1c;
--div-second-bg: #1a1a1a;
--div-transparent-bg: #0009;
2022-12-24 07:43:06 -05:00
2022-12-14 14:03:30 -05:00
--gutter: 1.67em; /* gutter variable - see line 330 */
2022-12-24 07:43:06 -05:00
/* PTD start */
2022-12-14 10:16:17 -05:00
--video-player-height-max: 720px;
2022-12-14 14:03:30 -05:00
--video-player-width-max: 1280px;
2022-12-16 09:44:57 -05:00
2022-12-24 07:43:06 -05:00
/* poketube color palette */
--ptc-very-red: #ff0000;
--ptc-very-blue: #0000ff;
--ptc-very-green: #00ff00;
--ptc-very-pink: #ff00ff;
--ptc-very-yellow: #ffff00;
--ptc-cyan: #00ffff;
--ptc-href-color: #0ab7f0;
--ptc-transparent: #0009;
--ptc-purple-borders: #7c44a0;
--ptc-gradient: linear-gradient(
135deg,
#f97794 10%,
#623aa2 100%,
#8e6f7e 100%
);
2023-01-01 13:14:35 -05:00
--chip-background-hover: #3f3f3f;
2022-12-24 07:43:06 -05:00
2022-12-16 09:44:57 -05:00
--ptd-watch-min-player-height: 360px;
--ptd-watch-width-ratio: 16;
--ptd-watch-height-ratio: 9;
--ptd-watch-sidebar-min-width: 300px;
2022-12-18 10:15:26 -05:00
--ptd-grid-base: 103px;
--ptd-margin-base: 4px;
--ptd-avatar-size: 32px;
--ptd-toolbar-height: 56px;
2023-01-14 03:01:40 -05:00
--ptd-button-spacing: 4px;
2023-01-02 13:05:22 -05:00
/* margins */
2022-12-18 10:15:26 -05:00
--ptd-margin-2x: 8px;
--ptd-margin-3x: 12px;
--ptd-margin-4x: 16px;
--ptd-margin-5x: 20px;
2023-01-07 08:42:21 -05:00
--ptd-margin-6x: 24px; /* default */
2022-12-18 10:15:26 -05:00
--ptd-margin-7x: 28px;
--ptd-margin-8x: 32px;
--ptd-margin-9x: 36px;
--ptd-margin-10x: 40px;
--ptd-margin-11x: 44px;
--ptd-margin-12x: 48px;
--ptd-margin-14x: 56px;
--ptd-margin-16x: 64px;
--ptd-margin-17x: 68px;
--ptd-margin-24x: 96px;
--ptd-margin-25x: 100px;
--ptd-margin-35x: 140px;
2023-01-07 11:27:13 -05:00
2022-12-18 10:15:26 -05:00
--ptd-neg-margin-base: -4px;
--ptd-neg-margin-2x: -8px;
--ptd-neg-margin-3x: -12px;
--ptd-neg-margin-4x: -16px;
--ptd-neg-margin-5x: -20px;
--ptd-neg-margin-6x: -24px;
--ptd-neg-margin-7x: -28px;
--ptd-neg-margin-8x: -32px;
--ptd-neg-margin-10x: -40px;
--ptd-neg-margin-11x: -44px;
--ptd-neg-margin-12x: -48px;
--ptd-neg-margin-14x: -56px;
--ptd-neg-margin-16x: -64px;
--ptd-neg-margin-24x: -96px;
--ptd-neg-margin-25x: -100px;
2022-11-29 12:56:21 -05:00
}
2022-11-05 05:33:43 -04:00
a.class:hover {
text-decoration: underline;
font-weight: bold;
}
2022-11-29 12:56:21 -05:00
2022-11-05 05:33:43 -04:00
summary {
color: gray;
}
2023-01-07 08:42:21 -05:00
2022-11-05 05:33:43 -04:00
summary:hover {
color: white;
}
2022-12-15 10:07:28 -05:00
2022-11-05 05:33:43 -04:00
:visited {
2022-11-29 12:56:21 -05:00
color: var(--text-link-visited);
2022-11-05 05:33:43 -04:00
}
a {
2022-11-29 12:56:21 -05:00
color: var(--text-link);
2022-11-05 05:33:43 -04:00
}
2023-01-13 13:33:40 -05:00
a.avatar {
height: 36px;
margin-left: 6px;
font-size: 0;
}
.video-chnl-info-pill > a:first-child {
margin-right: -8px;
}
2023-01-14 03:01:40 -05:00
.video-info-buttons.pill > .engagement {
margin-right: 2px;
}
2023-01-17 16:06:38 -05:00
.video-info-buttons.pill > div:nth-child(2) > .new-button,
.button-encryption {
2023-01-14 03:01:40 -05:00
margin-right: 2px;
2023-01-13 13:48:42 -05:00
}
2022-11-05 05:33:43 -04:00
.video > .info > .title {
2022-12-03 06:37:44 -05:00
font-family: var(--text-font-primary);
2022-11-29 12:56:21 -05:00
width: 10em;
2022-11-05 05:33:43 -04:00
}
2022-12-31 09:07:55 -05:00
.dropdown__menu > a {
2023-01-01 13:14:35 -05:00
text-decoration: none;
2022-12-31 09:07:55 -05:00
}
.video-info-panel > .video-title > a {
white-space: nowrap;
}
.video-info-panel > .video-title {
text-overflow: ellipsis;
overflow: hidden;
max-width: max-content;
display: -webkit-box;
2022-11-14 19:56:59 -05:00
word-break: break-all;
2023-01-01 11:23:07 -05:00
font-family: var(--text-font-primary) !important;
2023-01-02 12:28:57 -05:00
font-stretch: expanded;
font-weight: 850 !important;
}
2022-11-05 05:33:43 -04:00
.video-sub-info.description {
2022-12-08 13:27:48 -05:00
box-sizing: border-box;
min-width: 100%;
2022-11-06 09:47:23 -05:00
font-weight: 600;
2022-11-15 10:32:37 -05:00
margin-top: 1em !important;
2022-11-05 05:33:43 -04:00
border-radius: 21px;
2022-12-29 15:28:56 -05:00
margin-bottom: 0.1em;
2022-11-05 05:33:43 -04:00
font-stretch: expanded;
justify-self: center;
2022-12-03 06:37:44 -05:00
font-family: var(--text-font-primary);
2022-11-05 05:33:43 -04:00
border-style: solid;
}
2022-11-06 05:25:18 -05:00
.video-sub-info.description > .video-title {
2022-12-03 06:37:44 -05:00
font-family: var(--text-font-primary);
2022-11-06 05:25:18 -05:00
font-weight: 1000;
font-stretch: extra-expanded;
font-size: larger;
}
2022-11-05 05:33:43 -04:00
.recommended-list {
2022-12-03 06:37:44 -05:00
background-color: var(--div-prim-bg);
2023-01-07 08:42:21 -05:00
border-radius: 1.5em;
2022-11-05 05:33:43 -04:00
margin: 10px;
2022-11-29 16:26:50 -05:00
margin-top: 0px;
2022-12-14 11:54:38 -05:00
margin-left: 0px;
2022-12-14 14:03:30 -05:00
height: -moz-fit-content;
2022-11-05 05:33:43 -04:00
height: fit-content;
justify-self: center;
2022-12-14 11:40:16 -05:00
margin-right: -0.9em;
2022-11-29 12:56:21 -05:00
/* width: min-content;*/
2022-12-03 06:37:44 -05:00
border: var(--div-border-color);
2022-11-05 05:33:43 -04:00
border-style: solid;
2022-11-29 12:56:21 -05:00
max-width: 371px;
2022-12-01 12:20:04 -05:00
width: max-content;
2022-11-05 05:33:43 -04:00
}
2022-11-05 08:27:18 -04:00
.video-views {
2022-11-12 07:51:50 -05:00
white-space: nowrap;
2022-11-05 08:27:18 -04:00
}
2022-11-05 05:33:43 -04:00
.video-info-panel.gradient {
2022-11-06 16:07:59 -05:00
padding: 12px;
2022-11-05 05:33:43 -04:00
border-radius: 11px;
2023-01-07 19:46:47 -05:00
background-image: var(--div-gradient) !important;
2022-11-05 05:33:43 -04:00
display: block;
2022-12-08 13:27:48 -05:00
box-sizing: border-box;
min-width: 100%;
2022-11-05 05:33:43 -04:00
}
.video-info-pill-channelname {
color: #fff;
word-wrap: break-word;
2022-12-03 06:37:44 -05:00
font-family: var(--text-font-primary);
2022-11-06 05:25:18 -05:00
font-weight: 1000;
font-stretch: ultra-expanded;
2022-11-05 05:33:43 -04:00
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
line-clamp: 3;
-webkit-box-orient: vertical;
display: block ruby;
text-overflow: ellipsis;
max-width: 7em;
white-space: nowrap;
2022-11-05 05:33:43 -04:00
}
.comments-author.owner {
margin: 5px;
2023-01-01 11:23:07 -05:00
font-family: var(--text-font-primary);
font-weight: 1000;
font-stretch: ultra-expanded;
2022-11-05 05:33:43 -04:00
white-space: -moz-pre-wrap !important;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
white-space: pre-wrap;
word-wrap: anywhere;
white-space: -webkit-pre-wrap;
word-break: break-all;
white-space: normal;
background: #4a4a4a;
padding: 4px;
border-radius: 6px;
width: auto;
height: 1.2em;
justify-self: center;
}
.video-chnl-info-pill {
border: 1px solid var(--border-color);
border-radius: 4px;
display: grid;
grid-template-columns: 48px max-content 1fr min-content;
grid-template-rows: 16px 16px;
grid-auto-columns: 1fr;
column-gap: 8px;
row-gap: 4px;
grid-auto-flow: row;
grid-template-areas: "avatar name . subscribe-button" "avatar subs . subscribe-button";
padding: 8px;
border-radius: 35px;
font-family: Inter;
clear: both;
2022-11-06 16:07:59 -05:00
margin-top: 1.1em;
2023-01-13 13:33:40 -05:00
padding: 5px 0;
2022-11-06 06:00:46 -05:00
background: #0009;
2022-11-05 05:33:43 -04:00
margin-right: -13px;
width: fit-content;
height: fit-content;
2022-12-14 14:03:30 -05:00
width: -moz-fit-content;
2022-12-10 14:58:54 -05:00
height: -moz-fit-content;
2022-11-05 05:33:43 -04:00
border-radius: 43px;
font-size: 15px;
margin-right: auto;
display: flex;
border: none;
}
.video-info-buttons.pill {
border-radius: 16px;
padding: 4px;
border-style: none;
min-height: 34px;
2022-11-06 05:25:18 -05:00
grid-area: buttons;
display: flex;
flex-direction: row;
column-gap: var(--ptd-button-spacing);
2022-11-06 05:25:18 -05:00
height: min-content;
2022-12-10 14:58:54 -05:00
width: -moz-fit-content;
2022-11-05 05:33:43 -04:00
width: fit-content;
text-align: right;
margin-left: auto;
margin-right: inherit;
justify-content: center;
justify-items: center;
justify-self: center;
margin-top: -2.9em;
2023-01-01 11:23:07 -05:00
font-family: var(--text-font-primary);
font-stretch: expanded;
2022-11-05 05:33:43 -04:00
}
.comments-author {
margin: 7px;
2023-01-01 11:23:07 -05:00
font-family: var(--text-font-primary);
font-weight: 1000;
font-stretch: ultra-expanded;
2022-11-05 05:33:43 -04:00
white-space: -moz-pre-wrap !important;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
white-space: pre-wrap;
word-wrap: anywhere;
white-space: -webkit-pre-wrap;
word-break: break-all;
white-space: normal;
}
.comments-class-or-something-i-cant-find-a-name-lol {
2022-12-29 15:28:56 -05:00
background: var(--div-prim-bg);
border-radius: 2em;
2022-11-05 05:33:43 -04:00
padding: 10px;
padding-top: 0;
margin: auto;
2022-12-03 06:37:44 -05:00
border: var(--div-border-color);
2022-11-05 05:33:43 -04:00
border-style: solid;
}
2022-11-05 07:36:35 -04:00
2022-11-06 06:00:46 -05:00
.subscribe-button {
color: red;
margin: auto;
background: white;
border-radius: 2em;
margin-right: 6px;
text-transform: initial;
}
.subscribe-button > a {
2023-01-08 09:42:40 -05:00
color: black !important;
font-family: var(--text-font-primary);
font-stretch: ultra-expanded;
font-weight: 900;
2022-11-06 06:00:46 -05:00
}
2022-11-05 07:36:35 -04:00
.video > .thumbnail > .video-length {
font-size: smaller;
background-color: #0008;
color: #fff;
padding: 2px;
border-radius: 3px;
2022-12-03 06:37:44 -05:00
font-family: var(--text-font-primary);
2022-11-05 07:36:35 -04:00
font-stretch: 100%;
font-weight: 600;
2022-11-06 05:25:18 -05:00
}
2022-11-21 11:17:50 -05:00
2023-01-01 11:23:07 -05:00
.comment {
font-family: var(--text-font-primary);
font-stretch: expanded;
font-weight: 600 !important;
}
2022-11-21 11:17:50 -05:00
.tags {
display: flex;
flex-direction: row;
overflow-x: auto;
column-gap: 3px;
}
.tag {
background: #333;
padding: 5px;
border-radius: 4px;
word-break: break-all;
white-space: nowrap;
}
2022-11-24 15:28:18 -05:00
.new-button {
2022-11-29 12:56:21 -05:00
background: #0009;
border-radius: 2em;
padding-right: 1em;
display: flex;
justify-content: center;
align-items: center;
align-content: center;
align-self: center;
2022-11-24 15:28:18 -05:00
}
.pill-button {
2022-11-29 12:56:21 -05:00
margin-left: 1em;
2022-11-24 15:28:18 -05:00
}
.vertical {
border-left: 1px solid gray;
height: 15px;
}
2022-12-08 13:27:48 -05:00
.date-publish {
margin: 0;
margin-top: 0px;
margin-top: 12px;
font-size: small;
color: gray !important;
2022-12-14 14:03:30 -05:00
white-space: nowrap;
2022-12-08 13:27:48 -05:00
}
.video > .thumbnail {
border: 1px white solid;
}
2022-12-14 10:16:17 -05:00
.video-player-container {
margin: inherit;
2022-12-14 14:03:30 -05:00
max-width: 100%;
min-width: 100%;
width: 100%;
max-height: 100%;
2023-01-02 12:28:57 -05:00
aspect-ratio: var(--ptd-watch-width-ratio) / var(--ptd-watch-height-ratio);
2022-12-14 10:16:17 -05:00
}
2022-12-14 11:54:38 -05:00
.watch-page {
2022-12-14 14:21:58 -05:00
display: flex;
2022-12-14 14:03:30 -05:00
gap: var(--gutter);
margin-inline: var(--gutter);
2022-12-14 11:54:38 -05:00
}
2022-12-15 09:31:55 -05:00
2022-12-16 09:44:57 -05:00
@media screen and (min-width: 1400px) {
2022-12-15 09:31:55 -05:00
.watch-page {
2022-12-16 09:44:57 -05:00
max-width: calc(1280px + 3 * var(--ptd-margin-6x));
min-width: calc(
2022-12-18 10:15:26 -05:00
var(--ptd-watch-min-player-height) * var(--ptd-watch-width-ratio) /
var(--ptd-watch-height-ratio) + 3 * var(--ptd-margin-6x) +
var(--ptd-watch-sidebar-min-width)
2022-12-16 09:44:57 -05:00
);
2022-12-15 09:31:55 -05:00
justify-content: center;
margin-left: auto;
margin-right: auto;
2022-12-16 09:44:57 -05:00
gap: var(--gutter);
2022-12-15 09:31:55 -05:00
}
2022-12-15 10:07:28 -05:00
}
2022-12-29 15:28:56 -05:00
.description-new {
grid-area: description;
font-size: 1rem;
color: var(--text-primary);
background: var(--div-prim-bg);
padding: 16px;
border-radius: 1.2em;
border: var(--div-border-color);
border-style: solid;
}
2022-12-31 09:07:55 -05:00
.dropdown {
2023-01-01 13:14:35 -05:00
position: relative;
display: flex;
2022-12-31 09:07:55 -05:00
}
.dropdown > input[type="checkbox"] {
2023-01-01 13:14:35 -05:00
display: none;
2022-12-31 09:07:55 -05:00
}
.dropdown > label {
2023-01-01 13:14:35 -05:00
width: 100%;
height: 100%;
margin: -8px;
padding: 8px;
display: flex;
align-items: center;
justify-content: center;
2022-12-31 09:07:55 -05:00
}
.dropdown__menu {
2023-01-01 13:14:35 -05:00
position: absolute;
z-index: 999;
display: none;
2022-12-31 09:07:55 -05:00
margin-right: 4em;
2023-01-01 13:14:35 -05:00
top: 40px;
padding: 6px 0;
margin: 0;
width: 300px;
border-radius: 8px;
box-shadow: var(--border-color) 0 0 5px;
background-color: var(--context-menu-background);
2022-12-31 09:07:55 -05:00
}
.dropdown__item {
2023-01-01 13:14:35 -05:00
display: flex;
flex-direction: row;
align-items: center;
padding: 0 16px;
height: 40px;
column-gap: 16px;
color: var(--text-primary);
text-decoration: none;
2022-12-31 09:07:55 -05:00
}
.dropdown__item:hover {
2023-01-01 13:14:35 -05:00
background-color: var(--chip-background-hover);
2022-12-31 09:07:55 -05:00
}
.dropdown__item:active {
2023-01-01 13:14:35 -05:00
background-color: var(--chip-background-active);
2022-12-31 09:07:55 -05:00
}
.dropdown > input[type="checkbox"]:checked ~ div,
.dropdown__menu:target {
2023-01-01 13:14:35 -05:00
display: block;
}
2023-01-02 12:28:57 -05:00
.dropdown-button {
position: relative;
display: flex;
}
.dropdown-button > input[type="checkbox"] {
display: none;
}
.dropdown-button > label {
width: 100%;
height: 100%;
padding: 8px;
display: flex;
align-items: center;
justify-content: center;
}
.dropdown-button__menu {
position: absolute;
z-index: 999;
display: none;
margin-right: 4em;
top: 40px;
padding: 6px 0;
margin: 0;
width: 300px;
border-radius: 8px;
box-shadow: var(--border-color) 0 0 5px;
background-color: var(--context-menu-background);
}
.dropdown-button__item {
display: flex;
flex-direction: row;
align-items: center;
padding: 0 16px;
height: 40px;
column-gap: 16px;
color: var(--text-primary);
text-decoration: none;
}
.dropdown-button__item:hover {
background-color: var(--chip-background-hover);
}
.dropdown-button__item:active {
background-color: var(--chip-background-active);
}
.dropdown-button-button > input[type="checkbox"]:checked ~ div,
.dropdown-button-button__menu:target {
display: block;
}
2023-01-13 13:51:16 -05:00
label[for="loggedout-dropdown"] {
2023-01-13 20:45:26 -05:00
cursor: pointer;
2023-01-13 13:51:16 -05:00
}
2023-01-01 13:14:35 -05:00
.new-button.engagement:hover {
background-color: #0009;
}
div.new-button:hover {
background-color: #0008;
}
a.new-button:hover {
background-color: #0008;
}
2023-01-02 12:28:57 -05:00
@media screen and (max-width: 1340px) {
2023-01-02 13:05:22 -05:00
.new-button.button-encryption {
display: none;
2023-01-02 12:28:57 -05:00
}
2023-01-02 13:05:22 -05:00
.new-button.button-lite {
display: none;
2023-01-02 12:28:57 -05:00
}
2023-01-02 13:05:22 -05:00
.new-button.button-dropdown {
display: none;
2023-01-02 12:28:57 -05:00
}
}
@media screen and (min-width: 1340px) {
2023-01-02 13:05:22 -05:00
.new-button.button-encryption {
display: flex;
2023-01-02 12:28:57 -05:00
}
2023-01-02 13:05:22 -05:00
.new-button.button-lite {
display: flex;
2023-01-02 12:28:57 -05:00
}
2023-01-02 13:05:22 -05:00
.new-button.button-dropdown {
display: none;
2023-01-02 12:28:57 -05:00
}
}
2023-01-06 20:24:36 -05:00
.stats-for-nerds {
color: var(--text-color);
font-family: var(--text-font-primary);
font-weight: var(--text-header-weight);
font-stretch: extra-expanded;
margin-top: 10px;
margin-bottom: 10px;
font-size: 19.2px;
}
.div_box {
display: none;
}
2023-01-18 06:28:46 -05:00
.v:checked ~ .div_box {
2023-01-06 20:24:36 -05:00
display: flex;
margin-top: -51em;
text-align: left;
background: #0009;
border-radius: 10px;
2023-01-07 11:27:13 -05:00
height: fit-content;
2023-01-06 20:24:36 -05:00
padding: 10px;
margin-left: -11em;
width: 43em;
position: absolute;
white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
white-space: pre-wrap; /* css-3 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
white-space: -webkit-pre-wrap; /* Newer versions of Chrome/Safari*/
word-break: break-all;
white-space: normal;
2023-01-07 11:27:13 -05:00
height: -moz-fit-content;
height: -webkit-fit-content;
max-width: 708px;
max-height: 185.6px;
2023-01-06 20:24:36 -05:00
}
2023-01-07 19:46:47 -05:00
@media screen and (min-width: 1400px) {
2023-01-18 06:28:46 -05:00
.v:checked ~ .div_box {
2023-01-07 19:46:47 -05:00
display: flex;
margin-top: -54em;
margin-left: -14em;
}
}
2023-01-06 20:24:36 -05:00
.checkbox:checked + .fnt {
font-weight: 900;
}
@media screen and (max-width: 1340px) {
.h {
display: none;
}
.div_box {
2023-01-08 09:42:40 -05:00
display: none !important;
2023-01-06 20:24:36 -05:00
}
}
2023-01-17 16:06:38 -05:00
.flying_cmnt {
display: none;
}
.hj:checked ~ .flying_cmnt {
display: grid;
position: absolute;
max-height: 72em;
margin-top: -31em;
margin-left: auto;
width: 68em;
margin-right: auto;
white-space: -moz-pre-wrap !important;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
white-space: pre-wrap;
word-wrap: break-word;
white-space: -webkit-pre-wrap;
word-break: break-all;
white-space: normal;
max-width: 913px;
}
marquee {
margin-top: 19px;
font-family: var(--text-font-primary);
font-stretch: extra-expanded;
font-weight: 900;
}
2023-01-19 17:30:08 -05:00
.mini {
display:none;
}
#video:target {
object-fit:none;
}
2023-01-23 00:31:41 -05:00
#secret-theme:target{
background: linear-gradient(180deg, #5BCEFA 20%, #F5A9B8 20%, 40%, #FFFFFF 40%, 60%, #F5A9B8 60%, 80%, #5BCEFA 80%);
}
2023-01-19 17:30:08 -05:00