app.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071
  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-details{
  714. margin-bottom: 5px;
  715. }
  716. .contact-details .material-icons{
  717. float: left;
  718. }
  719. .settings-label {
  720. color: #50a3a2;
  721. line-height: 18px;
  722. }
  723. .faq-small {
  724. color: white;
  725. }
  726. .questions {
  727. color: white;
  728. font-size: 100;
  729. }
  730. .answers {
  731. color: white;
  732. font-size: 50;
  733. }
  734. #header-dropdown {
  735. top: 100% !important;
  736. height: auto;
  737. padding: 5px 0;
  738. margin: 2px 0 0;
  739. border: 1px solid #ccc;
  740. border: 1px solid rgba(0, 0, 0, .15);
  741. border-radius: 4px;
  742. overflow: inherit;
  743. font-size: 14px;
  744. letter-spacing: inherit;
  745. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  746. box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  747. background-color: #51BCA3;
  748. }
  749. #header-dropdown li:hover {
  750. background-color: #3A8876;
  751. }
  752. #ban-icon {
  753. font-size: 20em;
  754. text-align: center;
  755. width: 100%;
  756. z-index: 3;
  757. }
  758. #banned-container {
  759. color: white;
  760. }
  761. .social-link{
  762. margin-right: 5px;
  763. }
  764. @media (max-width: 991px){
  765. .contact-img{
  766. float: none;
  767. margin-bottom: 0;
  768. }
  769. }
  770. .header-avatar {
  771. margin-top: -9px;
  772. /*width: 40px;
  773. height: 40px;*/
  774. margin-right: 5px;
  775. float: left;
  776. }
  777. .profile-img{
  778. width: 100px;
  779. height: 100px;
  780. margin: 0 auto;
  781. }
  782. .profile-img .avatar-initials{
  783. line-height: 100px !important;
  784. }
  785. #doorbell-email{
  786. color: black;
  787. }
  788. .song-panel{
  789. max-height: 400px;
  790. overflow-y: scroll;
  791. overflow-x: hidden;
  792. }
  793. .song-panel-room{
  794. float: right;
  795. }
  796. /*Credit to: http://thecodeplayer.com/walkthrough/custom-animated-checkbox-inputs-using-css-iconfonts*/
  797. #two-label {
  798. position: relative;
  799. padding-left: 30px;
  800. font-size: 14px;
  801. cursor: pointer;
  802. margin-bottom: 15px;
  803. color: white;
  804. padding-top: 3px;
  805. }
  806. #two-label:before, #two-label:after {
  807. font-family: FontAwesome;
  808. font-size: 21px;
  809. /*absolutely positioned*/
  810. position: absolute; top: 0; left: 0;
  811. }
  812. #two-label:before {
  813. content: '\f096'; /*unchecked*/
  814. }
  815. #two-label:after {
  816. content: '\f046'; /*checked*/
  817. /*checked icon will be hidden by default by using 0 max-width and overflow hidden*/
  818. max-width: 0;
  819. overflow: hidden;
  820. opacity: 0.5;
  821. /*CSS3 transitions for animated effect*/
  822. transition: all 0.35s;
  823. }
  824. /*hiding the original checkboxes*/
  825. input[type="checkbox"] {
  826. display: none;
  827. }
  828. /*when the user checks the checkbox the checked icon will animate in*/
  829. input[type="checkbox"]:checked + #two-label:after {
  830. max-width: 25px; /*an arbitratry number more than the icon's width*/
  831. opacity: 1; /*for fade in effect*/
  832. }
  833. #two+label:before, #two+label:after {color: hsl(180, 45%, 40%);}
  834. /*End of checkbox awesomeness!*/
  835. #chat-tab, #global-chat-tab {
  836. -webkit-transition: background-color 500ms linear;
  837. -moz-transition: background-color 500ms linear;
  838. -ms-transition: background-color 500ms linear;
  839. -o-transition: background-color 500ms linear;
  840. transition: background-color 500ms linear;
  841. }
  842. .unread-messages {
  843. background-color: orange;
  844. }
  845. .profile-action{
  846. float: right;
  847. }
  848. #submit-name{
  849. margin-left: 10px;
  850. }
  851. #submit-username{
  852. margin-left: 10px;
  853. }
  854. .settings-option{
  855. margin: 5px 0;
  856. font-size: 1.2em;
  857. }
  858. .settings-input {
  859. margin-bottom: 10px;
  860. }
  861. .disabled {
  862. cursor: not-allowed;
  863. opacity: 1;
  864. background-color: rgba(235, 235, 228, 0.5) !important;
  865. }
  866. #youtube-playlist-button {
  867. background-color: rgba(220, 25, 43, 1);
  868. margin-right: auto;
  869. margin-left: auto;
  870. color: rgba(253, 253, 254, 1);
  871. display: block;
  872. }
  873. .remove-import-song {
  874. position: absolute;
  875. right: 0px;
  876. top: 0px;
  877. }
  878. .remove-import-song:hover {
  879. color: #0e90d2;
  880. cursor: pointer;
  881. }
  882. #current-arrow {
  883. color: #0e90d2;
  884. }
  885. #import-progress-container {
  886. width: 304px;
  887. margin-right: auto;
  888. margin-left: auto;
  889. margin-top: 10px;
  890. color: #50a3a2;
  891. }
  892. #add-youtube-playlist {
  893. background-color: green;
  894. color: white;
  895. margin-top: 10px;
  896. margin-left: auto;
  897. margin-right: auto;
  898. display: block;
  899. }
  900. .card-content i{
  901. line-height: inherit;
  902. float: left;
  903. }
  904. .card-image img{
  905. opacity: 1;
  906. transition: 0.3s;
  907. }
  908. .card-image img:hover{
  909. opacity: 0.5;
  910. }
  911. .user-num{
  912. font-size: 1.5em;
  913. }
  914. .scroll-fix{
  915. margin-right: 20px;
  916. }
  917. .profile-card{
  918. min-width: 300px;
  919. max-height: 500px;
  920. }
  921. .profile-card-song{
  922. overflow-y: scroll;
  923. }
  924. .text-center{
  925. text-align: center;
  926. }
  927. .avatar{
  928. width: auto;
  929. height: auto;
  930. }
  931. .lowercase{
  932. text-transform: none !important;
  933. }
  934. .modal-trigger{
  935. margin-left: 10px;
  936. }