WebExtension as alternative to Chromecast
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

117 lines
1.9 KiB

7 years ago
  1. a.muffcast-loader {
  2. position: absolute;
  3. color: #d13d29;
  4. font-size: 20px;
  5. z-index: 8128;
  6. padding-left: 3px;
  7. padding-top: 1px;
  8. cursor: pointer;
  9. }
  10. a.muffcast-loader:hover {
  11. color: #9e2e1f;
  12. }
  13. a.muffcast-loader.active {
  14. color: #468ac3;
  15. }
  16. #muffcast-overlay {
  17. font-family: 'Roboto', 'sans-serif', 'sans';
  18. box-sizing: border-box;
  19. display: -moz-flex;
  20. display: flex;
  21. width: 100%;
  22. height: 55px;
  23. padding: 10px;
  24. background-color: #efefef;
  25. position: fixed;
  26. left: 0px;
  27. bottom: 0px;
  28. z-index: 2000;
  29. }
  30. #muffcast-overlay * {
  31. box-sizing: border-box;
  32. }
  33. #muffcast-overlay a {
  34. padding: 5px;
  35. min-width: 35px;
  36. color: #d13d29;
  37. font-size: 18px;
  38. cursor: pointer;
  39. }
  40. #muffcast-overlay a:hover {
  41. color: #9e2e1f;
  42. }
  43. #muffcast-overlay span.time {
  44. padding: 11px 4px;
  45. font-size: 10px;
  46. }
  47. #muffcast-overlay #muffcast-icon {
  48. color: #468ac3;
  49. font-size: 24px;
  50. padding: 2px 4px;
  51. }
  52. #muffcast-overlay #muffcast-audio {
  53. position: relative;
  54. width: 35px;
  55. min-width: 35px;
  56. height: 35px;
  57. overflow: hidden;
  58. transition: width 0.3s, min-width 0.3s;
  59. transition-timing-function: ease-out;
  60. }
  61. #muffcast-overlay #muffcast-audio:hover {
  62. width: 160px;
  63. min-width: 160px;
  64. }
  65. #muffcast-overlay #muffcast-mute {
  66. float: left;
  67. }
  68. #muffcast-overlay input[type="range"] {
  69. float: left;
  70. margin: 0;
  71. height: 35px;
  72. cursor: pointer;
  73. }
  74. #muffcast-overlay input[type="range"]::-moz-range-track {
  75. width: 100%;
  76. height: 3px;
  77. cursor: pointer;
  78. background: #468ac3;
  79. border-radius: 2px;
  80. }
  81. #muffcast-overlay input[type="range"]::-moz-range-thumb {
  82. box-shadow: 0px 0px 0px #d13d29;
  83. border: 0px solid #d13d29;
  84. height: 14px;
  85. width: 14px;
  86. border-radius: 50%;
  87. background: #d13d29;
  88. cursor: pointer;
  89. }
  90. #muffcast-overlay input[type="range"]::-moz-range-thumb:hover {
  91. color: #9e2e1f;
  92. height: 16px;
  93. width: 16px;
  94. }
  95. #muffcast-overlay #muffcast-volume {
  96. width: 120px;
  97. }
  98. #muffcast-overlay #muffcast-seek {
  99. flex-grow: 1;
  100. }