main.css 11 KB

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