File indexing completed on 2024-12-22 04:40:51

0001 <html><head>
0002 <meta http-equiv="content-type" content="text/html; charset=utf-8">
0003 <title>Blocked content</title>
0004 <link rel="icon" href="adblock_big.png" type="image/x-icon" />
0005 <style>
0006 #box {max-width: 300px;height: 80%;overflow:auto;padding: 25px;padding-bottom: 10px;text-align: center;vertical-align: middle;margin: auto;}
0007 h2 {font-size: 100%;font-weight: bold; border-bottom: 1px solid #f4f4f4; margin-bottom: 0px;}
0008 
0009 @media (prefers-color-scheme: light) {
0010   html, body {background: #dddddd;color: #525c66;}
0011   #box {background: #ffffff;}
0012   h2 {border-bottom-color: #aaa;}
0013   .dark {display: none;}
0014 }
0015 @media (prefers-color-scheme: dark) {
0016   html, body {background: #070709;color: #dddddd;}
0017   #box {background: #171717;}
0018   h2 {border-bottom-color: #555;}
0019   .light {display: none;}
0020 }
0021 </style>
0022 </head>
0023 <body>
0024   <div id="box">
0025     <img src="adblock_big.png" >
0026     <h2>AdBlock</h2>
0027     <span id="rule"></span>
0028   </div>
0029 
0030 <script>
0031 let params = (new URL(document.location)).searchParams;
0032 document.title = params.get("title");
0033 document.getElementById("rule").innerHTML = params.get("rule");
0034 document.getElementById("box").style.direction = params.get("direction");
0035 </script>
0036 </body></html>