invidious-mod/assets/css/default.css

209 行
3.4 KiB
CSS
Raw 通常表示 履歴

2018-03-13 08:37:01 +09:00
.h-box {
padding-left: 1em;
padding-right: 1em;
2018-03-12 02:05:56 +09:00
}
2018-03-13 08:37:01 +09:00
.v-box {
padding-top: 1em;
padding-bottom: 1em;
2018-04-14 11:32:14 +09:00
}
2018-04-18 05:53:12 +09:00
div {
overflow-wrap: break-word;
word-wrap: break-word;
}
.loading {
animation: spin 2s linear infinite;
}
/*
* 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;
}
.navbar > .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;
}
.navbar > .searchbar .pure-form input[type="search"] {
border-top: 0;
border-left: 0;
border-right: 0;
border-bottom: 1px solid #ccc;
border-radius: 0;
padding: initial 0;
box-shadow: none;
transition: 0.1s border-bottom;
}
.navbar > .searchbar .pure-form fieldset {
padding: 0;
}
/* attract focus to the searchbar by adding a subtle transition */
.navbar > .searchbar .pure-form input[type="search"]:focus {
border-bottom: 2px solid #aaa;
}
.user-field {
display: flex;
flex-direction: row;
justify-content: flex-end;
align-items: center;
}
.user-field div {
width: initial;
}
.user-field div:not(:last-child) {
margin-right: 1em;
}
@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%;
}
}
@media screen and (max-width: 320px) {
.navbar > .searchbar > form {
width: 100%;
margin: 0 1em;
}
}
/*
* Footer
*/
.footer {
color: #666666;
margin: 2em 0;
text-align: center;
}
.footer a {
color: inherit;
text-decoration: underline;
}
/* keyframes */
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
2018-08-04 08:26:12 +09:00
2018-08-04 08:17:19 +09:00
/* Control Bar */
.video-js .vjs-control-bar,
.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
2018-08-04 08:26:12 +09:00
background-color: rgba(35, 35, 35, 0.75);
2018-08-04 08:17:19 +09:00
}
.vjs-menu li.vjs-menu-item:focus,
.vjs-menu li.vjs-menu-item:hover {
background-color: rgba(255, 255, 255, 0.75);
color: rgba(49, 49, 51, 0.75);
}
.vjs-menu li.vjs-selected,
.vjs-menu li.vjs-selected:focus,
.vjs-menu li.vjs-selected:hover {
background-color: rgba(0, 182, 240, 0.75);
}
/* Progress Bar */
.video-js .vjs-slider {
background-color: rgba(15, 15, 15, 0.5);
}
.video-js .vjs-load-progress,
.video-js .vjs-load-progress div {
2018-08-07 09:23:49 +09:00
background: rgba(87, 87, 88, 1);
2018-08-04 08:17:19 +09:00
}
2018-08-04 08:26:12 +09:00
.video-js .vjs-slider:hover,
.video-js button:hover {
color: rgba(0, 182, 240, 1);
}
2018-08-04 08:17:19 +09:00
.video-js .vjs-play-progress {
2018-08-07 08:54:39 +09:00
background-color: rgba(0, 182, 240, 1);
2018-08-04 08:17:19 +09:00
}
2018-08-31 22:49:02 +09:00
/* ProgressBar marker */
.vjs-marker {
2018-09-15 11:24:28 +09:00
background-color: rgba(255, 255, 255, 1);
2018-08-31 22:49:02 +09:00
}
2018-08-04 08:17:19 +09:00
/* Big "Play" Button */
.video-js .vjs-big-play-button {
2018-08-04 08:26:12 +09:00
background-color: rgba(35, 35, 35, 0.5);
2018-08-04 08:17:19 +09:00
}
.video-js:hover .vjs-big-play-button {
2018-08-04 08:26:12 +09:00
background-color: rgba(35, 35, 35, 0.75);
2018-08-04 08:17:19 +09:00
}
2018-08-05 22:58:03 +09:00
.video-js .vjs-current-time,
.video-js .vjs-time-divider,
.video-js .vjs-duration {
display: block;
}
2018-08-07 22:04:23 +09:00
.video-js .vjs-time-divider {
min-width: 0px;
padding-left: 0px;
padding-right: 0px;
}
2018-09-15 11:24:28 +09:00
video[poster] {
object-fit: cover;
background-color: transparent;
}
.vjs-poster {
background-size: cover !important;
object-fit: cover !important;
}