main.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /*! Main CSS file */
  2. header .intro-text {
  3. padding-top: 100px;
  4. padding-bottom: 50px;
  5. }
  6. #room_users {
  7. margin-top: 10px;
  8. border-top: 1px solid #cecece;
  9. padding-top: 10px;
  10. }
  11. .vertical-alignment-helper {
  12. display:table;
  13. height: 100%;
  14. width: 100%;
  15. pointer-events:none; /* This makes sure that we can still click outside of the modal to close it */
  16. }
  17. .vertical-align-center {
  18. /* To center vertically */
  19. display: table-cell;
  20. vertical-align: middle;
  21. pointer-events:none;
  22. }
  23. .modal-content {
  24. /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
  25. width:inherit;
  26. height:inherit;
  27. /* To center horizontally */
  28. margin: 0 auto;
  29. pointer-events: all;
  30. }
  31. /* ========== Audio ============ */
  32. .scrollable-list {
  33. overflow: scroll;
  34. height: 250px;
  35. border-top:1px solid #cecece;
  36. border-bottom:1px solid #cecece;
  37. }
  38. ::-webkit-scrollbar {
  39. -webkit-appearance: none;
  40. width: 7px;
  41. }
  42. ::-webkit-scrollbar-thumb {
  43. border-radius: 4px;
  44. background-color: rgba(0, 0, 0, .5);
  45. -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
  46. }
  47. div#player{
  48. width: 100%;
  49. color: #555555;
  50. font-family: 'PT Sans', sans-serif;
  51. font-weight: 700;
  52. font-size: 12px;
  53. }
  54. #song-information{
  55. text-align: left;
  56. margin: 0 0 10px;
  57. }
  58. #controls{
  59. right: left;
  60. }
  61. #amplitude-volume-slider{
  62. width: 80%;
  63. margin: 0 auto;
  64. line-height:14px;
  65. }
  66. #amplitude-play-pause{
  67. width: 30px;
  68. height: 34px;
  69. margin: -40px 5px 0 0;
  70. cursor: pointer;
  71. float: right;
  72. background-color:red;
  73. }
  74. #amplitude-current-time{
  75. font-family: 'PT Sans', sans-serif;
  76. font-size: 14px;
  77. font-weight: 400;
  78. }
  79. .amplitude-paused:before;{
  80. content:"\20ac";
  81. font-family:"Glyphicons Halflings";
  82. line-height:1;
  83. margin:10px;
  84. display:inline-block;
  85. }
  86. .amplitude-paused{
  87. content:"\20ac";
  88. font-family:"Glyphicons Halflings";
  89. background-image: url('../img/small-gray-play.png');
  90. background-repeat: no-repeat;
  91. }
  92. .amplitude-playing{
  93. background-image: url('../img/small-gray-pause.png');
  94. background-repeat: no-repeat;
  95. }
  96. #amplitude-now-playing-name{
  97. }
  98. #amplitude-now-playing-listeners{
  99. }
  100. #amplitude-now-playing-bitrate{
  101. }