main.css 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440
  1. /*! Main CSS file */
  2. body {
  3. background-color:#777;
  4. background-position: center center;
  5. background-repeat: no-repeat;
  6. background: -webkit-gradient(radial, center center, 0, center center, 460, from(#cecece), to(#222));
  7. background: -webkit-radial-gradient(circle, #ffffff, #000000);
  8. background: -moz-radial-gradient(circle, #cecece, #222);
  9. background: -ms-radial-gradient(circle, #cecece, #222);
  10. }
  11. header {
  12. width:100%;
  13. min-height:150px;
  14. background:url(../img/daveo-header.svg) transparent;
  15. background-repeat:no-repeat;
  16. background-size:cover;
  17. background-position:center;
  18. padding: 50px 0 0;
  19. margin: 0;
  20. }
  21. .outer-container {
  22. width:100%;
  23. background:url(../img/daveo-background.svg) transparent;
  24. background-repeat:no-repeat;
  25. background-size:cover;
  26. background-position:center;
  27. }
  28. .panel-default {
  29. box-shadow: 5px 5px 8px #555, inset 0px 2px 3px #fff;
  30. background: rgba (145,145,145,.5);
  31. }
  32. /* ========== Audio Player ============ */
  33. #audio_player {
  34. background-color: #f7f7f7;
  35. }
  36. div#player{
  37. width: 100%;
  38. color: #555555;
  39. font-family: 'PT Sans', sans-serif;
  40. font-weight: 700;
  41. font-size: 12px;
  42. }
  43. #song-information{
  44. text-align: left;
  45. margin: 0 0 10px;
  46. }
  47. #controls{
  48. right: left;
  49. }
  50. #amplitude-volume-slider{
  51. width: 80%;
  52. margin: 0 auto;
  53. padding-right:35px;
  54. }
  55. .current-track {
  56. margin:20px 0 0;
  57. }
  58. input[type=range] {
  59. -webkit-appearance: none;
  60. margin: 18px 0;
  61. width: 100%;
  62. }
  63. input[type=range]:focus {
  64. outline: none;
  65. }
  66. input[type=range]::-webkit-slider-runnable-track {
  67. width: 100%;
  68. height: 8.4px;
  69. cursor: pointer;
  70. animate: 0.2s;
  71. box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px #fff;
  72. background: #337ab7;
  73. border-radius: 1.3px;
  74. border: 0.2px solid #010101;
  75. }
  76. input[type=range]::-webkit-slider-thumb {
  77. box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px #fff;
  78. border: 1px solid #333;
  79. height: 26px;
  80. width: 16px;
  81. border-radius: 3px;
  82. background: #f7f7f7;
  83. cursor: pointer;
  84. -webkit-appearance: none;
  85. margin-top: -8px;
  86. }
  87. input[type=range]:focus::-webkit-slider-runnable-track {
  88. background: #367ebd;
  89. }
  90. input[type=range]::-moz-range-track {
  91. width: 100%;
  92. height: 8.4px;
  93. cursor: pointer;
  94. animate: 0.2s;
  95. box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  96. background: #337ab7;
  97. border-radius: 1.3px;
  98. border: 0.2px solid #010101;
  99. }
  100. input[type=range]::-moz-range-thumb {
  101. box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  102. border: 1px solid #000000;
  103. height: 36px;
  104. width: 16px;
  105. border-radius: 3px;
  106. background: #ffffff;
  107. cursor: pointer;
  108. }
  109. input[type=range]::-ms-track {
  110. width: 100%;
  111. height: 8.4px;
  112. cursor: pointer;
  113. animate: 0.2s;
  114. background: transparent;
  115. border-color: transparent;
  116. border-width: 16px 0;
  117. color: transparent;
  118. }
  119. input[type=range]::-ms-fill-lower {
  120. background: #2a6495;
  121. border: 0.2px solid #010101;
  122. border-radius: 2.6px;
  123. box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  124. }
  125. input[type=range]::-ms-fill-upper {
  126. background: #337ab7;
  127. border: 0.2px solid #010101;
  128. border-radius: 2.6px;
  129. box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  130. }
  131. input[type=range]::-ms-thumb {
  132. box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  133. border: 1px solid #000000;
  134. height: 36px;
  135. width: 16px;
  136. border-radius: 3px;
  137. background: #ffffff;
  138. cursor: pointer;
  139. }
  140. input[type=range]:focus::-ms-fill-lower {
  141. background: #3071a9;
  142. }
  143. input[type=range]:focus::-ms-fill-upper {
  144. background: #367ebd;
  145. }
  146. output.volume {
  147. position: absolute;
  148. background-image: -moz-linear-gradient(top, #444444, #999999);
  149. background-image: -o-linear-gradient(top, #444444, #999999);
  150. background-image: -webkit-gradient(linear, left top, left bottom, from(#444444), to(#999999));
  151. background-image: -webkit-linear-gradient(top, #444444, #999999);
  152. width: 40px;
  153. height: 30px;
  154. text-align: center;
  155. color: white;
  156. border-radius: 10px;
  157. display: inline-block;
  158. font: bold 15px/30px Georgia;
  159. bottom: 175%;
  160. left: 0;
  161. margin-left: -1%;
  162. }
  163. output.volume:after {
  164. content: "";
  165. position: absolute;
  166. width: 0;
  167. height: 0;
  168. border-top: 10px solid #999999;
  169. border-left: 5px solid transparent;
  170. border-right: 5px solid transparent;
  171. top: 100%;
  172. left: 50%;
  173. margin-left: -5px;
  174. margin-top: -1px;
  175. }
  176. meter {
  177. -webkit-transform: rotate(-90deg);
  178. -moz-transform: rotate(-90deg);
  179. -o-transform: rotate(-90deg);
  180. transform: rotate(-90deg);
  181. }
  182. #amplitude-current-time{
  183. font-family: 'PT Sans', sans-serif;
  184. font-size: 14px;
  185. font-weight: 400;
  186. float:right;
  187. }
  188. #amplitude-play-pause {
  189. height: 50px;
  190. width: 50px;
  191. line-height: 50px;
  192. border-radius: 50%;
  193. text-align: center;
  194. margin: -50px 0 0 0;
  195. cursor: pointer;
  196. float: right;
  197. position: relative;
  198. -webkit-transition: all .1s linear;
  199. transition: all .1s linear;
  200. }
  201. .amplitude-paused {
  202. color:rgba(88, 185, 87, .7);
  203. display: block;
  204. background-color: #f7f7f7;
  205. background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#e7e7e7));
  206. background-image: -webkit-linear-gradient(top, #f7f7f7, #e7e7e7);
  207. background-image: -moz-linear-gradient(top, #f7f7f7, #e7e7e7);
  208. background-image: -ms-linear-gradient(top, #f7f7f7, #e7e7e7);
  209. background-image: -o-linear-gradient(top, #f7f7f7, #e7e7e7);
  210. box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px #fff;
  211. }
  212. @-webkit-keyframes pulseon {to {box-shadow: 0 0 0 15px rgba(88, 185, 87, .1);}}
  213. @-moz-keyframes pulseon {to {box-shadow: 0 0 0 15px rgba(88, 185, 87, .1);}}
  214. @-ms-keyframes pulseon {to {box-shadow: 0 0 0 15px rgba(88, 185, 87, .1);}}
  215. @keyframes pulseon {to {box-shadow: 0 0 0 15px rgba(88, 185, 87, .1);}}
  216. .amplitude-paused:hover {
  217. color:#58B957;
  218. text-shadow: 0px 0px 6px #58B957;
  219. 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);
  220. -webkit-animation: pulseon 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  221. }
  222. .amplitude-paused:after {
  223. content:"\e072";
  224. font-family:"Glyphicons Halflings";
  225. font-size:25px;
  226. line-height: 50px;
  227. padding-left:4px;
  228. text-shadow: 1px 4px 6px #def, 0 0 0 #555;
  229. }
  230. .amplitude-paused:before {
  231. }
  232. .amplitude-playing {
  233. color:#DB524B;
  234. text-shadow:0px 0px 3px #DB524B;
  235. background-color: #f7f7f7;
  236. background-image: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#e7e7e7));
  237. background-image: -webkit-linear-gradient(top, #f7f7f7, #e7e7e7);
  238. background-image: -moz-linear-gradient(top, #f7f7f7, #e7e7e7);
  239. background-image: -ms-linear-gradient(top, #f7f7f7, #e7e7e7);
  240. background-image: -o-linear-gradient(top, #f7f7f7, #e7e7e7);
  241. box-shadow: 0px 3px 8px #aaa, inset 0px 2px 3px #fff;
  242. }
  243. @-webkit-keyframes pulseoff {to {box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);}}
  244. @-moz-keyframes pulseoff {to {box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);}}
  245. @-ms-keyframes pulseoff {to {box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);}}
  246. @keyframes pulseoff {to {box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);}}
  247. .amplitude-playing:hover {
  248. color:#DB524B;
  249. text-shadow:0px 0px 6px #DB524B;
  250. 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);
  251. -webkit-animation: pulseoff 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  252. }
  253. .amplitude-playing:after {
  254. content:"\e073";
  255. font-family:"Glyphicons Halflings";
  256. font-size:25px;
  257. line-height: 50px;
  258. padding-left:4px;
  259. }
  260. .amplitude-playing:before {
  261. }
  262. #amplitude-now-playing-name{
  263. }
  264. #amplitude-now-playing-listeners{
  265. }
  266. #amplitude-now-playing-bitrate{
  267. }
  268. /* ========== Chat Rooms ============ */
  269. #room_users {
  270. margin-top: 10px;
  271. border-top: 1px solid #cecece;
  272. padding-top: 10px;
  273. }
  274. li#Lobby_tab {
  275. }
  276. .hidden-tab {
  277. display:none;
  278. }
  279. video {
  280. background:#000;
  281. width: 100%;
  282. margin: 0 0 5px 0;
  283. vertical-align: top;
  284. height: calc(50% - 12px);
  285. }
  286. /* ========= Vertical Align Modals ============ */
  287. .vertical-alignment-helper {
  288. display:table;
  289. height: 100%;
  290. width: 100%;
  291. pointer-events:none; /* This makes sure that we can still click outside of the modal to close it */
  292. }
  293. .vertical-align-center {
  294. /* To center vertically */
  295. display: table-cell;
  296. vertical-align: middle;
  297. pointer-events:none;
  298. }
  299. .modal-content {
  300. /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
  301. width:inherit;
  302. height:inherit;
  303. /* To center horizontally */
  304. margin: 0 auto;
  305. pointer-events: all;
  306. }
  307. /* ========= Playlist/Calendar ============ */
  308. .tabs-below > .nav-tabs {
  309. border-bottom: 0;
  310. }
  311. .tabs-below > .nav-tabs {
  312. border-top: 1px solid #ddd;
  313. }
  314. .tabs-below > .nav-tabs > li {
  315. margin-top: -1px;
  316. margin-bottom: 0;
  317. }
  318. .tabs-below > .nav-tabs > li > a {
  319. -webkit-border-radius: 0 0 4px 4px;
  320. -moz-border-radius: 0 0 4px 4px;
  321. border-radius: 0 0 4px 4px;
  322. }
  323. .tabs-below > .nav-tabs > li > a:hover,
  324. .tabs-below > .nav-tabs > li > a:focus {
  325. border-top-color: #ddd;
  326. border-bottom-color: transparent;
  327. }
  328. .tabs-below > .nav-tabs > .active > a,
  329. .tabs-below > .nav-tabs > .active > a:hover,
  330. .tabs-below > .nav-tabs > .active > a:focus {
  331. border-color: transparent #ddd #ddd #ddd;
  332. }
  333. .scrollable-list {
  334. overflow: scroll;
  335. height: 198px;
  336. }
  337. ::-webkit-scrollbar {
  338. -webkit-appearance: none;
  339. width: 7px;
  340. }
  341. ::-webkit-scrollbar-thumb {
  342. border-radius: 4px;
  343. background-color: rgba(0, 0, 0, .5);
  344. -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
  345. }
  346. .scrollable-list .list-group-item {
  347. padding: 3px 10px;
  348. font-size:12px;
  349. }
  350. .scrollable-list-footer {
  351. background:#fff;
  352. }
  353. ul .badge {
  354. font-weight:normal;
  355. }
  356. .scrollable-list .list-group {
  357. margin: 0;
  358. }
  359. /* ========= Footer/Bottom Nav ============ */
  360. .panel-bottom {
  361. background: rgba(0,0,0,.5);
  362. border:none;
  363. }
  364. .panel-bottom .navbar-brand {
  365. color:#fff;
  366. }
  367. .panel-bottom .navbar-nav > li > a {
  368. color:#fff;
  369. }
  370. .panel-bottom .navbar-nav > li > a:hover {
  371. color:#58B957;
  372. background:none;
  373. }
  374. .panel-bottom .navbar-nav > li > a:focus,
  375. .panel-bottom .navbar-nav > li > a:active {
  376. border:none;
  377. text-decoration:none;
  378. outline:none;
  379. color:#fff;
  380. background:none;
  381. }
  382. .panel-bottom .navbar-nav > li > a:visited {
  383. border:none;
  384. }
  385. .listeners {
  386. width:410px;
  387. height:410px;
  388. }
  389. .chart {
  390. width:410px;
  391. height:410px;
  392. }
  393. footer {
  394. width:100%;
  395. min-height:100px;
  396. background:url(../img/daveo-footer.svg) transparent;
  397. background-repeat:no-repeat;
  398. background-size:cover;
  399. background-position:center;
  400. padding: 50px 0 0;
  401. margin: 0 0 20px;
  402. }