main.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598
  1. /*! Main CSS file */
  2. body {
  3. background-repeat:no-repeat;
  4. background-size:cover;
  5. background-position: center center;
  6. background:url(../img/daveo-background.svg) transparent;
  7. background:url(../img/daveo-background.svg),radial-gradient(yellow,#f06d06);
  8. /*
  9. background: -webkit-gradient(radial, center center, 0, center center, 460, from(transparent), to(#333));
  10. background: -webkit-radial-gradient(circle, transparent, #333);
  11. background: -moz-radial-gradient(circle, transparent, #333);
  12. background: -ms-radial-gradient(circle, transparent, #333);
  13. */
  14. }
  15. header {
  16. width:100%;
  17. min-height:150px;
  18. background:url(../img/daveo-header.svg) transparent;
  19. background-repeat:no-repeat;
  20. background-size:cover;
  21. background-position:center;
  22. padding: 50px 0 0;
  23. margin: 0;
  24. }
  25. .outer-container {
  26. width:100%;
  27. background-repeat:no-repeat;
  28. background-size:cover;
  29. background-position:center;
  30. }
  31. .panel-default {
  32. box-shadow: 5px 5px 8px #555, inset 0px 2px 3px #fff;
  33. background: rgba (145,145,145,.5);
  34. }
  35. #auth-modal {
  36. background: #000;
  37. background-image: url(img/pirate.jpg) no-repeat #000;
  38. color: #fff;
  39. }
  40. #auth-modal .modal-content{
  41. background: #333;
  42. color: #fff;
  43. }
  44. #modal_setnick {
  45. background: rgba(0,0,0,.8);
  46. }
  47. /* ========= Vertical Align Modals ============ */
  48. .vertical-alignment-helper {
  49. display:table;
  50. height: 100%;
  51. width: 100%;
  52. pointer-events:none; /* This makes sure that we can still click outside of the modal to close it */
  53. }
  54. .vertical-align-center {
  55. /* To center vertically */
  56. display: table-cell;
  57. vertical-align: middle;
  58. pointer-events:none;
  59. }
  60. .modal-content {
  61. /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
  62. width:inherit;
  63. height:inherit;
  64. /* To center horizontally */
  65. margin: 0 auto;
  66. pointer-events: all;
  67. }
  68. /***********************************
  69. ========== Audio Player ============
  70. ***********************************/
  71. #audio_player {
  72. background-color: #f7f7f7;
  73. }
  74. div#player{
  75. width: 100%;
  76. color: #555555;
  77. font-family: 'PT Sans', sans-serif;
  78. font-weight: 700;
  79. font-size: 12px;
  80. }
  81. #song-information{
  82. text-align: left;
  83. margin: 0 0 10px;
  84. }
  85. #controls{
  86. right: left;
  87. }
  88. #amplitude-volume-slider{
  89. width: 80%;
  90. margin: 0 auto;
  91. padding-right:35px;
  92. }
  93. .current-track {
  94. margin:20px 0 0;
  95. }
  96. input[type=range] {
  97. -webkit-appearance: none;
  98. margin: 18px 0;
  99. width: 100%;
  100. }
  101. input[type=range]:focus {
  102. outline: none;
  103. }
  104. input[type=range]::-webkit-slider-runnable-track {
  105. width: 100%;
  106. height: 8.4px;
  107. cursor: pointer;
  108. animate: 0.2s;
  109. box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px #fff;
  110. background: #337ab7;
  111. border-radius: 1.3px;
  112. border: 0.2px solid #010101;
  113. }
  114. input[type=range]::-webkit-slider-thumb {
  115. box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px #fff;
  116. border: 1px solid #333;
  117. height: 26px;
  118. width: 16px;
  119. border-radius: 3px;
  120. background: #f7f7f7;
  121. cursor: pointer;
  122. -webkit-appearance: none;
  123. margin-top: -8px;
  124. }
  125. input[type=range]:focus::-webkit-slider-runnable-track {
  126. background: #367ebd;
  127. }
  128. input[type=range]::-moz-range-track {
  129. width: 100%;
  130. height: 8.4px;
  131. cursor: pointer;
  132. animate: 0.2s;
  133. box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  134. background: #337ab7;
  135. border-radius: 1.3px;
  136. border: 0.2px solid #010101;
  137. }
  138. input[type=range]::-moz-range-thumb {
  139. box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  140. border: 1px solid #000000;
  141. height: 36px;
  142. width: 16px;
  143. border-radius: 3px;
  144. background: #ffffff;
  145. cursor: pointer;
  146. }
  147. input[type=range]::-ms-track {
  148. width: 100%;
  149. height: 8.4px;
  150. cursor: pointer;
  151. animate: 0.2s;
  152. background: transparent;
  153. border-color: transparent;
  154. border-width: 16px 0;
  155. color: transparent;
  156. }
  157. input[type=range]::-ms-fill-lower {
  158. background: #2a6495;
  159. border: 0.2px solid #010101;
  160. border-radius: 2.6px;
  161. box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  162. }
  163. input[type=range]::-ms-fill-upper {
  164. background: #337ab7;
  165. border: 0.2px solid #010101;
  166. border-radius: 2.6px;
  167. box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  168. }
  169. input[type=range]::-ms-thumb {
  170. box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  171. border: 1px solid #000000;
  172. height: 36px;
  173. width: 16px;
  174. border-radius: 3px;
  175. background: #ffffff;
  176. cursor: pointer;
  177. }
  178. input[type=range]:focus::-ms-fill-lower {
  179. background: #3071a9;
  180. }
  181. input[type=range]:focus::-ms-fill-upper {
  182. background: #367ebd;
  183. }
  184. output.volume {
  185. position: absolute;
  186. background-image: -moz-linear-gradient(top, #444444, #999999);
  187. background-image: -o-linear-gradient(top, #444444, #999999);
  188. background-image: -webkit-gradient(linear, left top, left bottom, from(#444444), to(#999999));
  189. background-image: -webkit-linear-gradient(top, #444444, #999999);
  190. width: 40px;
  191. height: 30px;
  192. text-align: center;
  193. color: white;
  194. border-radius: 10px;
  195. display: inline-block;
  196. font: bold 15px/30px Georgia;
  197. bottom: 175%;
  198. left: 0;
  199. margin-left: -1%;
  200. }
  201. output.volume:after {
  202. content: "";
  203. position: absolute;
  204. width: 0;
  205. height: 0;
  206. border-top: 10px solid #999999;
  207. border-left: 5px solid transparent;
  208. border-right: 5px solid transparent;
  209. top: 100%;
  210. left: 50%;
  211. margin-left: -5px;
  212. margin-top: -1px;
  213. }
  214. meter {
  215. -webkit-transform: rotate(-90deg);
  216. -moz-transform: rotate(-90deg);
  217. -o-transform: rotate(-90deg);
  218. transform: rotate(-90deg);
  219. }
  220. #amplitude-current-time{
  221. font-family: 'Courier New', Courier, 'Lucida Sans Typewriter', 'Lucida Typewriter', monospace;
  222. font-size: 15px;
  223. font-weight: 400;
  224. float:left;
  225. }
  226. #amplitude-play-pause {
  227. height: 50px;
  228. width: 50px;
  229. line-height: 50px;
  230. border-radius: 50%;
  231. text-align: center;
  232. margin: -50px 0 0 0;
  233. cursor: pointer;
  234. float: right;
  235. position: relative;
  236. -webkit-transition: all .1s linear;
  237. transition: all .1s linear;
  238. }
  239. .amplitude-paused {
  240. color:rgba(88, 185, 87, .7);
  241. display: block;
  242. background-color: #f7f7f7;
  243. background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#e7e7e7));
  244. background-image: -webkit-linear-gradient(top, #f7f7f7, #e7e7e7);
  245. background-image: -moz-linear-gradient(top, #f7f7f7, #e7e7e7);
  246. background-image: -ms-linear-gradient(top, #f7f7f7, #e7e7e7);
  247. background-image: -o-linear-gradient(top, #f7f7f7, #e7e7e7);
  248. box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px #fff;
  249. }
  250. @-webkit-keyframes pulseon {to {box-shadow: 0 0 0 15px rgba(88, 185, 87, .1);}}
  251. @-moz-keyframes pulseon {to {box-shadow: 0 0 0 15px rgba(88, 185, 87, .1);}}
  252. @-ms-keyframes pulseon {to {box-shadow: 0 0 0 15px rgba(88, 185, 87, .1);}}
  253. @keyframes pulseon {to {box-shadow: 0 0 0 15px rgba(88, 185, 87, .1);}}
  254. .amplitude-paused:hover {
  255. color:#58B957;
  256. text-shadow: 0px 0px 6px #58B957;
  257. box-shadow: 0 0 0 0 rgba(88, 185, 87, .7), inset 0px 4px 1px 1px white, inset 0px 4px 1px 1px rgba(204,198,197,.5);
  258. -webkit-animation: pulseon 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  259. }
  260. .amplitude-paused:after {
  261. content:"\e072";
  262. font-family:"Glyphicons Halflings";
  263. font-size:25px;
  264. line-height: 50px;
  265. padding-left:4px;
  266. text-shadow: 1px 4px 6px #def, 0 0 0 #555;
  267. }
  268. .amplitude-paused:before {
  269. }
  270. .amplitude-playing {
  271. color:#DB524B;
  272. text-shadow:0px 0px 3px #DB524B;
  273. background-color: #f7f7f7;
  274. background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#e7e7e7));
  275. background-image: -webkit-linear-gradient(top, #f7f7f7, #e7e7e7);
  276. background-image: -moz-linear-gradient(top, #f7f7f7, #e7e7e7);
  277. background-image: -ms-linear-gradient(top, #f7f7f7, #e7e7e7);
  278. background-image: -o-linear-gradient(top, #f7f7f7, #e7e7e7);
  279. box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px #fff;
  280. }
  281. @-webkit-keyframes pulseoff {to {box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);}}
  282. @-moz-keyframes pulseoff {to {box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);}}
  283. @-ms-keyframes pulseoff {to {box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);}}
  284. @keyframes pulseoff {to {box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);}}
  285. .amplitude-playing:hover {
  286. color:#DB524B;
  287. text-shadow:0px 0px 6px #DB524B;
  288. box-shadow: 0 0 0 0 rgba(232, 76, 61, 0.7), inset 0px 4px 1px 1px white, inset 0px 4px 1px 1px rgba(204,198,197,.5);
  289. -webkit-animation: pulseoff 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  290. }
  291. .amplitude-playing:after {
  292. content:"\e073";
  293. font-family:"Glyphicons Halflings";
  294. font-size:25px;
  295. line-height: 50px;
  296. padding-left:4px;
  297. }
  298. .amplitude-playing:before {
  299. }
  300. #amplitude-now-playing-name{
  301. }
  302. #amplitude-now-playing-listeners{
  303. }
  304. #amplitude-now-playing-bitrate{
  305. }
  306. #archives audio {
  307. width: 100px;
  308. background: #fff;
  309. }
  310. #archives audio::-webkit-media-controls-timeline-container,
  311. #archives audio::-webkit-media-controls-timeline,
  312. #archives audio::-webkit-media-controls-mute-button,
  313. #archives audio::-webkit-media-controls-current-time-display
  314. #archives audio::-webkit-media-controls-time-remaining-display {
  315. display:none !important;
  316. }
  317. .archive-audio {
  318. height:50px;
  319. text-align: center;
  320. display: table-cell;
  321. vertical-align: middle !important;
  322. }
  323. #error-reconnecting {
  324. }
  325. @-webkit-keyframes progress-bar-stripes {
  326. from {
  327. background-position: 40px 0;
  328. }
  329. to {
  330. background-position: 0 0;
  331. }
  332. }
  333. @keyframes progress-bar-stripes {
  334. from {
  335. background-position: 40px 0;
  336. }
  337. to {
  338. background-position: 0 0;
  339. }
  340. }
  341. .progress {
  342. overflow: hidden;
  343. height: 20px;
  344. margin-bottom: 20px;
  345. background-color: #f5f5f5;
  346. border-radius: 4px;
  347. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  348. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  349. }
  350. .progress-bar {
  351. float: left;
  352. width: 0%;
  353. height: 100%;
  354. font-size: 12px;
  355. line-height: 20px;
  356. color: #ffffff;
  357. text-align: center;
  358. background-color: #337ab7;
  359. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  360. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  361. -webkit-transition: width 0.6s ease;
  362. -o-transition: width 0.6s ease;
  363. transition: width 0.6s ease;
  364. }
  365. .progress-striped .progress-bar,
  366. .progress-bar-striped {
  367. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  368. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  369. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  370. background-size: 40px 40px;
  371. }
  372. .progress.active .progress-bar,
  373. .progress-bar.active {
  374. -webkit-animation: progress-bar-stripes 2s linear infinite;
  375. -o-animation: progress-bar-stripes 2s linear infinite;
  376. animation: progress-bar-stripes 2s linear infinite;
  377. }
  378. .progress-bar-success {
  379. background-color: #5cb85c;
  380. }
  381. .progress-striped .progress-bar-success {
  382. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  383. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  384. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  385. }
  386. .progress-bar-info {
  387. background-color: #5bc0de;
  388. }
  389. .progress-striped .progress-bar-info {
  390. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  391. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  392. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  393. }
  394. .progress-bar-danger {
  395. background-color: #d9534f;
  396. }
  397. .progress-striped .progress-bar-danger {
  398. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  399. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  400. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  401. }
  402. .progress {
  403. position: relative;
  404. }
  405. .progress .progress-bar {
  406. position: absolute;
  407. overflow: hidden;
  408. line-height: 20px;
  409. }
  410. /***********************************
  411. =========== Chat Rooms =============
  412. ***********************************/
  413. #room_users {
  414. margin-top: 10px;
  415. border-top: 1px solid #cecece;
  416. padding-top: 10px;
  417. }
  418. li#Lobby_tab {
  419. }
  420. .hidden-tab {
  421. display:none;
  422. }
  423. .social-comments {
  424. min-height:355px;
  425. }
  426. #fb_comments {
  427. padding-bottom:10px;
  428. overflow: scroll;
  429. }
  430. .fb-comments, .fb-comments iframe[style], .fb-comments span {
  431. width: 100% !important;
  432. }
  433. .audio {
  434. margin: 0 0 30px;
  435. }
  436. video {
  437. background:#000;
  438. height: 256px;
  439. margin: 0 5px 5px 0;
  440. vertical-align: top;
  441. width: calc(50% - 12px);
  442. }
  443. /***********************************
  444. ======= Playlist/Calendar ==========
  445. ***********************************/
  446. .tabs-below > .nav-tabs {
  447. border-bottom: 0;
  448. }
  449. .tabs-below > .nav-tabs {
  450. border-top: 1px solid #ddd;
  451. }
  452. .tabs-below > .nav-tabs > li {
  453. margin-top: -1px;
  454. margin-bottom: 0;
  455. }
  456. .tabs-below > .nav-tabs > li > a {
  457. -webkit-border-radius: 0 0 4px 4px;
  458. -moz-border-radius: 0 0 4px 4px;
  459. border-radius: 0 0 4px 4px;
  460. }
  461. .tabs-below > .nav-tabs > li > a:hover,
  462. .tabs-below > .nav-tabs > li > a:focus {
  463. border-top-color: #ddd;
  464. border-bottom-color: transparent;
  465. }
  466. .tabs-below > .nav-tabs > .active > a,
  467. .tabs-below > .nav-tabs > .active > a:hover,
  468. .tabs-below > .nav-tabs > .active > a:focus {
  469. border-color: transparent #ddd #ddd #ddd;
  470. }
  471. .scrollable-list {
  472. overflow: scroll;
  473. height: 198px;
  474. }
  475. ::-webkit-scrollbar {
  476. -webkit-appearance: none;
  477. width: 7px;
  478. }
  479. ::-webkit-scrollbar-thumb {
  480. border-radius: 4px;
  481. background-color: rgba(0, 0, 0, .5);
  482. -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
  483. }
  484. .scrollable-list .list-group-item {
  485. padding: 3px 10px;
  486. font-size:12px;
  487. }
  488. .scrollable-list-footer {
  489. background:#fff;
  490. }
  491. ul .badge {
  492. font-weight:normal;
  493. }
  494. .scrollable-list .list-group {
  495. margin: 0;
  496. }
  497. /***********************************
  498. ============ Footer ===============
  499. ***********************************/
  500. /* ========= Footer/Bottom Nav ============ */
  501. .panel-bottom {
  502. background: rgba(0,0,0,.5);
  503. border:none;
  504. }
  505. .panel-bottom .navbar-brand {
  506. color:#fff;
  507. }
  508. .panel-bottom .navbar-nav > li > a {
  509. color:#fff;
  510. }
  511. .panel-bottom .navbar-nav > li > a:hover {
  512. color:#58B957;
  513. background:none;
  514. }
  515. .panel-bottom .navbar-nav > li > a:focus,
  516. .panel-bottom .navbar-nav > li > a:active {
  517. border:none;
  518. text-decoration:none;
  519. outline:none;
  520. color:#fff;
  521. background:none;
  522. }
  523. .panel-bottom .navbar-nav > li > a:visited {
  524. border:none;
  525. }
  526. .listeners {
  527. width:410px;
  528. height:410px;
  529. }
  530. .chart {
  531. width:410px;
  532. height:410px;
  533. }
  534. footer {
  535. width:100%;
  536. min-height:100px;
  537. background:url(../img/daveo-footer.svg) transparent;
  538. background-repeat:no-repeat;
  539. background-size:cover;
  540. background-position:center;
  541. padding: 50px 0 0;
  542. margin: 0 0 20px;
  543. }