2023-04-24 13:44:15 -04:00
|
|
|
/*
|
|
|
|
* Common attributes
|
|
|
|
*/
|
|
|
|
|
2019-08-16 16:59:05 -04:00
|
|
|
html,
|
|
|
|
body {
|
2019-08-16 21:06:21 -04:00
|
|
|
font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen,
|
|
|
|
Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica,
|
|
|
|
Arial, sans-serif;
|
2021-04-07 02:53:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#contents {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-04-09 10:29:18 -04:00
|
|
|
min-height: 100vh;
|
2019-08-16 16:59:05 -04:00
|
|
|
}
|
|
|
|
|
2023-04-24 13:44:15 -04:00
|
|
|
.h-box {
|
|
|
|
padding-left: 1em;
|
|
|
|
padding-right: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.v-box {
|
|
|
|
padding-top: 1em;
|
|
|
|
padding-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
2019-03-06 10:54:56 -05:00
|
|
|
.deleted {
|
|
|
|
background-color: rgb(255, 0, 0, 0.5);
|
|
|
|
}
|
|
|
|
|
2022-04-03 16:56:54 -04:00
|
|
|
.underlined {
|
|
|
|
border-bottom: 1px solid;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
2023-04-24 13:44:15 -04:00
|
|
|
.title {
|
|
|
|
margin: 0.5em 0 1em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* A flex container */
|
|
|
|
.flexible {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-left {
|
|
|
|
display: flex;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
.flex-right {
|
|
|
|
display: flex;
|
|
|
|
flex: 2 0 auto;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Channel page
|
|
|
|
*/
|
|
|
|
|
2019-06-28 21:48:24 -04:00
|
|
|
.channel-profile > * {
|
|
|
|
font-size: 1.17em;
|
|
|
|
font-weight: bold;
|
|
|
|
vertical-align: middle;
|
2021-10-11 03:53:37 -04:00
|
|
|
border-radius: 50%;
|
2019-06-28 21:48:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.channel-profile > img {
|
2019-07-01 13:08:29 -04:00
|
|
|
width: 48px;
|
|
|
|
height: auto;
|
2019-06-28 21:48:24 -04:00
|
|
|
}
|
|
|
|
|
2020-11-17 18:10:32 -05:00
|
|
|
body a.channel-owner {
|
2019-02-21 18:43:49 -05:00
|
|
|
background-color: #008bec;
|
2019-02-02 18:13:40 -05:00
|
|
|
color: #fff;
|
2019-01-31 06:21:26 -05:00
|
|
|
border-radius: 9px;
|
|
|
|
padding: 1px 6px;
|
|
|
|
}
|
|
|
|
|
2019-02-01 07:09:10 -05:00
|
|
|
.creator-heart-container {
|
2019-02-21 18:43:49 -05:00
|
|
|
display: inline-block;
|
|
|
|
padding: 0px 7px 6px 0px;
|
|
|
|
margin: 0px -7px -4px 0px;
|
2019-02-01 07:09:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.creator-heart {
|
2023-05-09 17:37:49 -04:00
|
|
|
display: inline-block;
|
2019-02-21 18:43:49 -05:00
|
|
|
position: relative;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
border: 2px none;
|
2019-02-01 07:09:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.creator-heart-background-hearted {
|
2019-02-21 18:43:49 -05:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
padding: 0px;
|
|
|
|
position: relative;
|
2019-02-01 07:09:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.creator-heart-small-hearted {
|
2019-02-21 18:43:49 -05:00
|
|
|
position: absolute;
|
|
|
|
right: -7px;
|
|
|
|
bottom: -4px;
|
2019-02-01 07:09:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.creator-heart-small-container {
|
2023-05-09 17:37:49 -04:00
|
|
|
display: block;
|
2019-02-21 18:43:49 -05:00
|
|
|
position: relative;
|
|
|
|
width: 13px;
|
|
|
|
height: 13px;
|
|
|
|
color: rgb(255, 0, 0);
|
2019-02-01 07:09:10 -05:00
|
|
|
}
|
|
|
|
|
2020-10-08 00:01:18 -04:00
|
|
|
.feed-menu {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.feed-menu-item {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 640px) {
|
|
|
|
.feed-menu-item {
|
|
|
|
flex: 0 0 40%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-17 16:53:12 -04:00
|
|
|
div {
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
2018-07-20 15:36:23 -04:00
|
|
|
|
|
|
|
.loading {
|
2019-03-20 10:20:31 -04:00
|
|
|
display: inline-block;
|
2018-07-20 15:36:23 -04:00
|
|
|
animation: spin 2s linear infinite;
|
|
|
|
}
|
|
|
|
|
2018-10-07 22:11:33 -04:00
|
|
|
.playlist-restricted {
|
|
|
|
height: 20em;
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
|
|
|
|
2023-04-20 12:55:35 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Buttons
|
|
|
|
*/
|
|
|
|
|
2020-11-17 18:10:32 -05:00
|
|
|
body a.pure-button {
|
|
|
|
color: rgba(0,0,0,.8);
|
|
|
|
}
|
|
|
|
|
2019-01-27 22:20:52 -05:00
|
|
|
button.pure-button-primary,
|
2020-11-17 18:10:32 -05:00
|
|
|
body a.pure-button-primary,
|
2023-03-23 18:10:53 -04:00
|
|
|
.channel-owner:hover,
|
|
|
|
.channel-owner:focus {
|
2018-10-20 14:47:20 -04:00
|
|
|
background-color: #a0a0a0;
|
|
|
|
color: rgba(35, 35, 35, 1);
|
|
|
|
}
|
|
|
|
|
2023-04-20 12:55:35 -04:00
|
|
|
.pure-button-primary,
|
|
|
|
.pure-button-secondary {
|
|
|
|
border: 1px solid #a0a0a0;
|
|
|
|
border-radius: 3px;
|
|
|
|
margin: 0 .4em;
|
|
|
|
}
|
|
|
|
|
2023-04-22 06:58:46 -04:00
|
|
|
.pure-button-secondary.low-profile {
|
|
|
|
padding: 5px 10px;
|
|
|
|
margin: 0;
|
2023-04-20 12:55:35 -04:00
|
|
|
}
|
|
|
|
|
2023-04-24 13:44:15 -04:00
|
|
|
/* Has to be combined with flex-left/right */
|
|
|
|
.button-container {
|
|
|
|
flex-flow: wrap;
|
|
|
|
gap: 0.5em 0.75em;
|
|
|
|
}
|
|
|
|
|
2023-04-20 12:55:35 -04:00
|
|
|
|
|
|
|
/*
|
2023-04-24 13:44:15 -04:00
|
|
|
* Video thumbnails
|
2023-04-20 12:55:35 -04:00
|
|
|
*/
|
|
|
|
|
2018-10-20 21:37:55 -04:00
|
|
|
div.thumbnail {
|
|
|
|
position: relative;
|
2023-04-22 06:58:46 -04:00
|
|
|
width: 100%;
|
2019-03-23 11:24:52 -04:00
|
|
|
box-sizing: border-box;
|
2018-10-20 21:37:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
img.thumbnail {
|
2023-04-22 06:58:46 -04:00
|
|
|
display: block; /* See: https://stackoverflow.com/a/11635197 */
|
2018-10-20 21:37:55 -04:00
|
|
|
width: 100%;
|
2019-08-16 21:06:21 -04:00
|
|
|
object-fit: cover;
|
2018-10-20 21:37:55 -04:00
|
|
|
}
|
|
|
|
|
2023-07-08 15:17:44 -04:00
|
|
|
.thumbnail-placeholder {
|
|
|
|
min-height: 50px;
|
|
|
|
border: 2px dotted;
|
|
|
|
}
|
|
|
|
|
2022-11-08 17:15:42 -05:00
|
|
|
div.watched-overlay {
|
2023-04-22 06:58:46 -04:00
|
|
|
z-index: 50;
|
2022-11-08 17:15:42 -05:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
background-color: rgba(255,255,255,.4);
|
2022-11-07 14:03:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
div.watched-indicator {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
height: 4px;
|
|
|
|
width: 100%;
|
2022-11-08 17:15:42 -05:00
|
|
|
background-color: red;
|
2018-10-20 21:37:55 -04:00
|
|
|
}
|
|
|
|
|
2023-04-22 06:58:46 -04:00
|
|
|
div.thumbnail > .top-left-overlay,
|
|
|
|
div.thumbnail > .bottom-right-overlay {
|
2018-10-20 21:37:55 -04:00
|
|
|
z-index: 100;
|
|
|
|
position: absolute;
|
2023-04-22 06:58:46 -04:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2018-10-20 21:37:55 -04:00
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
2023-04-22 06:58:46 -04:00
|
|
|
.top-left-overlay { top: 0.6em; left: 0.6em; }
|
|
|
|
.bottom-right-overlay { bottom: 0.6em; right: 0.6em; }
|
|
|
|
|
|
|
|
.length {
|
|
|
|
padding: 1px;
|
|
|
|
margin: -2px 0;
|
2018-11-19 23:06:59 -05:00
|
|
|
color: #fff;
|
2023-04-22 06:58:46 -04:00
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.length, .top-left-overlay button {
|
2023-04-22 14:25:26 -04:00
|
|
|
color: #eee;
|
2023-04-22 11:50:34 -04:00
|
|
|
background-color: rgba(35, 35, 35, 0.85) !important;
|
2018-11-19 23:06:59 -05:00
|
|
|
}
|
|
|
|
|
2023-04-20 12:55:35 -04:00
|
|
|
|
2018-07-26 10:46:43 -04:00
|
|
|
/*
|
|
|
|
* Navbar
|
|
|
|
*/
|
|
|
|
|
|
|
|
.navbar {
|
|
|
|
margin: 1em 0;
|
|
|
|
display: flex; /* this is also defined in framework, but in case of future changes */
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
2018-07-30 19:38:55 -04:00
|
|
|
.navbar > div {
|
2018-07-26 10:46:43 -04:00
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
2021-04-04 03:48:14 -04:00
|
|
|
.searchbar {
|
2018-07-26 10:46:43 -04:00
|
|
|
flex-grow: 2; /* take double the space of the other items */
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar a {
|
|
|
|
padding: 0; /* this way it will stay aligned with content under */
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar .index-link {
|
|
|
|
font-weight: bold;
|
2019-10-02 08:05:58 -04:00
|
|
|
display: inline;
|
2018-07-26 10:46:43 -04:00
|
|
|
}
|
|
|
|
|
2021-12-06 22:30:05 -05:00
|
|
|
.searchbar .pure-form fieldset { padding: 0; }
|
2019-08-01 03:35:57 -04:00
|
|
|
|
2021-12-06 22:30:05 -05:00
|
|
|
.searchbar input[type="search"] {
|
|
|
|
width: 100%;
|
|
|
|
margin: 1px;
|
2018-07-26 10:46:43 -04:00
|
|
|
|
2021-12-06 22:30:05 -05:00
|
|
|
border: 1px solid;
|
2022-06-05 18:00:20 -04:00
|
|
|
border-color: rgba(0,0,0,0);
|
|
|
|
border-bottom-color: #CCC;
|
2021-12-06 22:30:05 -05:00
|
|
|
border-radius: 0;
|
2018-07-26 10:46:43 -04:00
|
|
|
|
2021-12-06 22:30:05 -05:00
|
|
|
box-shadow: none;
|
2023-03-23 18:10:53 -04:00
|
|
|
appearance: none;
|
2021-12-06 22:30:05 -05:00
|
|
|
-webkit-appearance: none;
|
|
|
|
}
|
2018-07-26 10:46:43 -04:00
|
|
|
|
2021-12-06 22:30:05 -05:00
|
|
|
.searchbar input[type="search"]:focus {
|
2022-09-11 09:16:49 -04:00
|
|
|
margin: 0;
|
2021-12-06 22:30:05 -05:00
|
|
|
border: 2px solid;
|
2022-06-05 18:00:20 -04:00
|
|
|
border-color: rgba(0,0,0,0);
|
|
|
|
border-bottom-color: #FED;
|
2018-07-26 10:46:43 -04:00
|
|
|
}
|
|
|
|
|
2019-03-26 18:45:39 -04:00
|
|
|
/* https://stackoverflow.com/a/55170420 */
|
|
|
|
input[type="search"]::-webkit-search-cancel-button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
height: 14px;
|
|
|
|
width: 14px;
|
|
|
|
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAn0lEQVR42u3UMQrDMBBEUZ9WfQqDmm22EaTyjRMHAlM5K+Y7lb0wnUZPIKHlnutOa+25Z4D++MRBX98MD1V/trSppLKHqj9TTBWKcoUqffbUcbBBEhTjBOV4ja4l4OIAZThEOV6jHO8ARXD+gPPvKMABinGOrnu6gTNUawrcQKNCAQ7QeTxORzle3+sDfjJpPCqhJh7GixZq4rHcc9l5A9qZ+WeBhgEuAAAAAElFTkSuQmCC);
|
|
|
|
background-size: 14px;
|
|
|
|
}
|
|
|
|
|
2018-07-26 10:46:43 -04:00
|
|
|
.user-field {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-end;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-field div {
|
2022-06-05 18:00:20 -04:00
|
|
|
width: auto;
|
2018-07-26 10:46:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.user-field div:not(:last-child) {
|
|
|
|
margin-right: 1em;
|
|
|
|
}
|
|
|
|
|
2023-04-24 13:44:15 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Responsive rules
|
|
|
|
*/
|
|
|
|
|
2019-03-12 11:12:47 -04:00
|
|
|
@media only screen and (max-aspect-ratio: 16/9) {
|
|
|
|
.player-dimensions.vjs-fluid {
|
|
|
|
padding-top: 46.86% !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#player-container {
|
|
|
|
padding-bottom: 46.86% !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-26 10:46:43 -04:00
|
|
|
@media screen and (max-width: 767px) {
|
|
|
|
.navbar {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2018-07-30 19:38:55 -04:00
|
|
|
.navbar > div {
|
2018-07-26 10:46:43 -04:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2023-04-24 13:44:15 -04:00
|
|
|
margin-bottom: 25px;
|
2018-07-26 10:46:43 -04:00
|
|
|
}
|
|
|
|
|
2018-07-30 19:38:55 -04:00
|
|
|
.navbar > .searchbar > form {
|
2023-04-24 13:44:15 -04:00
|
|
|
width: 75%;
|
2018-07-26 10:46:43 -04:00
|
|
|
}
|
2019-05-28 11:04:04 -04:00
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 1.25em;
|
|
|
|
margin: 0.42em 0;
|
|
|
|
}
|
2023-04-24 13:44:15 -04:00
|
|
|
|
|
|
|
/* Space out the subscribe & RSS buttons and align them to the left */
|
|
|
|
.title.flexible { display: block; }
|
|
|
|
.title.flexible > .flex-right { margin: 0.75em 0; justify-content: flex-start; }
|
|
|
|
|
|
|
|
/* Space out buttons to make them easier to tap */
|
|
|
|
.user-field { font-size: 125%; }
|
|
|
|
.user-field > :not(:last-child) { margin-right: 1.75em; }
|
|
|
|
|
|
|
|
.icon-buttons { font-size: 125%; }
|
|
|
|
.icon-buttons > :not(:last-child) { margin-right: 0.75em; }
|
2018-07-26 10:46:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 320px) {
|
2018-07-30 19:38:55 -04:00
|
|
|
.navbar > .searchbar > form {
|
2018-07-26 10:46:43 -04:00
|
|
|
width: 100%;
|
|
|
|
margin: 0 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-25 14:47:15 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Video "cards" (results/playlist/channel videos)
|
|
|
|
*/
|
|
|
|
|
|
|
|
.video-card-row { margin: 15px 0; }
|
|
|
|
|
|
|
|
p.channel-name { margin: 0; }
|
|
|
|
p.video-data { margin: 0; font-weight: bold; font-size: 80%; }
|
|
|
|
|
|
|
|
|
2023-05-06 13:23:55 -04:00
|
|
|
/*
|
|
|
|
* Comments & community posts
|
|
|
|
*/
|
|
|
|
|
2023-07-19 15:35:22 -04:00
|
|
|
.comments {
|
2023-05-06 13:23:55 -04:00
|
|
|
max-width: 800px;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
2023-09-27 18:40:50 -04:00
|
|
|
/*
|
|
|
|
* We don't want the top and bottom margin on the post page.
|
|
|
|
*/
|
|
|
|
.comments.post-comments {
|
|
|
|
margin-bottom: 0;
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2023-05-06 13:36:52 -04:00
|
|
|
.video-iframe-wrapper {
|
|
|
|
position: relative;
|
|
|
|
height: 0;
|
|
|
|
padding-bottom: 56.25%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.video-iframe {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
border: none;
|
|
|
|
}
|
2023-05-06 13:23:55 -04:00
|
|
|
|
2023-04-20 12:55:35 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Page navigation
|
|
|
|
*/
|
|
|
|
|
|
|
|
.page-nav-container { margin: 15px 0 30px 0; }
|
|
|
|
|
|
|
|
.page-prev-container { text-align: start; }
|
|
|
|
.page-next-container { text-align: end; }
|
|
|
|
|
|
|
|
.page-prev-container,
|
|
|
|
.page-next-container {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-26 18:45:39 -04:00
|
|
|
/*
|
2018-07-26 10:46:43 -04:00
|
|
|
* Footer
|
|
|
|
*/
|
|
|
|
|
2021-04-06 06:45:54 -04:00
|
|
|
footer {
|
2021-04-07 02:53:38 -04:00
|
|
|
margin-top: auto;
|
|
|
|
padding: 1.5em 0;
|
2018-07-26 10:46:43 -04:00
|
|
|
text-align: center;
|
2021-04-05 23:24:02 -04:00
|
|
|
max-height: 30vh;
|
2018-07-26 10:46:43 -04:00
|
|
|
}
|
|
|
|
|
2023-09-24 03:08:16 -04:00
|
|
|
.light-theme footer {
|
|
|
|
color: #7c7c7c;
|
|
|
|
}
|
|
|
|
|
2023-09-19 02:15:44 -04:00
|
|
|
.dark-theme footer {
|
|
|
|
color: #adadad;
|
|
|
|
}
|
|
|
|
|
|
|
|
.light-theme footer a {
|
|
|
|
color: #7c7c7c !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark-theme footer a {
|
|
|
|
color: #adadad !important;
|
2018-07-26 10:46:43 -04:00
|
|
|
}
|
|
|
|
|
2021-10-07 07:53:12 -04:00
|
|
|
footer span {
|
|
|
|
margin: 4px 0;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2018-07-26 10:46:43 -04:00
|
|
|
/* keyframes */
|
|
|
|
|
2018-07-20 15:36:23 -04:00
|
|
|
@keyframes spin {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
2018-08-03 19:26:12 -04:00
|
|
|
|
2019-05-11 12:09:45 -04:00
|
|
|
fieldset > select,
|
|
|
|
span > select {
|
|
|
|
color: rgba(49, 49, 51, 1);
|
|
|
|
}
|
|
|
|
|
2019-03-04 15:14:24 -05:00
|
|
|
.pure-control-group label {
|
|
|
|
word-wrap: normal;
|
|
|
|
}
|
2019-08-08 20:00:22 -04:00
|
|
|
|
2023-04-20 12:55:35 -04:00
|
|
|
|
2020-11-15 22:19:41 -05:00
|
|
|
/*
|
2020-11-17 16:53:45 -05:00
|
|
|
* Light theme
|
2020-11-15 22:19:41 -05:00
|
|
|
*/
|
|
|
|
|
2020-11-17 16:53:45 -05:00
|
|
|
.light-theme a:hover,
|
2021-03-13 13:57:27 -05:00
|
|
|
.light-theme a:active,
|
2023-03-23 18:10:53 -04:00
|
|
|
.light-theme summary:hover,
|
|
|
|
.light-theme a:focus,
|
|
|
|
.light-theme summary:focus {
|
2020-12-14 08:20:31 -05:00
|
|
|
color: #075A9E !important;
|
2020-11-17 16:53:45 -05:00
|
|
|
}
|
|
|
|
|
2023-04-22 14:25:26 -04:00
|
|
|
.light-theme .pure-button-primary:hover,
|
|
|
|
.light-theme .pure-button-primary:focus,
|
|
|
|
.light-theme .pure-button-secondary:hover,
|
|
|
|
.light-theme .pure-button-secondary:focus {
|
2020-12-14 08:15:03 -05:00
|
|
|
color: #fff !important;
|
2023-04-22 14:25:26 -04:00
|
|
|
border-color: rgba(0, 182, 240, 0.75) !important;
|
|
|
|
background-color: rgba(0, 182, 240, 0.75) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.light-theme .pure-button-secondary:not(.low-profile) {
|
|
|
|
color: #335d7a;
|
|
|
|
background-color: #fff2;
|
2020-12-14 08:15:03 -05:00
|
|
|
}
|
|
|
|
|
2020-11-17 16:53:45 -05:00
|
|
|
.light-theme a {
|
2020-12-14 08:20:31 -05:00
|
|
|
color: #335d7a;
|
2020-11-17 16:53:45 -05:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* All links that do not fit with the default color goes here */
|
|
|
|
.light-theme a:not([data-id]) > .icon,
|
|
|
|
.light-theme .pure-u-lg-1-5 > .h-box > a[href^="/watch?"],
|
|
|
|
.light-theme .playlist-restricted > ol > li > a {
|
|
|
|
color: #303030;
|
|
|
|
}
|
|
|
|
|
2020-11-17 18:10:32 -05:00
|
|
|
.light-theme .pure-menu-heading {
|
|
|
|
color: #565d64;
|
|
|
|
}
|
|
|
|
|
2020-11-15 22:19:41 -05:00
|
|
|
@media (prefers-color-scheme: light) {
|
|
|
|
.no-theme a:hover,
|
2021-03-13 13:57:27 -05:00
|
|
|
.no-theme a:active,
|
2023-03-23 18:10:53 -04:00
|
|
|
.no-theme summary:hover,
|
|
|
|
.no-theme a:focus,
|
|
|
|
.no-theme summary:focus {
|
2020-12-14 08:20:31 -05:00
|
|
|
color: #075A9E !important;
|
2020-11-15 22:19:41 -05:00
|
|
|
}
|
|
|
|
|
2023-04-22 14:25:26 -04:00
|
|
|
.no-theme .pure-button-primary:hover,
|
|
|
|
.no-theme .pure-button-primary:focus,
|
|
|
|
.no-theme .pure-button-secondary:hover,
|
|
|
|
.no-theme .pure-button-secondary:focus {
|
2020-12-14 08:15:03 -05:00
|
|
|
color: #fff !important;
|
2023-04-22 14:25:26 -04:00
|
|
|
border-color: rgba(0, 182, 240, 0.75) !important;
|
|
|
|
background-color: rgba(0, 182, 240, 0.75) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-theme .pure-button-secondary:not(.low-profile) {
|
|
|
|
color: #335d7a;
|
|
|
|
background-color: #fff2;
|
2020-12-14 08:15:03 -05:00
|
|
|
}
|
|
|
|
|
2020-11-15 22:19:41 -05:00
|
|
|
.no-theme a {
|
2020-12-14 08:20:31 -05:00
|
|
|
color: #335d7a;
|
2020-11-15 22:19:41 -05:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* All links that do not fit with the default color goes here */
|
|
|
|
.no-theme a:not([data-id]) > .icon,
|
|
|
|
.no-theme .pure-u-lg-1-5 > .h-box > a[href^="/watch?"],
|
|
|
|
.no-theme .playlist-restricted > ol > li > a {
|
|
|
|
color: #303030;
|
|
|
|
}
|
2020-11-17 18:10:32 -05:00
|
|
|
|
2023-09-19 02:15:44 -04:00
|
|
|
.no-theme footer {
|
|
|
|
color: #7c7c7c;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-theme footer a {
|
|
|
|
color: #7c7c7c !important;
|
|
|
|
}
|
|
|
|
|
2020-11-17 18:10:32 -05:00
|
|
|
.light-theme .pure-menu-heading {
|
|
|
|
color: #565d64;
|
|
|
|
}
|
2020-11-15 22:19:41 -05:00
|
|
|
}
|
|
|
|
|
2023-04-20 12:55:35 -04:00
|
|
|
|
2020-11-17 16:53:45 -05:00
|
|
|
/*
|
|
|
|
* Dark theme
|
|
|
|
*/
|
|
|
|
|
|
|
|
.dark-theme a:hover,
|
2021-03-13 13:57:27 -05:00
|
|
|
.dark-theme a:active,
|
2023-03-23 18:10:53 -04:00
|
|
|
.dark-theme summary:hover,
|
|
|
|
.dark-theme a:focus,
|
|
|
|
.dark-theme summary:focus {
|
2020-11-17 16:53:45 -05:00
|
|
|
color: rgb(0, 182, 240);
|
|
|
|
}
|
|
|
|
|
2023-04-22 14:25:26 -04:00
|
|
|
.dark-theme .pure-button-primary:hover,
|
|
|
|
.dark-theme .pure-button-primary:focus,
|
|
|
|
.dark-theme .pure-button-secondary:hover,
|
|
|
|
.dark-theme .pure-button-secondary:focus {
|
|
|
|
color: #fff !important;
|
|
|
|
border-color: rgb(0, 182, 240) !important;
|
|
|
|
background-color: rgba(0, 182, 240, 1) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark-theme .pure-button-secondary {
|
|
|
|
background-color: #0002;
|
|
|
|
color: #ddd;
|
|
|
|
}
|
|
|
|
|
2020-11-17 16:53:45 -05:00
|
|
|
.dark-theme a {
|
2023-09-14 13:37:35 -04:00
|
|
|
color: #adadad;
|
2020-11-17 16:53:45 -05:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
body.dark-theme {
|
|
|
|
background-color: rgba(35, 35, 35, 1);
|
|
|
|
color: #f0f0f0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark-theme .pure-form legend {
|
|
|
|
color: #f0f0f0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark-theme .pure-menu-heading {
|
|
|
|
color: #f0f0f0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark-theme input,
|
|
|
|
.dark-theme select,
|
|
|
|
.dark-theme textarea {
|
|
|
|
color: rgba(35, 35, 35, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark-theme .pure-form input[type="file"] {
|
|
|
|
color: #f0f0f0;
|
|
|
|
}
|
|
|
|
|
2021-04-04 03:48:14 -04:00
|
|
|
.dark-theme .searchbar input {
|
2020-11-17 16:53:45 -05:00
|
|
|
background-color: inherit;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
2020-11-15 22:19:41 -05:00
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
.no-theme a:hover,
|
2023-03-23 18:10:53 -04:00
|
|
|
.no-theme a:active,
|
|
|
|
.no-theme a:focus {
|
2020-11-15 22:19:41 -05:00
|
|
|
color: rgb(0, 182, 240);
|
|
|
|
}
|
|
|
|
|
2023-04-22 14:25:26 -04:00
|
|
|
.no-theme .pure-button-primary:hover,
|
|
|
|
.no-theme .pure-button-primary:focus,
|
|
|
|
.no-theme .pure-button-secondary:hover,
|
|
|
|
.no-theme .pure-button-secondary:focus {
|
|
|
|
color: #fff !important;
|
|
|
|
border-color: rgb(0, 182, 240) !important;
|
|
|
|
background-color: rgba(0, 182, 240, 1) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-theme .pure-button-secondary {
|
|
|
|
background-color: #0002;
|
|
|
|
color: #ddd;
|
|
|
|
}
|
|
|
|
|
2020-11-15 22:19:41 -05:00
|
|
|
.no-theme a {
|
2023-09-18 01:14:34 -04:00
|
|
|
color: #adadad;
|
2020-11-15 22:19:41 -05:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
body.no-theme {
|
|
|
|
background-color: rgba(35, 35, 35, 1);
|
|
|
|
color: #f0f0f0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-theme .pure-form legend {
|
|
|
|
color: #f0f0f0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-theme .pure-menu-heading {
|
|
|
|
color: #f0f0f0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-theme input,
|
|
|
|
.no-theme select,
|
|
|
|
.no-theme textarea {
|
|
|
|
color: rgba(35, 35, 35, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-theme .pure-form input[type="file"] {
|
|
|
|
color: #f0f0f0;
|
|
|
|
}
|
|
|
|
|
2021-04-04 03:48:14 -04:00
|
|
|
.no-theme .searchbar input {
|
2020-11-15 22:19:41 -05:00
|
|
|
background-color: inherit;
|
|
|
|
color: inherit;
|
|
|
|
}
|
2023-09-19 02:15:44 -04:00
|
|
|
|
|
|
|
.no-theme footer {
|
|
|
|
color: #adadad;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-theme footer a {
|
|
|
|
color: #adadad !important;
|
|
|
|
}
|
2020-11-15 22:19:41 -05:00
|
|
|
}
|
|
|
|
|
2023-04-20 12:55:35 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Miscellanous
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2021-04-07 03:09:38 -04:00
|
|
|
/*With commit d9528f5 all contents of the page is now within a flexbox. However,
|
|
|
|
the hr element is rendered improperly within one.
|
|
|
|
See https://stackoverflow.com/a/34372979 for more info */
|
|
|
|
hr {
|
2021-06-14 14:24:01 -04:00
|
|
|
margin: 10px 0 10px 0;
|
2021-04-07 03:09:38 -04:00
|
|
|
}
|
2021-04-02 04:03:26 -04:00
|
|
|
|
2021-04-02 06:56:45 -04:00
|
|
|
/* Description Expansion Styling*/
|
2023-01-16 07:58:05 -05:00
|
|
|
#descexpansionbutton,
|
2023-01-21 18:12:04 -05:00
|
|
|
#music-desc-expansion {
|
|
|
|
display: none;
|
2021-04-02 04:03:26 -04:00
|
|
|
}
|
|
|
|
|
2023-01-21 18:12:04 -05:00
|
|
|
#descexpansionbutton ~ div {
|
2021-04-02 04:03:26 -04:00
|
|
|
overflow: hidden;
|
2023-03-28 04:30:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#descexpansionbutton:not(:checked) ~ div {
|
2023-03-03 17:28:26 -05:00
|
|
|
max-height: 8.3em;
|
2021-04-02 04:03:26 -04:00
|
|
|
}
|
|
|
|
|
2023-01-21 18:12:04 -05:00
|
|
|
#descexpansionbutton:checked ~ div {
|
2021-04-02 04:03:26 -04:00
|
|
|
overflow: unset;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2023-01-21 18:12:04 -05:00
|
|
|
#descexpansionbutton ~ label {
|
2021-04-02 04:03:26 -04:00
|
|
|
order: 1;
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
2021-06-24 03:26:58 -04:00
|
|
|
|
2023-01-16 07:58:05 -05:00
|
|
|
label[for="descexpansionbutton"]:hover,
|
2023-01-21 18:12:04 -05:00
|
|
|
label[for="music-desc-expansion"]:hover {
|
2023-01-07 12:31:42 -05:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2021-06-24 03:26:58 -04:00
|
|
|
/* Bidi (bidirectional text) support */
|
2023-04-24 13:44:15 -04:00
|
|
|
h1, h2, h3, h4, h5, p,
|
2021-06-24 03:26:58 -04:00
|
|
|
#descriptionWrapper,
|
2023-01-16 07:58:05 -05:00
|
|
|
#description-box,
|
2023-01-21 18:12:04 -05:00
|
|
|
#music-description-box {
|
2023-01-16 07:58:05 -05:00
|
|
|
unicode-bidi: plaintext;
|
|
|
|
text-align: start;
|
2021-06-24 03:26:58 -04:00
|
|
|
}
|
2021-06-24 09:00:55 -04:00
|
|
|
|
|
|
|
#descriptionWrapper {
|
2023-01-16 07:58:05 -05:00
|
|
|
max-width: 600px;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|
|
|
|
|
2023-01-21 18:12:04 -05:00
|
|
|
#music-description-box {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#music-desc-expansion:checked ~ #music-description-box {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#music-desc-expansion ~ label > h3 > .ion-ios-arrow-up,
|
|
|
|
#music-desc-expansion:checked ~ label > h3 > .ion-ios-arrow-down {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#music-desc-expansion:checked ~ label > h3 > .ion-ios-arrow-up,
|
|
|
|
#music-desc-expansion ~ label > h3 > .ion-ios-arrow-down {
|
|
|
|
display: inline;
|
2023-01-16 07:58:05 -05:00
|
|
|
}
|
|
|
|
|
2023-01-21 18:12:04 -05:00
|
|
|
/* Select all the music items except the first one */
|
|
|
|
.music-item + .music-item {
|
|
|
|
border-top: 1px solid #ffffff;
|
2021-06-24 09:00:55 -04:00
|
|
|
}
|
2021-06-29 17:18:17 -04:00
|
|
|
|
|
|
|
/* Center the "invidious" logo on the search page */
|
|
|
|
#logo > h1 { text-align: center; }
|
2022-06-01 10:16:07 -04:00
|
|
|
|
2022-07-14 10:31:03 -04:00
|
|
|
/* IE11 fixes */
|
2022-06-05 18:00:20 -04:00
|
|
|
:-ms-input-placeholder { color: #888; }
|
2022-07-14 10:31:03 -04:00
|
|
|
|
2022-06-01 10:16:07 -04:00
|
|
|
/* Wider settings name to less word wrap */
|
|
|
|
.pure-form-aligned .pure-control-group label { width: 19em; }
|
2023-03-02 07:29:44 -05:00
|
|
|
|
|
|
|
.channel-emoji {
|
|
|
|
margin: 0 2px;
|
|
|
|
}
|
2023-10-16 19:00:14 -04:00
|
|
|
|
|
|
|
#download_widget {
|
|
|
|
width: 100%;
|
|
|
|
}
|