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