123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587 |
- /* from Invidious, AGPL-3.0 */
- html,
- body {
- font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen,
- Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica,
- Arial, sans-serif;
- }
- #contents {
- display: flex;
- flex-direction: column;
- min-height: 100vh;
- }
- .deleted {
- background-color: rgb(255, 0, 0, 0.5);
- }
- .underlined {
- border-bottom: 1px solid;
- margin-bottom: 20px;
- }
- .channel-profile > * {
- font-size: 1.17em;
- font-weight: bold;
- vertical-align: middle;
- border-radius: 50%;
- }
- .channel-profile > img {
- width: 48px;
- height: auto;
- }
- body a.channel-owner {
- background-color: #008bec;
- color: #fff;
- border-radius: 9px;
- padding: 1px 6px;
- }
- .creator-heart-container {
- display: inline-block;
- padding: 0px 7px 6px 0px;
- margin: 0px -7px -4px 0px;
- }
- .creator-heart {
- position: relative;
- width: 16px;
- height: 16px;
- border: 2px none;
- }
- .creator-heart-background-hearted {
- width: 16px;
- height: 16px;
- padding: 0px;
- position: relative;
- }
- .creator-heart-small-hearted {
- position: absolute;
- right: -7px;
- bottom: -4px;
- }
- .creator-heart-small-container {
- position: relative;
- width: 13px;
- height: 13px;
- color: rgb(255, 0, 0);
- }
- .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%;
- }
- }
- .h-box {
- padding-left: 1em;
- padding-right: 1em;
- }
- .v-box {
- padding-top: 1em;
- padding-bottom: 1em;
- }
- div {
- overflow-wrap: break-word;
- word-wrap: break-word;
- }
- .loading {
- display: inline-block;
- animation: spin 2s linear infinite;
- }
- .playlist-restricted {
- height: 20em;
- padding-right: 10px;
- }
- body a.pure-button {
- color: rgba(0,0,0,.8);
- }
- button.pure-button-primary,
- body a.pure-button-primary,
- .channel-owner:hover {
- background-color: #a0a0a0;
- color: rgba(35, 35, 35, 1);
- }
- button.pure-button-primary:hover,
- body a.pure-button-primary:hover {
- background-color: rgba(0, 182, 240, 1);
- color: #fff;
- }
- div.thumbnail {
- padding: 28.125%;
- position: relative;
- box-sizing: border-box;
- }
- img.thumbnail {
- position: absolute;
- width: 100%;
- height: 100%;
- left: 0;
- top: 0;
- object-fit: cover;
- }
- div.watched-overlay {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: rgba(255,255,255,.4);
- }
- div.watched-indicator {
- position: absolute;
- left: 0;
- bottom: 0;
- height: 4px;
- width: 100%;
- background-color: red;
- }
- .length {
- z-index: 100;
- position: absolute;
- background-color: rgba(35, 35, 35, 0.75);
- color: #fff;
- border-radius: 2px;
- padding: 2px;
- font-size: 16px;
- right: 0.25em;
- bottom: -0.75em;
- }
- .watched {
- z-index: 100;
- position: absolute;
- background-color: rgba(35, 35, 35, 0.75);
- color: #fff;
- border-radius: 2px;
- padding: 4px 8px 4px 8px;
- font-size: 16px;
- left: 0.2em;
- top: -0.7em;
- }
- /*
- * 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;
- }
- .navbar > div {
- flex: 1;
- }
- .searchbar {
- 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;
- display: inline;
- }
- .searchbar .pure-form fieldset { padding: 0; }
- .searchbar input[type="search"] {
- width: 100%;
- margin: 1px;
- border: 1px solid;
- border-color: rgba(0,0,0,0);
- border-bottom-color: #CCC;
- border-radius: 0;
- box-shadow: none;
- -webkit-appearance: none;
- }
- .searchbar input[type="search"]:focus {
- margin: 0;
- border: 2px solid;
- border-color: rgba(0,0,0,0);
- border-bottom-color: #FED;
- }
- /* 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;
- }
- .user-field {
- display: flex;
- flex-direction: row;
- justify-content: flex-end;
- align-items: center;
- }
- .user-field div {
- width: auto;
- }
- .user-field div:not(:last-child) {
- margin-right: 1em;
- }
- @media only screen and (max-aspect-ratio: 16/9) {
- .player-dimensions.vjs-fluid {
- padding-top: 46.86% !important;
- }
- }
- @media screen and (max-width: 767px) {
- .navbar {
- flex-direction: column;
- }
- .navbar > div {
- display: flex;
- justify-content: center;
- }
- .navbar > div:not(:last-child) {
- margin-bottom: 1em;
- }
- .navbar > .searchbar > form {
- width: 60%;
- }
- h1 {
- font-size: 1.25em;
- margin: 0.42em 0;
- }
- }
- @media screen and (max-width: 320px) {
- .navbar > .searchbar > form {
- width: 100%;
- margin: 0 1em;
- }
- }
- /*
- * Video "cards" (results/playlist/channel videos)
- */
- .video-card-row { margin: 15px 0; }
- .flexible { display: flex; }
- .flex-left { flex: 1 1 100%; flex-wrap: wrap; }
- .flex-right { flex: 1 0 auto; flex-wrap: nowrap; }
- p.channel-name { margin: 0; }
- p.video-data { margin: 0; font-weight: bold; font-size: 80%; }
- /*
- * Footer
- */
- footer {
- color: #919191;
- margin-top: auto;
- padding: 1.5em 0;
- text-align: center;
- max-height: 30vh;
- }
- footer a {
- color: #919191 !important;
- text-decoration: underline;
- }
- footer span {
- margin: 4px 0;
- display: block;
- }
- /* keyframes */
- @keyframes spin {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(360deg);
- }
- }
- fieldset > select,
- span > select {
- color: rgba(49, 49, 51, 1);
- }
- .pure-control-group label {
- word-wrap: normal;
- }
- /*
- * Light theme
- */
- .light-theme a:hover,
- .light-theme a:active,
- .light-theme summary:hover {
- color: #075A9E !important;
- }
- .light-theme a.pure-button-primary:hover {
- color: #fff !important;
- }
- .light-theme a {
- color: #335d7a;
- 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;
- }
- .light-theme .pure-menu-heading {
- color: #565d64;
- }
- @media (prefers-color-scheme: light) {
- .no-theme a:hover,
- .no-theme a:active,
- .no-theme summary:hover {
- color: #075A9E !important;
- }
- .no-theme a.pure-button-primary:hover {
- color: #fff !important;
- }
- .no-theme a {
- color: #335d7a;
- 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;
- }
- .light-theme .pure-menu-heading {
- color: #565d64;
- }
- }
- /*
- * Dark theme
- */
- .dark-theme a:hover,
- .dark-theme a:active,
- .dark-theme summary:hover {
- color: rgb(0, 182, 240);
- }
- .dark-theme a {
- color: #a0a0a0;
- 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;
- }
- .dark-theme .searchbar input {
- background-color: inherit;
- color: inherit;
- }
- @media (prefers-color-scheme: dark) {
- .no-theme a:hover,
- .no-theme a:active {
- color: rgb(0, 182, 240);
- }
- .no-theme a {
- color: #a0a0a0;
- 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;
- }
- .no-theme .searchbar input {
- background-color: inherit;
- color: inherit;
- }
- }
- /*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 {
- margin: 10px 0 10px 0;
- }
- /* Description Expansion Styling*/
- #descexpansionbutton,
- #music-desc-expansion {
- display: none;
- }
- #descexpansionbutton ~ div {
- overflow: hidden;
- max-height: 8.3em;
- }
- #descexpansionbutton:checked ~ div {
- overflow: unset;
- height: 100%;
- }
- #descexpansionbutton ~ label {
- order: 1;
- margin-top: 20px;
- }
- label[for="descexpansionbutton"]:hover,
- label[for="music-desc-expansion"]:hover {
- cursor: pointer;
- }
- /* Bidi (bidirectional text) support */
- h1,
- h2,
- h3,
- h4,
- h5,
- p,
- #descriptionWrapper,
- #description-box,
- #music-description-box {
- unicode-bidi: plaintext;
- text-align: start;
- }
- #descriptionWrapper {
- max-width: 600px;
- white-space: pre-wrap;
- }
- #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;
- }
- /* Select all the music items except the first one */
- .music-item + .music-item {
- border-top: 1px solid #ffffff;
- }
- /* Center the "invidious" logo on the search page */
- #logo > h1 { text-align: center; }
- /* IE11 fixes */
- :-ms-input-placeholder { color: #888; }
- /* Wider settings name to less word wrap */
- .pure-form-aligned .pure-control-group label { width: 19em; }
- .channel-emoji {
- margin: 0 2px;
- }
|