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.

126 lines
1.9 KiB

7 years ago
  1. @font-face {
  2. font-family: 'FontAwesome';
  3. src: url('" + browser.extension.getURL("fonts/fontawesome.eot") + "?v=4.7.0');
  4. src: url('" + browser.extension.getURL("fonts/fontawesome.eot") + "?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome.svg?v=4.7.0#fontawesomeregular') format('svg');
  5. font - weight: normal;
  6. font - style: normal;
  7. }
  8. * {
  9. box-sizing: border-box;
  10. }
  11. body {
  12. font-family: 'OpenSans', 'Roboto', 'sans-serif', 'sans';
  13. max-width: 400px;
  14. padding: 0;
  15. margin: 0;
  16. }
  17. .visible {
  18. display: inline-block !important;
  19. }
  20. .text-center {
  21. text-align: center;
  22. }
  23. a {
  24. text-decoration: none;
  25. color: #d13d29;
  26. }
  27. a:hover {
  28. color: #9e2e1f;
  29. }
  30. #muffcast {
  31. width: 400px;
  32. background-color: #fefefe;
  33. color: #444;
  34. display: none;
  35. }
  36. #idle, #error {
  37. width: 100%;
  38. display: none;
  39. color: #d13d29;
  40. padding: 15px;
  41. }
  42. #title {
  43. display: block;
  44. color: #333;
  45. }
  46. #title:hover {}
  47. #host {
  48. display: block;
  49. font-size: 0.9em;
  50. color: #888;
  51. }
  52. .icon {
  53. color: #468ac3;
  54. }
  55. .info {
  56. display: block;
  57. padding: 15px;
  58. }
  59. .audio {
  60. display: -moz-flex;
  61. display: flex;
  62. }
  63. #mute {
  64. cursor: pointer;
  65. }
  66. #volume {
  67. flex-grow: 1;
  68. height: 20px;
  69. }
  70. #volume::-moz-range-track {
  71. width: 100%;
  72. height: 3px;
  73. cursor: pointer;
  74. background: #468ac3;
  75. border-radius: 2px;
  76. cursor: pointer;
  77. }
  78. #volume::-moz-range-thumb {
  79. box-shadow: 0px 0px 0px #d13d29;
  80. border: 0px solid #d13d29;
  81. height: 14px;
  82. width: 14px;
  83. border-radius: 50%;
  84. background: #d13d29;
  85. cursor: pointer;
  86. }
  87. #volume::-moz-range-thumb:hover {
  88. color: #9e2e1f;
  89. height: 16px;
  90. width: 16px;
  91. }
  92. .bottom-menu {
  93. display: block;
  94. background-color: #efefef;
  95. padding: 15px;
  96. }
  97. #play {
  98. float: left;
  99. cursor: pointer;
  100. }
  101. #stop {
  102. float: right;
  103. cursor: pointer;
  104. }