app.css 18 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084
  1. @import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300);
  2. body {
  3. display: flex;
  4. min-height: 100vh;
  5. flex-direction: column;
  6. background-color: rgb(245, 245, 245);
  7. }
  8. main {
  9. flex: 1 0 auto;
  10. }
  11. .brand-logo {
  12. margin-left: 10px;
  13. }
  14. .admin-container {
  15. background-color: rgb(102, 205, 170);
  16. color: white;
  17. overflow-y: scroll;
  18. margin-top: 20px;
  19. }
  20. .admin-container div {
  21. padding-bottom: 10px;
  22. text-align: center;
  23. }
  24. .admin-container div a {
  25. text-decoration: none;
  26. font-size: 22px;
  27. padding-left: 5px;
  28. vertical-align: top;
  29. }
  30. .admin-container div a:hover {
  31. text-decoration: none;
  32. }
  33. .admin-container h1 {
  34. margin: 0;
  35. display: inline-block;
  36. }
  37. .admin-container p {
  38. font-size: 22px;
  39. }
  40. .admin-container a {
  41. color: white;
  42. font-size: 16px;
  43. }
  44. .queueTable th {
  45. font-size: 22px;
  46. text-align: center;
  47. }
  48. .queueTable td {
  49. padding: 10px;
  50. font-size: 18px;
  51. }
  52. .g-recaptcha {
  53. -webkit-appearance: none;
  54. -moz-appearance: none;
  55. appearance: none;
  56. outline: 0;
  57. width: 304px;
  58. margin: 0 auto 10px auto;
  59. display: block;
  60. text-align: center;
  61. font-size: 18px;
  62. color: white;
  63. -webkit-transition-duration: 0.25s;
  64. transition-duration: 0.25s;
  65. font-weight: 300;
  66. }
  67. .button-nowidth {
  68. -webkit-appearance: none;
  69. -moz-appearance: none;
  70. appearance: none;
  71. outline: 0;
  72. background-color: white;
  73. border: 0;
  74. padding: 10px 15px;
  75. color: #53e3a6;
  76. border-radius: 3px;
  77. cursor: pointer;
  78. font-size: 18px;
  79. -webkit-transition-duration: 0.25s;
  80. transition-duration: 0.25s;
  81. }
  82. .button-nowidth:hover {
  83. background-color: #f5f7f9;
  84. }
  85. .button {
  86. -webkit-appearance: none;
  87. -moz-appearance: none;
  88. appearance: none;
  89. outline: 0;
  90. background-color: white;
  91. border: 0;
  92. padding: 10px 15px;
  93. color: #53e3a6;
  94. border-radius: 3px;
  95. width: 304px;
  96. cursor: pointer;
  97. font-size: 18px;
  98. -webkit-transition-duration: 0.25s;
  99. transition-duration: 0.25s;
  100. }
  101. .button:hover {
  102. background-color: #f5f7f9;
  103. }
  104. .station {
  105. background-color: rgba(102, 205, 170, 0.7);
  106. height: 300px;
  107. width: 300px;
  108. border-radius: 100%;
  109. text-align: center;
  110. color: white;
  111. font-family: Sans-serif;
  112. /*float: left;*/
  113. margin-right: auto;
  114. margin-left: auto;
  115. position: relative;
  116. }
  117. .station > h3 {
  118. line-height: 0px;
  119. font-size: 42px;
  120. margin-bottom: 90px;
  121. }
  122. .station > h5 {
  123. margin-top: -40px;
  124. font-size: 15px;
  125. }
  126. .room-name {
  127. font-size: 3.5em;
  128. color: white;
  129. font-weight: 600;
  130. text-align: center;
  131. }
  132. .room-title {
  133. font-size: 2.5em;
  134. color: white;
  135. font-weight: 600;
  136. }
  137. .room-artist {
  138. font-size: 1.5em;
  139. color: white;
  140. }
  141. #seeker-bar {
  142. background-color: black;
  143. width: 0;
  144. height: 10px;
  145. clear: both;
  146. background-color: rgba(16, 140, 146, 0.8);
  147. }
  148. .song-input {
  149. -webkit-appearance: none;
  150. -moz-appearance: none;
  151. appearance: none;
  152. outline: 0;
  153. border: 1px solid rgba(255, 255, 255, 0.4);
  154. background-color: rgba(255, 255, 255, 0.2);
  155. width: 304px;
  156. border-radius: 3px;
  157. padding: 10px 15px;
  158. margin: 1em auto 10px auto;
  159. display: block;
  160. text-align: center;
  161. font-size: 18px;
  162. color: white;
  163. -webkit-transition-duration: 0.25s;
  164. transition-duration: 0.25s;
  165. font-weight: 300;
  166. }
  167. #chat-input, #global-chat-input {
  168. -webkit-appearance: none;
  169. -moz-appearance: none;
  170. appearance: none;
  171. outline: 0;
  172. border: 1px solid white;
  173. background-color: transparent;
  174. width: 100%;
  175. height: 70px;
  176. padding: 5px;
  177. border-radius: 3px;
  178. text-align: left;
  179. font-size: 18px;
  180. color: #1C39B2;
  181. -webkit-transition-duration: 0.25s;
  182. transition-duration: 0.25s;
  183. font-weight: 300;
  184. resize: none;
  185. }
  186. .song-input-select {
  187. -webkit-appearance: none;
  188. -moz-appearance: none;
  189. appearance: none;
  190. outline: 0;
  191. border: 1px solid rgba(255, 255, 255, 0.4);
  192. background-color: rgba(255, 255, 255, 0.2);
  193. width: 304px;
  194. border-radius: 3px;
  195. padding: 10px 15px;
  196. margin: 1em auto 10px auto;
  197. display: block;
  198. text-align: center;
  199. font-size: 18px;
  200. color: white;
  201. -webkit-transition-duration: 0.25s;
  202. transition-duration: 0.25s;
  203. font-weight: 300;
  204. }
  205. .song-input:hover {
  206. background-color: rgba(255, 255, 255, 0.4);
  207. }
  208. .song-input:focus {
  209. background-color: rgba(255, 255, 255, 0.4);
  210. }
  211. .song-input-select:hover {
  212. background-color: rgba(255, 255, 255, 0.4);
  213. }
  214. .song-input-select > option {
  215. color: black;
  216. background-color: rgba(255, 255, 255, 0.2);
  217. }
  218. .song-input:focus {
  219. width: 354px;
  220. color: white;
  221. }
  222. #search-song {
  223. display: block;
  224. margin: 0 auto;
  225. }
  226. #song-results, #youtube-import-queue {
  227. margin: 0 auto;
  228. color: white;
  229. margin-top: 1em;
  230. font-size: 1.5em;
  231. text-align: center;
  232. }
  233. .youtube-import-queue-item {
  234. position: relative !important;
  235. }
  236. #song-results > div {
  237. margin: 0;
  238. padding: 5px;
  239. text-align: left;
  240. border-bottom: 1px solid white;
  241. transition: background-color 300ms linear;
  242. transition: color 300ms linear;
  243. }
  244. #song-results > div:last-child {
  245. border-bottom: 0;
  246. }
  247. #song-results > div:hover {
  248. color: #0e90d2;
  249. background-color: rgba(255, 255, 255, 0.5);
  250. cursor: pointer;
  251. }
  252. .song-result-thumbnail {
  253. width: 224px;
  254. height: 126px;
  255. margin-top: 50px;
  256. margin-left: auto;
  257. margin-right: auto;
  258. word-break: break-all;
  259. display: block;
  260. }
  261. .song-result-title {
  262. margin-left: 20px;
  263. margin-top: 10px;
  264. display: block;
  265. box-sizing: border-box;
  266. font-size: 1.4em;
  267. }
  268. .song-result-channel {
  269. margin-left: 20px;
  270. margin-top: 5px;
  271. display: block;
  272. box-sizing: border-box;
  273. font-size: 0.9em;
  274. }
  275. #player {
  276. z-index: 10;
  277. }
  278. .hidden {
  279. visibility: hidden;
  280. }
  281. .hidden-2 {
  282. visibility: hidden;
  283. height: 0px;
  284. width: 0px;
  285. margin: 0;
  286. padding: 0;
  287. }
  288. .footerButtons {
  289. background: none !important;
  290. border: none;
  291. padding: 0 !important;
  292. font: inherit;
  293. cursor: pointer;
  294. }
  295. .footerButtons:hover {
  296. background-color: #f5f7f9;
  297. }
  298. .song-img {
  299. width: 210px;
  300. height: 210px;
  301. }
  302. #seeker-container {
  303. width: calc(100% - 70px);
  304. margin-left: 30px;
  305. margin-right: 35px;
  306. overflow: hidden;
  307. }
  308. .pl-container {
  309. color: #53e3a6;
  310. background-color: white;
  311. border-radius: 3px;
  312. font-size: 18px;
  313. }
  314. .pl-container h4 {
  315. text-align: center;
  316. font-size: 40px;
  317. margin-bottom: 10px;
  318. }
  319. #spinner {
  320. font-size: 200px;
  321. color: bisque;
  322. }
  323. #spinner-container {
  324. margin-left: auto;
  325. margin-right: auto;
  326. width: 200px;
  327. margin-top: 10%;
  328. }
  329. #croom_container, #calert_container {
  330. margin-left: auto;
  331. margin-right: auto;
  332. margin-bottom: 10px;
  333. width: 304px !important;
  334. }
  335. .croom_label, .calert_label {
  336. color: white;
  337. }
  338. .croom, .calert {
  339. width: 304px !important;
  340. }
  341. #calert-priority > option {
  342. color: black;
  343. }
  344. #spinner {
  345. font-size: 200px;
  346. color: bisque;
  347. }
  348. #spinner-container {
  349. margin-left: auto;
  350. margin-right: auto;
  351. width: 200px;
  352. margin-top: 10%;
  353. }
  354. .modal-content {
  355. background-color: rgb(107, 197, 164);
  356. color: white;
  357. }
  358. .song-input-label {
  359. width: 100%;
  360. text-align: center;
  361. }
  362. .station_link {
  363. position: absolute;
  364. width: 100%;
  365. height: 100%;
  366. top: 0;
  367. left: 0;
  368. border-radius: 100%;
  369. }
  370. ul#playlist{
  371. margin-top: 50px;
  372. padding-left: 5px;
  373. }
  374. #playlist {
  375. margin: 0;
  376. color: white;
  377. font-size: 21px;
  378. max-height: 100%;
  379. height: 100%;
  380. /*overflow: auto;*/
  381. }
  382. #playlist-ul {
  383. margin: 0;
  384. color: white;
  385. font-size: 21px;
  386. max-height: calc(100% - 48px);
  387. height: calc(100% - 48px);
  388. overflow: auto;
  389. padding-left: 5px;
  390. }
  391. #s2 {
  392. opacity: 0.66666666666666;
  393. }
  394. #s3 {
  395. opacity: 0.33333333333333;
  396. }
  397. #add-song-button, #get-spotify-info, #save-song-button, #report-song-button {
  398. display: block;
  399. margin: 0 auto;
  400. }
  401. .alert {
  402. text-align: center;
  403. }
  404. @media (max-width: 992px) {
  405. /* some think */
  406. #s3 {
  407. visibility: hidden;
  408. height: 0;
  409. }
  410. }
  411. @media (max-width: 768px) {
  412. /* some think */
  413. #s2 {
  414. visibility: hidden;
  415. height: 0;
  416. }
  417. }
  418. .column-small {
  419. width: 1px;
  420. }
  421. #return {
  422. display: block;
  423. margin: 0 auto 20px auto;
  424. }
  425. #song-media {
  426. margin-left: 10px;
  427. min-height: 460px;
  428. }
  429. #station-main {
  430. margin: 0;
  431. padding: 0;
  432. }
  433. #station-main nav {
  434. height: 50px;
  435. color: white;
  436. }
  437. /*Navbar HAMBURGUR*/
  438. .navbar-default .navbar-toggle .icon-bar{
  439. background-color: white;
  440. }
  441. .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus{
  442. background-color: transparent;
  443. }
  444. .navbar-default .navbar-toggle{
  445. background-color: transparent;
  446. }
  447. nav form{
  448. height: 0;
  449. }
  450. nav form input[type="image"]{
  451. width: 100px;
  452. background-color: transparent !important;
  453. border: none !important;
  454. margin-top: -15px;
  455. }
  456. #station-main nav i {
  457. margin-left: 1em;
  458. font-size: 2em;
  459. }
  460. #station-main nav h3 {
  461. display: inline-block;
  462. margin: 10px auto;
  463. margin-left: 50%;
  464. font-size: 2em;
  465. }
  466. #side-panel {
  467. height: 100vh;
  468. padding-left: 0;
  469. padding-right: 0;
  470. background-color: rgba(255, 255, 255, 0.4);
  471. }
  472. .embed-responsive {
  473. margin-top: 15px;
  474. }
  475. #header {
  476. margin-bottom: 0px;
  477. }
  478. .user-stat {
  479. font-size: 20px;
  480. color: #53e3a6;
  481. }
  482. #profile-name {
  483. font-size: 60px;
  484. color: #FFFFFF;
  485. margin-right: auto;
  486. margin-left: auto;
  487. text-align: center;
  488. }
  489. .admin-queue-panel:first-child {
  490. margin-top: 20px;
  491. }
  492. #songs {
  493. margin-top: -200px;
  494. margin-bottom: 20px;
  495. }
  496. .back {
  497. color: white;
  498. }
  499. .back:hover {
  500. color: white;
  501. }
  502. #volume-container {
  503. width: 172px; /*12.5 px each side*/
  504. float: right;
  505. height: 100%;
  506. }
  507. #volume-container > .slider {
  508. top: 40%;
  509. transform: translateY(-40%);
  510. padding-right: 12px;
  511. padding-left: 12px;
  512. margin-left: 12px;
  513. float: left;
  514. }
  515. #volume-container-admin {
  516. display: inline-block;
  517. width: 174px;
  518. margin-left: 10px;
  519. }
  520. #volume-container-admin > .slider {
  521. width: 150px !important;
  522. padding-left: 12px;
  523. padding-right: 12px;
  524. margin-left: 12px;
  525. }
  526. #volume-icon {
  527. /*margin-left: 320px !important;*/
  528. margin: 0 !important;
  529. float: left;
  530. margin-top: 7px !important;
  531. width: 12px;
  532. }
  533. #settings {
  534. margin-top: 10px;
  535. margin-left: 10px;
  536. }
  537. #voting {
  538. margin-top: 10px;
  539. margin-left: 10px;
  540. }
  541. #loginregistercontainer {
  542. margin-bottom: 100px;
  543. }
  544. .admin-header {
  545. color: white;
  546. }
  547. .admin-panel-body {
  548. max-height: 400px;
  549. overflow-y: scroll;
  550. overflow-x: hidden;
  551. }
  552. .terms, .privacy, .about {
  553. color: white;
  554. }
  555. .about a{
  556. color: white;
  557. }
  558. #play, #pause, #skip, #shuffle, #sync, #unlock, #lock {
  559. cursor: pointer;
  560. }
  561. .delete-room {
  562. display: inline-block;
  563. cursor: pointer;
  564. }
  565. .delete-room:hover {
  566. color: red;
  567. }
  568. .panel-title {
  569. display: inline-block;
  570. }
  571. .report-layer-1 {
  572. margin-left: 19%;
  573. }
  574. .report-layer-2 {
  575. margin-left: 80px;
  576. }
  577. .other-textarea {
  578. outline: 0px;
  579. border: 1px solid rgba(255, 255, 255, 0.4);
  580. width: 304px;
  581. border-radius: 3px;
  582. padding: 10px 15px;
  583. margin: 5px -285.578px 10px 0px;
  584. display: block;
  585. text-align: left;
  586. font-size: 18px;
  587. color: white;
  588. transition-duration: 0.25s;
  589. font-weight: 300;
  590. background-color: rgba(255, 255, 255, 0.2);
  591. resize: vertical;
  592. }
  593. #room-header {
  594. position: absolute;
  595. left: 0;
  596. right: 0;
  597. margin-left: auto;
  598. margin-right: auto;
  599. width: 100px;
  600. }
  601. #room-icons {
  602. margin-top: 11px;
  603. float: left;
  604. }
  605. #time-display {
  606. color: white;
  607. }
  608. .action-button {
  609. float: left;
  610. width: 100%;
  611. }
  612. .chat-message {
  613. font-size: 20px;
  614. color: white;
  615. }
  616. .chat-message:first-child {
  617. margin-top: 30px;
  618. }
  619. #chat-ul, #global-chat-ul {
  620. margin: 0;
  621. padding: 0 15px 0 15px;
  622. padding-bottom: 20px;
  623. word-break: normal;
  624. word-wrap: break-word;
  625. height: 82%;
  626. overflow-y: scroll;
  627. }
  628. .chat-message:nth-child(even) {
  629. color: white;
  630. }
  631. .chat-message:nth-child(odd) {
  632. color: darkblue;
  633. }
  634. #submit, #global-submit {
  635. margin-bottom: 10px;
  636. cursor: pointer;
  637. }
  638. #submit button, #global-submit button{
  639. width: 100%;
  640. font-size: 1.5em;
  641. }
  642. #submit i, #global-submit i{
  643. margin-left: 10px;
  644. }
  645. #chat-input-div, #global-chat-input-div {
  646. width: 100%;
  647. padding-left: 15px;
  648. padding-right: 15px;
  649. }
  650. .rank-admin {
  651. color: crimson;
  652. font-size: 20px;
  653. font-weight: bold;
  654. }
  655. .rank-mod, .rank-moderator {
  656. color: darkgoldenrod;
  657. font-size: 20px;
  658. font-weight: bold;
  659. }
  660. .rank-default {
  661. font-size: 0px;
  662. }
  663. .sidebar-content {
  664. height: calc(100% - 42px);
  665. }
  666. #chat, #global-chat {
  667. height:100%;
  668. }
  669. .navbar-default .navbar-nav .open .dropdown-menu>li>a,.navbar-default .navbar-nav .open .dropdown-menu {
  670. background-color: transparent;
  671. color:#ffffff;
  672. }
  673. .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  674. background-color: transparent;
  675. color:#ffffff;
  676. }
  677. #doorbell-button{
  678. margin-right: 30em;
  679. }
  680. #doorbell-email {
  681. text-align: left;
  682. }
  683. #search-playlist{
  684. outline: 0;
  685. border: none;
  686. border-bottom: 3px solid rgba(255, 255, 255, 0.4);
  687. background-color: #50a3a2;
  688. width: 100%;
  689. padding: 10px 15px;
  690. margin: 0 auto 0 auto;
  691. display: block;
  692. text-align: center;
  693. font-size: 18px;
  694. color: white;
  695. }
  696. .nav-tabs li a{
  697. color: white;
  698. }
  699. .navbar-overflow-y-hidden {
  700. overflow-y: hidden;
  701. }
  702. /* https://css-tricks.com/custom-scrollbars-in-webkit/ */
  703. ::-webkit-scrollbar {
  704. width: 8px;
  705. }
  706. ::-webkit-scrollbar-track {
  707. border-radius: 10px;
  708. }
  709. ::-webkit-scrollbar-thumb {
  710. border-radius: 10px;
  711. background-color: white;
  712. }
  713. .contact-name {
  714. float: left;
  715. }
  716. .contact-img {
  717. float: left;
  718. margin-bottom: 20px;
  719. margin-right: 20px;
  720. }
  721. .contact-ul {
  722. clear: left;
  723. }
  724. .contact-option {
  725. font-size: 22px;
  726. }
  727. #contact-container {
  728. margin-top: 30px;
  729. margin-bottom: 200px;
  730. }
  731. .contact-icon {
  732. margin-right: 10px;
  733. width: 28px;
  734. height: 28px;
  735. font-size: 28px !important;
  736. }
  737. .contact-pos {
  738. padding-top: -10px;
  739. margin-top: 70px;
  740. }
  741. .settings-label {
  742. color: #50a3a2;
  743. line-height: 18px;
  744. }
  745. .faq-small {
  746. color: white;
  747. }
  748. .questions {
  749. color: white;
  750. font-size: 100;
  751. }
  752. .answers {
  753. color: white;
  754. font-size: 50;
  755. }
  756. #header-dropdown {
  757. top: 100% !important;
  758. height: auto;
  759. padding: 5px 0;
  760. margin: 2px 0 0;
  761. border: 1px solid #ccc;
  762. border: 1px solid rgba(0, 0, 0, .15);
  763. border-radius: 4px;
  764. overflow: inherit;
  765. font-size: 14px;
  766. letter-spacing: inherit;
  767. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  768. box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  769. background-color: #51BCA3;
  770. }
  771. #header-dropdown li:hover {
  772. background-color: #3A8876;
  773. }
  774. #ban-icon {
  775. font-size: 20em;
  776. text-align: center;
  777. width: 100%;
  778. z-index: 3;
  779. }
  780. #banned-container {
  781. color: white;
  782. }
  783. .social-link{
  784. margin-right: 5px;
  785. }
  786. @media (max-width: 991px){
  787. .contact-img{
  788. float: none;
  789. margin-bottom: 0;
  790. }
  791. }
  792. .header-avatar {
  793. margin-top: -9px;
  794. /*width: 40px;
  795. height: 40px;*/
  796. margin-right: 5px;
  797. float: left;
  798. }
  799. .profile-img{
  800. width: 100px;
  801. height: 100px;
  802. margin: 0 auto;
  803. }
  804. .profile-img .avatar-initials{
  805. line-height: 100px !important;
  806. }
  807. #doorbell-email{
  808. color: black;
  809. }
  810. .song-panel{
  811. max-height: 400px;
  812. overflow-y: scroll;
  813. overflow-x: hidden;
  814. }
  815. .song-panel-room{
  816. float: right;
  817. }
  818. /*Credit to: http://thecodeplayer.com/walkthrough/custom-animated-checkbox-inputs-using-css-iconfonts*/
  819. #two-label {
  820. position: relative;
  821. padding-left: 30px;
  822. font-size: 14px;
  823. cursor: pointer;
  824. margin-bottom: 15px;
  825. color: white;
  826. padding-top: 3px;
  827. }
  828. #two-label:before, #two-label:after {
  829. font-family: FontAwesome;
  830. font-size: 21px;
  831. /*absolutely positioned*/
  832. position: absolute; top: 0; left: 0;
  833. }
  834. #two-label:before {
  835. content: '\f096'; /*unchecked*/
  836. }
  837. #two-label:after {
  838. content: '\f046'; /*checked*/
  839. /*checked icon will be hidden by default by using 0 max-width and overflow hidden*/
  840. max-width: 0;
  841. overflow: hidden;
  842. opacity: 0.5;
  843. /*CSS3 transitions for animated effect*/
  844. transition: all 0.35s;
  845. }
  846. /*hiding the original checkboxes*/
  847. input[type="checkbox"] {
  848. display: none;
  849. }
  850. /*when the user checks the checkbox the checked icon will animate in*/
  851. input[type="checkbox"]:checked + #two-label:after {
  852. max-width: 25px; /*an arbitratry number more than the icon's width*/
  853. opacity: 1; /*for fade in effect*/
  854. }
  855. #two+label:before, #two+label:after {color: hsl(180, 45%, 40%);}
  856. /*End of checkbox awesomeness!*/
  857. #chat-tab, #global-chat-tab {
  858. -webkit-transition: background-color 500ms linear;
  859. -moz-transition: background-color 500ms linear;
  860. -ms-transition: background-color 500ms linear;
  861. -o-transition: background-color 500ms linear;
  862. transition: background-color 500ms linear;
  863. }
  864. .unread-messages {
  865. background-color: orange;
  866. }
  867. .profile-action{
  868. float: right;
  869. }
  870. #submit-name{
  871. margin-left: 10px;
  872. }
  873. #submit-username{
  874. margin-left: 10px;
  875. }
  876. .settings-option{
  877. margin: 5px 0;
  878. font-size: 1.2em;
  879. }
  880. .settings-input {
  881. margin-bottom: 10px;
  882. }
  883. .disabled {
  884. cursor: not-allowed;
  885. opacity: 1;
  886. background-color: rgba(235, 235, 228, 0.5) !important;
  887. }
  888. #youtube-playlist-button {
  889. background-color: rgba(220, 25, 43, 1);
  890. margin-right: auto;
  891. margin-left: auto;
  892. color: rgba(253, 253, 254, 1);
  893. display: block;
  894. }
  895. .remove-import-song {
  896. position: absolute;
  897. right: 0px;
  898. top: 0px;
  899. }
  900. .remove-import-song:hover {
  901. color: #0e90d2;
  902. cursor: pointer;
  903. }
  904. #current-arrow {
  905. color: #0e90d2;
  906. }
  907. #import-progress-container {
  908. width: 304px;
  909. margin-right: auto;
  910. margin-left: auto;
  911. margin-top: 10px;
  912. color: #50a3a2;
  913. }
  914. #add-youtube-playlist {
  915. background-color: green;
  916. color: white;
  917. margin-top: 10px;
  918. margin-left: auto;
  919. margin-right: auto;
  920. display: block;
  921. }
  922. .card-content i{
  923. line-height: inherit;
  924. float: left;
  925. }
  926. .card-image img{
  927. opacity: 1;
  928. transition: 0.3s;
  929. }
  930. .card-image img:hover{
  931. opacity: 0.5;
  932. }
  933. .user-num{
  934. font-size: 1.5em;
  935. }
  936. .scroll-fix{
  937. margin-right: 20px;
  938. }
  939. .profile-card{
  940. min-width: 300px;
  941. max-height: 500px;
  942. }
  943. .profile-card-song{
  944. overflow-y: scroll;
  945. }
  946. .text-center{
  947. text-align: center;
  948. }