Station.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775
  1. <template>
  2. <official-header v-if='type == "official"'></official-header>
  3. <community-header v-if='type == "community"'></community-header>
  4. <song-queue v-if='modals.addSongToQueue'></song-queue>
  5. <edit-playlist v-if='modals.editPlaylist'></edit-playlist>
  6. <create-playlist v-if='modals.createPlaylist'></create-playlist>
  7. <edit-station v-if='modals.editStation'></edit-station>
  8. <report v-if='modals.report'></report>
  9. <queue-sidebar v-if='sidebars.queue'></queue-sidebar>
  10. <playlist-sidebar v-if='sidebars.playlist'></playlist-sidebar>
  11. <users-sidebar v-if='sidebars.users'></users-sidebar>
  12. <div class="station">
  13. <div v-show="noSong" class="noSong">
  14. <h1>No song is currently playing.</h1>
  15. <h4 v-if='type === "community" && station.partyMode'>
  16. <a href='#' class='noSong' @click='sidebars.queue = true'>Add a Song to the Queue</a>
  17. </h4>
  18. <h1 v-if='type === "community" && !station.partyMode && $parent.userId === station.owner && !station.privatePlaylist'>Click <a href="#" @click="sidebars.playlist = true">here</a> to play a private playlist.</h1>
  19. <h1 v-if='type === "community" && !station.partyMode && $parent.userId === station.owner && station.privatePlaylist'>Maybe you can add some songs to your selected private playlist.</h1>
  20. </div>
  21. <div class="columns is-mobile" v-show="!noSong">
  22. <div class="column is-8-desktop is-offset-2-desktop is-12-mobile">
  23. <div class="video-container">
  24. <div id="player"></div>
  25. <div class="seeker-bar-container white" id="preview-progress">
  26. <div class="seeker-bar light-blue" style="width: 0%;"></div>
  27. </div>
  28. </div>
  29. </div>
  30. </div>
  31. <div class="columns is-mobile" v-show="!noSong">
  32. <div class="column is-8-desktop is-offset-2-desktop is-12-mobile">
  33. <div class="columns is-mobile">
  34. <div class="column is-12-mobile" v-bind:class="{'is-8-desktop': !simpleSong}">
  35. <h4 id="time-display">{{timeElapsed}} / {{formatTime(currentSong.duration)}}</h4>
  36. <h3>{{currentSong.title}}</h3>
  37. <h4 class="thin" style="margin-left: 0">{{currentSong.artists}}</h4>
  38. <div class="columns is-mobile">
  39. <form style="margin-top: 12px; margin-bottom: 0;" action="#" class="column is-7-desktop is-4-mobile">
  40. <p style="margin-top: 0; position: relative;">
  41. <input type="range" id="volumeSlider" min="0" max="100" class="active" v-on:change="changeVolume()" v-on:input="changeVolume()">
  42. </p>
  43. </form>
  44. <div class="column is-8-mobile is-5-desktop" style="float: right;">
  45. <ul id="ratings" v-if="currentSong.likes !== -1 && currentSong.dislikes !== -1">
  46. <li id="like" class="right" @click="toggleLike()">
  47. <span class="flow-text">{{currentSong.likes}} </span>
  48. <i id="thumbs_up" class="material-icons grey-text" v-bind:class="{liked: liked}">thumb_up</i>
  49. </li>
  50. <li style="margin-right: 10px;" id="dislike" class="right" @click="toggleDislike()">
  51. <span class="flow-text">{{currentSong.dislikes}} </span>
  52. <i id="thumbs_down" class="material-icons grey-text" v-bind:class="{disliked: disliked}">thumb_down</i>
  53. </li>
  54. </ul>
  55. </div>
  56. </div>
  57. </div>
  58. <div class="column is-4-desktop is-12-mobile" v-if="!simpleSong">
  59. <img class="image" id="song-thumbnail" style="margin-top: 10px !important" :src="currentSong.thumbnail" alt="Song Thumbnail" onerror="this.src='/assets/notes.png'" />
  60. </div>
  61. </div>
  62. </div>
  63. </div>
  64. </div>
  65. </template>
  66. <script>
  67. import { Toast } from 'vue-roaster';
  68. import SongQueue from '../Modals/AddSongToQueue.vue';
  69. import EditPlaylist from '../Modals/Playlists/Edit.vue';
  70. import CreatePlaylist from '../Modals/Playlists/Create.vue';
  71. import EditStation from '../Modals/EditStation.vue';
  72. import Report from '../Modals/Report.vue';
  73. import QueueSidebar from '../Sidebars/Queue.vue';
  74. import PlaylistSidebar from '../Sidebars/Playlist.vue';
  75. import UsersSidebar from '../Sidebars/UsersList.vue';
  76. import OfficialHeader from './OfficialHeader.vue';
  77. import CommunityHeader from './CommunityHeader.vue';
  78. import io from '../../io';
  79. export default {
  80. data() {
  81. return {
  82. type: '',
  83. playerReady: false,
  84. previousSong: null,
  85. currentSong: {},
  86. player: undefined,
  87. timePaused: 0,
  88. paused: false,
  89. timeElapsed: '0:00',
  90. liked: false,
  91. disliked: false,
  92. modals: {
  93. addSongToQueue: false,
  94. editPlaylist: false,
  95. createPlaylist: false,
  96. editStation: false,
  97. report: false
  98. },
  99. sidebars: {
  100. queue: false,
  101. users: false,
  102. playlist: false
  103. },
  104. noSong: false,
  105. simpleSong: false,
  106. queue: [],
  107. timeBeforePause: 0,
  108. station: {},
  109. skipVotes: 0
  110. }
  111. },
  112. methods: {
  113. editPlaylist: function (id) {
  114. this.playlistBeingEdited = id;
  115. this.toggleModal('editPlaylist');
  116. },
  117. toggleModal: function (type) {
  118. if (type == 'addSongToQueue') this.modals.addSongToQueue = !this.modals.addSongToQueue;
  119. else if (type == 'editPlaylist') this.modals.editPlaylist = !this.modals.editPlaylist;
  120. else if (type == 'createPlaylist') this.modals.createPlaylist = !this.modals.createPlaylist;
  121. else if (type == 'editStation') this.modals.editStation = !this.modals.editStation;
  122. else if (type == 'report') this.modals.report = !this.modals.report;
  123. },
  124. youtubeReady: function() {
  125. let local = this;
  126. console.log("@@5", local.currentSong._id);
  127. if (!local.player) {
  128. local.player = new YT.Player("player", {
  129. height: 270,
  130. width: 480,
  131. videoId: local.currentSong._id,
  132. startSeconds: local.getTimeElapsed() / 1000 + local.currentSong.skipDuration,
  133. playerVars: {controls: 0, iv_load_policy: 3, rel: 0, showinfo: 0},
  134. events: {
  135. 'onReady': function (event) {
  136. console.log("@@6");
  137. local.playerReady = true;
  138. let volume = parseInt(localStorage.getItem("volume"));
  139. volume = (typeof volume === "number") ? volume : 20;
  140. local.player.setVolume(volume);
  141. if (volume > 0) local.player.unMute();
  142. console.log("@@7");
  143. local.playVideo();
  144. },
  145. 'onStateChange': function (event) {
  146. if (event.data === 1 && local.videoLoading === true) {
  147. local.videoLoading = false;
  148. local.player.seekTo(local.getTimeElapsed() / 1000 + local.currentSong.skipDuration, true);
  149. if (local.paused) local.player.pauseVideo();
  150. } else if (event.data === 1 && local.paused) {
  151. local.player.seekTo(local.timeBeforePause / 1000, true);
  152. local.player.pauseVideo();
  153. }
  154. if (event.data === 2 && !local.paused && !local.noSong) {
  155. local.player.seekTo(local.getTimeElapsed() / 1000 + local.currentSong.skipDuration, true);
  156. local.player.playVideo();
  157. }
  158. }
  159. }
  160. });
  161. }
  162. },
  163. getTimeElapsed: function() {
  164. let local = this;
  165. if (local.currentSong) return Date.now() - local.startedAt - local.timePaused;
  166. else return 0;
  167. },
  168. playVideo: function() {
  169. let local = this;
  170. console.log("@@9");
  171. if (local.playerReady) {
  172. console.log("@@@1");
  173. local.videoLoading = true;
  174. local.player.loadVideoById(local.currentSong._id, local.getTimeElapsed() / 1000 + local.currentSong.skipDuration);
  175. if (local.currentSong.artists) local.currentSong.artists = local.currentSong.artists.join(", ");
  176. if (window.stationInterval !== 0) clearInterval(window.stationInterval);
  177. window.stationInterval = setInterval(function () {
  178. local.resizeSeekerbar();
  179. local.calculateTimeElapsed();
  180. }, 250);
  181. }
  182. },
  183. resizeSeekerbar: function() {
  184. let local = this;
  185. if (!local.paused) {
  186. $(".seeker-bar").width(parseInt(((local.getTimeElapsed() / 1000) / local.currentSong.duration * 100)) + "%");
  187. }
  188. },
  189. formatTime: function(duration) {
  190. let d = moment.duration(duration, 'seconds');
  191. return ((d.hours() > 0) ? (d.hours() < 10 ? ("0" + d.hours() + ":") : (d.hours() + ":")) : "") + (d.minutes() + ":") + (d.seconds() < 10 ? ("0" + d.seconds()) : d.seconds());
  192. },
  193. calculateTimeElapsed: function() {
  194. let local = this;
  195. let currentTime = Date.now();
  196. if (local.currentTime !== undefined && local.paused) {
  197. console.log("123");
  198. local.timePaused += (Date.now() - local.currentTime);
  199. local.currentTime = undefined;
  200. }
  201. let duration = (Date.now() - local.startedAt - local.timePaused) / 1000;
  202. let songDuration = local.currentSong.duration;
  203. //console.log(duration, currentTime, local.startedAt, local.timePaused, local.startedAt - local.timePaused, Date.now() - local.startedAt - local.timePaused, Date.now() - local.startedAt);
  204. if (songDuration <= duration) local.player.pauseVideo();
  205. if ((!local.paused) && duration <= songDuration) local.timeElapsed = local.formatTime(duration);
  206. },
  207. changeVolume: function() {
  208. let local = this;
  209. let volume = $("#volumeSlider").val();
  210. localStorage.setItem("volume", volume);
  211. if (local.playerReady) {
  212. local.player.setVolume(volume);
  213. if (volume > 0) local.player.unMute();
  214. }
  215. },
  216. resumeLocalStation: function() {
  217. this.paused = false;
  218. if (!this.noSong) {
  219. if (this.playerReady) {
  220. this.player.seekTo(this.getTimeElapsed() / 1000 + this.currentSong.skipDuration);
  221. this.player.playVideo();
  222. }
  223. }
  224. },
  225. pauseLocalStation: function() {
  226. this.paused = true;
  227. if (!this.noSong) {
  228. this.timeBeforePause = this.getTimeElapsed();
  229. if (this.playerReady) this.player.pauseVideo();
  230. }
  231. },
  232. skipStation: function () {
  233. let _this = this;
  234. _this.socket.emit('stations.forceSkip', _this.stationId, data => {
  235. if (data.status !== 'success') {
  236. Toast.methods.addToast(`Error: ${data.message}`, 8000);
  237. } else {
  238. Toast.methods.addToast('Successfully skipped the station\'s current song.', 4000);
  239. }
  240. });
  241. },
  242. voteSkipStation: function () {
  243. let _this = this;
  244. _this.socket.emit('stations.voteSkip', _this.stationId, data => {
  245. if (data.status !== 'success') {
  246. Toast.methods.addToast(`Error: ${data.message}`, 8000);
  247. } else {
  248. Toast.methods.addToast('Successfully voted to skip the current song.', 4000);
  249. }
  250. });
  251. },
  252. resumeStation: function () {
  253. let _this = this;
  254. _this.socket.emit('stations.resume', _this.stationId, data => {
  255. console.log(data);
  256. if (data.status !== 'success') {
  257. Toast.methods.addToast(`Error: ${data.message}`, 8000);
  258. } else {
  259. Toast.methods.addToast('Successfully resumed the station.', 4000);
  260. }
  261. });
  262. },
  263. pauseStation: function () {
  264. let _this = this;
  265. _this.socket.emit('stations.pause', _this.stationId, data => {
  266. console.log(data);
  267. if (data.status !== 'success') {
  268. Toast.methods.addToast(`Error: ${data.message}`, 8000);
  269. } else {
  270. Toast.methods.addToast('Successfully paused the station.', 4000);
  271. }
  272. });
  273. },
  274. toggleLike: function() {
  275. let _this = this;
  276. if (_this.liked) _this.socket.emit('songs.unlike', _this.currentSong._id, data => {
  277. if (data.status !== 'success') {
  278. Toast.methods.addToast(`Error: ${data.message}`, 8000);
  279. }
  280. }); else _this.socket.emit('songs.like', _this.currentSong._id, data => {
  281. if (data.status !== 'success') {
  282. Toast.methods.addToast(`Error: ${data.message}`, 8000);
  283. }
  284. });
  285. },
  286. toggleDislike: function() {
  287. let _this = this;
  288. if (_this.disliked) return _this.socket.emit('songs.undislike', _this.currentSong._id, data => {
  289. if (data.status !== 'success') {
  290. Toast.methods.addToast(`Error: ${data.message}`, 8000);
  291. }
  292. });
  293. _this.socket.emit('songs.dislike', _this.currentSong._id, data => {
  294. if (data.status !== 'success') {
  295. Toast.methods.addToast(`Error: ${data.message}`, 8000);
  296. }
  297. });
  298. },
  299. joinStation: function () {
  300. let _this = this;
  301. _this.socket.emit('stations.join', _this.stationId, res => {
  302. if (res.status === 'success') {
  303. _this.station = {
  304. displayName: res.data.displayName,
  305. description: res.data.description,
  306. privacy: res.data.privacy,
  307. partyMode: res.data.partyMode,
  308. owner: res.data.owner,
  309. privatePlaylist: res.data.privatePlaylist
  310. };
  311. _this.currentSong = (res.data.currentSong) ? res.data.currentSong : {};
  312. _this.type = res.data.type;
  313. _this.startedAt = res.data.startedAt;
  314. _this.paused = res.data.paused;
  315. _this.timePaused = res.data.timePaused;
  316. if (res.data.currentSong) {
  317. _this.noSong = false;
  318. _this.simpleSong = (res.data.currentSong.likes === -1 && res.data.currentSong.dislikes === -1);
  319. if (_this.simpleSong) {
  320. _this.currentSong.skipDuration = 0;
  321. }
  322. console.log(12334);
  323. _this.youtubeReady();
  324. _this.playVideo();
  325. _this.socket.emit('songs.getOwnSongRatings', res.data.currentSong._id, data => {
  326. if (_this.currentSong._id === data.songId) {
  327. _this.liked = data.liked;
  328. _this.disliked = data.disliked;
  329. }
  330. });
  331. } else {
  332. if (_this.playerReady) _this.player.pauseVideo();
  333. console.log("NO SONG TRUE1", res.data);
  334. _this.noSong = true;
  335. }
  336. if (_this.type === 'community') {
  337. _this.socket.emit('stations.getQueue', _this.stationId, data => {
  338. console.log(data);
  339. if (data.status === 'success') {
  340. _this.queue = data.queue;
  341. }
  342. });
  343. }
  344. } else {
  345. //TODO Handle error
  346. }
  347. });
  348. }
  349. },
  350. ready: function() {
  351. let _this = this;
  352. _this.stationId = _this.$route.params.id;
  353. window.stationInterval = 0;
  354. io.getSocket((socket) => {
  355. _this.socket = socket;
  356. io.removeAllListeners();
  357. if (_this.socket.connected) {
  358. _this.joinStation();
  359. }
  360. io.onConnect(() => {
  361. _this.joinStation();
  362. });
  363. _this.socket.on('event:songs.next', data => {
  364. _this.previousSong = _this.currentSong;
  365. _this.currentSong = (data.currentSong) ? data.currentSong : {};
  366. _this.startedAt = data.startedAt;
  367. _this.paused = data.paused;
  368. _this.timePaused = data.timePaused;
  369. if (data.currentSong) {
  370. _this.noSong = false;
  371. _this.simpleSong = (data.currentSong.likes === -1 && data.currentSong.dislikes === -1);
  372. if (_this.simpleSong) {
  373. _this.currentSong.skipDuration = 0;
  374. }
  375. console.log(1233, _this.stationId);
  376. if (!_this.playerReady) _this.youtubeReady();
  377. else _this.playVideo();
  378. _this.socket.emit('songs.getOwnSongRatings', data.currentSong._id, (data) => {
  379. if (_this.currentSong._id === data.songId) {
  380. _this.liked = data.liked;
  381. _this.disliked = data.disliked;
  382. }
  383. });
  384. } else {
  385. if (_this.playerReady) _this.player.pauseVideo();
  386. console.log("NO SONG TRUE2", data);
  387. _this.noSong = true;
  388. }
  389. });
  390. _this.socket.on('event:stations.pause', data => {
  391. _this.pauseLocalStation();
  392. });
  393. _this.socket.on('event:stations.resume', data => {
  394. _this.timePaused = data.timePaused;
  395. _this.resumeLocalStation();
  396. });
  397. _this.socket.on('event:song.like', data => {
  398. if (!this.noSong) {
  399. if (data.songId === _this.currentSong._id) {
  400. _this.currentSong.likes++;
  401. if (data.undisliked) _this.currentSong.dislikes--;
  402. }
  403. }
  404. });
  405. _this.socket.on('event:song.dislike', data => {
  406. if (!this.noSong) {
  407. if (data.songId === _this.currentSong._id) {
  408. _this.currentSong.dislikes++;
  409. if (data.unliked) _this.currentSong.likes--;
  410. }
  411. }
  412. });
  413. _this.socket.on('event:song.unlike', data => {
  414. if (!this.noSong) {
  415. if (data.songId === _this.currentSong._id) _this.currentSong.likes--;
  416. }
  417. });
  418. _this.socket.on('event:song.undislike', data => {
  419. if (!this.noSong) {
  420. if (data.songId === _this.currentSong._id) _this.currentSong.dislikes--;
  421. }
  422. });
  423. _this.socket.on('event:song.newRatings', data => {
  424. if (!this.noSong) {
  425. if (data.songId === _this.currentSong._id) {
  426. _this.liked = data.liked;
  427. _this.disliked = data.disliked;
  428. }
  429. }
  430. });
  431. _this.socket.on('event:queue.update', queue => {
  432. if (this.type === 'community') {
  433. this.queue = queue;
  434. }
  435. });
  436. _this.socket.on('event:song.voteSkipSong', () => {
  437. if (this.currentSong) {
  438. this.currentSong.skipVotes++;
  439. }
  440. });
  441. _this.socket.on('event:privatePlaylist.selected', (playlistId) => {
  442. if (this.type === 'community') {
  443. this.station.privatePlaylist = playlistId;
  444. }
  445. });
  446. });
  447. let volume = parseInt(localStorage.getItem("volume"));
  448. volume = (typeof volume === "number") ? volume : 20;
  449. $("#volumeSlider").val(volume);
  450. },
  451. components: {
  452. OfficialHeader,
  453. CommunityHeader,
  454. SongQueue,
  455. EditPlaylist,
  456. CreatePlaylist,
  457. EditStation,
  458. Report,
  459. QueueSidebar,
  460. PlaylistSidebar,
  461. UsersSidebar
  462. }
  463. }
  464. </script>
  465. <style lang="scss">
  466. .noSong {
  467. color: #03A9F4;
  468. text-align: center;
  469. }
  470. .slideout {
  471. top: 50px;
  472. height: 100%;
  473. position: fixed;
  474. right: 0;
  475. width: 350px;
  476. background-color: white;
  477. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  478. .slideout-header {
  479. text-align: center;
  480. background-color: rgb(3, 169, 244) !important;
  481. margin: 0;
  482. padding-top: 5px;
  483. padding-bottom: 7px;
  484. color: white;
  485. }
  486. .slideout-content {
  487. height: 100%;
  488. }
  489. }
  490. .modal-large {
  491. width: 75%;
  492. }
  493. .station {
  494. flex: 1 0 auto;
  495. padding-top: 0.5vw;
  496. transition: all 0.1s;
  497. margin: 0 auto;
  498. max-width: 1280px;
  499. width: 90%;
  500. @media only screen and (min-width: 993px) {
  501. width: 70%;
  502. }
  503. @media only screen and (min-width: 601px) {
  504. width: 85%;
  505. }
  506. input[type=range] {
  507. -webkit-appearance: none;
  508. width: 100%;
  509. margin: 7.3px 0;
  510. }
  511. input[type=range]:focus {
  512. outline: none;
  513. }
  514. input[type=range]::-webkit-slider-runnable-track {
  515. width: 100%;
  516. height: 5.2px;
  517. cursor: pointer;
  518. box-shadow: 0;
  519. background: #c2c0c2;
  520. border-radius: 0;
  521. border: 0;
  522. }
  523. input[type=range]::-webkit-slider-thumb {
  524. box-shadow: 0;
  525. border: 0;
  526. height: 19px;
  527. width: 19px;
  528. border-radius: 15px;
  529. background: #03a9f4;
  530. cursor: pointer;
  531. -webkit-appearance: none;
  532. margin-top: -6.5px;
  533. }
  534. input[type=range]::-moz-range-track {
  535. width: 100%;
  536. height: 5.2px;
  537. cursor: pointer;
  538. box-shadow: 0;
  539. background: #c2c0c2;
  540. border-radius: 0;
  541. border: 0;
  542. }
  543. input[type=range]::-moz-range-thumb {
  544. box-shadow: 0;
  545. border: 0;
  546. height: 19px;
  547. width: 19px;
  548. border-radius: 15px;
  549. background: #03a9f4;
  550. cursor: pointer;
  551. -webkit-appearance: none;
  552. margin-top: -6.5px;
  553. }
  554. input[type=range]::-ms-track {
  555. width: 100%;
  556. height: 5.2px;
  557. cursor: pointer;
  558. box-shadow: 0;
  559. background: #c2c0c2;
  560. border-radius: 1.3px;
  561. }
  562. input[type=range]::-ms-fill-lower {
  563. background: #c2c0c2;
  564. border: 0;
  565. border-radius: 0;
  566. box-shadow: 0;
  567. }
  568. input[type=range]::-ms-fill-upper {
  569. background: #c2c0c2;
  570. border: 0;
  571. border-radius: 0;
  572. box-shadow: 0;
  573. }
  574. input[type=range]::-ms-thumb {
  575. box-shadow: 0;
  576. border: 0;
  577. height: 15px;
  578. width: 15px;
  579. border-radius: 15px;
  580. background: #03a9f4;
  581. cursor: pointer;
  582. -webkit-appearance: none;
  583. margin-top: 1.5px;
  584. }
  585. .video-container {
  586. position: relative;
  587. padding-bottom: 56.25%;
  588. height: 0;
  589. overflow: hidden;
  590. iframe {
  591. position: absolute;
  592. top: 0;
  593. left: 0;
  594. width: 100%;
  595. height: 100%;
  596. }
  597. }
  598. .video-col {
  599. padding-right: 0.75rem;
  600. padding-left: 0.75rem;
  601. }
  602. }
  603. .room-title {
  604. left: 50%;
  605. -webkit-transform: translateX(-50%);
  606. transform: translateX(-50%);
  607. font-size: 2.1em;
  608. }
  609. #ratings {
  610. span {
  611. font-size: 1.68rem;
  612. }
  613. i {
  614. color: #9e9e9e !important;
  615. cursor: pointer;
  616. transition: 0.1s color;
  617. }
  618. }
  619. #time-display {
  620. margin-top: 30px;
  621. float: right;
  622. }
  623. #thumbs_up:hover, #thumbs_up.liked {
  624. color: #87D37C !important;
  625. }
  626. #thumbs_down:hover, #thumbs_down.disliked {
  627. color: #EC644B !important;
  628. }
  629. #song-thumbnail {
  630. max-width: 100%;
  631. width: 85%;
  632. }
  633. .seeker-bar-container {
  634. position: relative;
  635. height: 5px;
  636. display: block;
  637. width: 100%;
  638. overflow: hidden;
  639. }
  640. .seeker-bar {
  641. top: 0;
  642. left: 0;
  643. bottom: 0;
  644. position: absolute;
  645. }
  646. ul {
  647. list-style: none;
  648. margin: 0;
  649. display: block;
  650. }
  651. h1, h2, h3, h4, h5, h6 {
  652. font-weight: 400;
  653. line-height: 1.1;
  654. }
  655. h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  656. font-weight: inherit;
  657. }
  658. h1 {
  659. font-size: 4.2rem;
  660. line-height: 110%;
  661. margin: 2.1rem 0 1.68rem 0;
  662. }
  663. h2 {
  664. font-size: 3.56rem;
  665. line-height: 110%;
  666. margin: 1.78rem 0 1.424rem 0;
  667. }
  668. h3 {
  669. font-size: 2.92rem;
  670. line-height: 110%;
  671. margin: 1.46rem 0 1.168rem 0;
  672. }
  673. h4 {
  674. font-size: 2.28rem;
  675. line-height: 110%;
  676. margin: 1.14rem 0 0.912rem 0;
  677. }
  678. h5 {
  679. font-size: 1.64rem;
  680. line-height: 110%;
  681. margin: 0.82rem 0 0.656rem 0;
  682. }
  683. h6 {
  684. font-size: 1rem;
  685. line-height: 110%;
  686. margin: 0.5rem 0 0.4rem 0;
  687. }
  688. .thin {
  689. font-weight: 200;
  690. }
  691. .left {
  692. float: left !important;
  693. }
  694. .right {
  695. float: right !important;
  696. }
  697. .light-blue {
  698. background-color: #03a9f4 !important;
  699. }
  700. .white {
  701. background-color: #FFFFFF !important;
  702. }
  703. .btn-search {
  704. font-size: 14px;
  705. }
  706. </style>