main-blocked.html 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <!-- ***************************************************************************
  6. ηMatrix - a browser extension to black/white list requests.
  7. Copyright (C) 2019 Alessio Vanni
  8. This program is free software: you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation, either version 3 of the License, or
  11. (at your option) any later version.
  12. This program is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. GNU General Public License for more details.
  16. You should have received a copy of the GNU General Public License
  17. along with this program. If not, see {http://www.gnu.org/licenses/}.
  18. Home: https://libregit.org/heckyel/ematrix
  19. uMatrix Home: https://github.com/gorhill/uMatrix
  20. -->
  21. <meta name="viewport" content="width=device-width, initial-scale=1">
  22. <title></title>
  23. <link rel="stylesheet" href="css/common.css" type="text/css">
  24. <style>
  25. body {
  26. font-family: sans-serif;
  27. font-size: large;
  28. text-align: center;
  29. }
  30. body > div {
  31. margin: 1.5em 0;
  32. }
  33. body > div > p {
  34. margin: 4px 0;
  35. }
  36. body > div > p:first-child {
  37. margin: 1.5em 0 0 0;
  38. }
  39. .code {
  40. background-color: rgba(0, 0, 0, 0.1);
  41. display: inline-block;
  42. font-family: monospace;
  43. font-size: large;
  44. line-height: 1.2;
  45. padding: 2px 4px;
  46. word-break: break-all;
  47. }
  48. button {
  49. cursor: pointer;
  50. margin: 0 1em 0.25em 1em;
  51. padding: 0.25em 0.5em;
  52. font-size: inherit;
  53. }
  54. #theURL {
  55. margin: 0.25em 0;
  56. padding: 0;
  57. }
  58. #theURL > * {
  59. margin: 0;
  60. }
  61. #theURL > p {
  62. position: relative;
  63. z-index: 10;
  64. }
  65. #theURL > p > span {
  66. background-color: transparent;
  67. top: 100%;
  68. box-sizing: border-box;
  69. cursor: pointer;
  70. opacity: 0.5;
  71. padding: 0.2em;
  72. position: absolute;
  73. transform: translate(0, -50%);
  74. }
  75. body[dir="ltr"] #theURL > p > span {
  76. right: 0;
  77. }
  78. body[dir="rtl"] #theURL > p > span {
  79. left: 0;
  80. }
  81. #theURL > p:hover > span {
  82. opacity: 1;
  83. }
  84. #theURL > p > span:before {
  85. content: '\f010';
  86. }
  87. #theURL.collapsed > p > span:before {
  88. content: '\f00e';
  89. }
  90. #parsed {
  91. background-color: #f8f8f8;
  92. border: 1px solid rgba(0, 0, 0, 0.1);
  93. border-top: none;
  94. color: gray;
  95. font-size: small;
  96. overflow-x: hidden;
  97. padding: 4px;
  98. text-align: initial;
  99. text-overflow: ellipsis;
  100. }
  101. #theURL.collapsed > #parsed {
  102. display: none;
  103. }
  104. #parsed ul, #parsed li {
  105. list-style-type: none;
  106. }
  107. #parsed li {
  108. white-space: nowrap;
  109. }
  110. #parsed span {
  111. display: inline-block;
  112. }
  113. #parsed span:first-of-type {
  114. font-weight: bold;
  115. }
  116. #warningSign {
  117. margin: 1em, 0;
  118. opacity: 1;
  119. pointer-events: none;
  120. width: 100%;
  121. }
  122. #warningSign > span {
  123. color: #f2a500;
  124. font-size: 180px;
  125. }
  126. </style>
  127. </head>
  128. <body>
  129. <div id="warningSign"><span class="fa">&#xf071;</span></div>
  130. <div>
  131. <p data-i18n="mainBlockedPrompt1"></p>
  132. <div id="theURL" class="collapsed">
  133. <p class="what code"></p>
  134. <ul id="parsed"></ul>
  135. </div>
  136. </div>
  137. <!-- <div>
  138. <p data-i18n="mainBlockedPrompt2"></p>
  139. <p id="why" class="code"></p>
  140. </div>
  141. -->
  142. <div>
  143. <p>
  144. <button id="back" data-i18n="mainBlockedBack" type="button"></button>
  145. <button id="bye" data-i18n="mainBlockedClose" type="button"></button>
  146. </p>
  147. </div>
  148. <script src="js/vapi-common.js"></script>
  149. <script src="js/vapi-client.js"></script>
  150. <script src="js/udom.js"></script>
  151. <script src="js/i18n.js"></script>
  152. <script src="js/main-blocked.js"></script>
  153. </body>
  154. </html>