main.css 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. /*! Main CSS file */
  2. body {
  3. background-color:#777;
  4. }
  5. header .intro-text {
  6. padding-top: 100px;
  7. padding-bottom: 50px;
  8. }
  9. #room_users {
  10. margin-top: 10px;
  11. border-top: 1px solid #cecece;
  12. padding-top: 10px;
  13. }
  14. .vertical-alignment-helper {
  15. display:table;
  16. height: 100%;
  17. width: 100%;
  18. pointer-events:none; /* This makes sure that we can still click outside of the modal to close it */
  19. }
  20. .vertical-align-center {
  21. /* To center vertically */
  22. display: table-cell;
  23. vertical-align: middle;
  24. pointer-events:none;
  25. }
  26. .modal-content {
  27. /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
  28. width:inherit;
  29. height:inherit;
  30. /* To center horizontally */
  31. margin: 0 auto;
  32. pointer-events: all;
  33. }
  34. .tabs-below > .nav-tabs {
  35. border-bottom: 0;
  36. }
  37. .tabs-below > .nav-tabs {
  38. border-top: 1px solid #ddd;
  39. }
  40. .tabs-below > .nav-tabs > li {
  41. margin-top: -1px;
  42. margin-bottom: 0;
  43. }
  44. .tabs-below > .nav-tabs > li > a {
  45. -webkit-border-radius: 0 0 4px 4px;
  46. -moz-border-radius: 0 0 4px 4px;
  47. border-radius: 0 0 4px 4px;
  48. }
  49. .tabs-below > .nav-tabs > li > a:hover,
  50. .tabs-below > .nav-tabs > li > a:focus {
  51. border-top-color: #ddd;
  52. border-bottom-color: transparent;
  53. }
  54. .tabs-below > .nav-tabs > .active > a,
  55. .tabs-below > .nav-tabs > .active > a:hover,
  56. .tabs-below > .nav-tabs > .active > a:focus {
  57. border-color: transparent #ddd #ddd #ddd;
  58. }
  59. ::-webkit-scrollbar {
  60. -webkit-appearance: none;
  61. width: 7px;
  62. }
  63. ::-webkit-scrollbar-thumb {
  64. border-radius: 4px;
  65. background-color: rgba(0, 0, 0, .5);
  66. -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
  67. }
  68. .scrollable-list {
  69. overflow: scroll;
  70. height: 194px;
  71. }
  72. .scrollable-list .list-group-item {
  73. padding: 3px 10px;
  74. font-size:12px;
  75. }
  76. /* ========== Audio ============ */
  77. #audio_player {
  78. background: rgb(145,145,145); /* Old browsers */
  79. 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 */
  80. 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 */
  81. 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+ */
  82. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#919191', endColorstr='#919191',GradientType=0 ); /* IE6-9 */
  83. }
  84. div#player{
  85. width: 100%;
  86. color: #555555;
  87. font-family: 'PT Sans', sans-serif;
  88. font-weight: 700;
  89. font-size: 12px;
  90. }
  91. #song-information{
  92. text-align: left;
  93. margin: 0 0 10px;
  94. }
  95. #controls{
  96. right: left;
  97. }
  98. #amplitude-volume-slider{
  99. width: 80%;
  100. margin: 0 auto;
  101. line-height:14px;
  102. }
  103. output.volume {
  104. position: absolute;
  105. background-image: -moz-linear-gradient(top, #444444, #999999);
  106. background-image: -o-linear-gradient(top, #444444, #999999);
  107. background-image: -webkit-gradient(linear, left top, left bottom, from(#444444), to(#999999));
  108. background-image: -webkit-linear-gradient(top, #444444, #999999);
  109. width: 40px;
  110. height: 30px;
  111. text-align: center;
  112. color: white;
  113. border-radius: 10px;
  114. display: inline-block;
  115. font: bold 15px/30px Georgia;
  116. bottom: 175%;
  117. left: 0;
  118. margin-left: -1%;
  119. }
  120. output.volume:after {
  121. content: "";
  122. position: absolute;
  123. width: 0;
  124. height: 0;
  125. border-top: 10px solid #999999;
  126. border-left: 5px solid transparent;
  127. border-right: 5px solid transparent;
  128. top: 100%;
  129. left: 50%;
  130. margin-left: -5px;
  131. margin-top: -1px;
  132. }
  133. meter {
  134. -webkit-transform: rotate(-90deg);
  135. -moz-transform: rotate(-90deg);
  136. -o-transform: rotate(-90deg);
  137. transform: rotate(-90deg);
  138. }
  139. /* Ripple Out */
  140. @-webkit-keyframes hvr-ripple-out {
  141. 100% {
  142. top: -12px;
  143. right: -12px;
  144. bottom: -12px;
  145. left: -12px;
  146. opacity: 0;
  147. }
  148. }
  149. @keyframes hvr-ripple-out {
  150. 100% {
  151. top: -12px;
  152. right: -12px;
  153. bottom: -12px;
  154. left: -12px;
  155. opacity: 0;
  156. }
  157. }
  158. .hvr-ripple-out {
  159. display: inline-block;
  160. vertical-align: middle;
  161. -webkit-transform: translateZ(0);
  162. transform: translateZ(0);
  163. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  164. -webkit-backface-visibility: hidden;
  165. backface-visibility: hidden;
  166. -moz-osx-font-smoothing: grayscale;
  167. position: relative;
  168. }
  169. .hvr-ripple-out:before {
  170. content: '';
  171. position: absolute;
  172. border: #e1e1e1 solid 6px;
  173. top: 0;
  174. right: 0;
  175. bottom: 0;
  176. left: 0;
  177. -webkit-animation-duration: 1s;
  178. animation-duration: 1s;
  179. }
  180. .hvr-ripple-out:hover:before, .hvr-ripple-out:focus:before, .hvr-ripple-out:active:before {
  181. -webkit-animation-name: hvr-ripple-out;
  182. animation-name: hvr-ripple-out;
  183. }
  184. #amplitude-play-pause{
  185. display: block;
  186. height: 55px;
  187. width: 55px;
  188. line-height: 60px;
  189. -moz-border-radius: 30px; /* or 50% */
  190. border-radius: 30px; /* or 50% */
  191. background-color: white;
  192. color: black;
  193. text-align: center;
  194. border: 3px solid #cecece;
  195. margin: -40px 0 0 0;
  196. cursor: pointer;
  197. float: right;
  198. -moz-osx-font-smoothing: grayscale;
  199. -webkit-transition: -webkit-transform .8s ease-in-out;
  200. transition: transform .8s ease-in-out;
  201. }
  202. #amplitude-play-pause:hover{
  203. background-color: black;
  204. color: white;
  205. -webkit-transform: rotate(360deg);
  206. transform: rotate(360deg);
  207. }
  208. #amplitude-current-time{
  209. font-family: 'PT Sans', sans-serif;
  210. font-size: 14px;
  211. font-weight: 400;
  212. }
  213. .amplitude-paused:before{
  214. content:"\e072";
  215. font-family:"Glyphicons Halflings";
  216. font-size:35px;
  217. line-height:1;
  218. margin:10px;
  219. display:inline-block;
  220. }
  221. .amplitude-paused{
  222. }
  223. .amplitude-playing:before {
  224. content:"\e073";
  225. font-family:"Glyphicons Halflings";
  226. font-size:35px;
  227. line-height:1;
  228. margin:10px;
  229. display:inline-block;
  230. }
  231. .amplitude-playing{
  232. }
  233. #amplitude-now-playing-name{
  234. }
  235. #amplitude-now-playing-listeners{
  236. }
  237. #amplitude-now-playing-bitrate{
  238. }