main.css 16 KB

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