1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-18 17:02:27 +02:00
uBlock/src/document-blocked.html

82 lines
1.9 KiB
HTML
Raw Normal View History

2015-03-26 00:28:22 +01:00
<!DOCTYPE html>
<html>
<head>
<title></title>
2015-03-27 18:00:55 +01:00
<link rel="stylesheet" href="css/common.css" type="text/css">
2015-03-26 00:28:22 +01:00
<style>
body {
2015-03-26 18:44:00 +01:00
font-family: sans-serif;
2015-03-26 00:28:22 +01:00
font-size: large;
text-align: center;
}
2015-03-26 13:12:06 +01:00
body > div {
margin: 1.5em 0;
}
body > div > p {
2015-03-30 19:10:29 +02:00
margin: 4px 0;
2015-03-26 13:12:06 +01:00
}
body > div > p:first-child {
margin: 1.5em 0 0 0;
}
2015-03-26 00:28:22 +01:00
.code {
background-color: rgba(0, 0, 0, 0.1);
display: inline-block;
font-family: monospace;
padding: 2px 4px;
word-break: break-all;
}
button {
cursor: pointer;
2015-03-30 19:10:29 +02:00
margin: 0 1em 0.25em 1em;
padding: 0.25em 0.5em;
font-size: inherit;
}
2015-03-27 18:00:55 +01:00
#warningSign {
margin: 1e, 0;
opacity: 1;
2015-03-26 00:28:22 +01:00
pointer-events: none;
2015-03-27 18:00:55 +01:00
width: 100%;
}
#warningSign > span {
color: #f2a500;
font-size: 180px;
2015-03-26 00:28:22 +01:00
}
</style>
</head>
<body>
<!-- http://commons.wikimedia.org/wiki/File:Caution_sign_used_on_roads_pn.svg
Public domain. I removed the shadow.
2015-03-27 18:00:55 +01:00
--><div id="warningSign"><span class="fa">&#xf071;</span></div>
2015-03-26 13:12:06 +01:00
<div>
<p data-i18n="docblockedPrompt1"></p>
<p class="what code"></p>
</div>
<div>
<p data-i18n="docblockedPrompt2"></p>
<p id="why" class="code"></p>
</div>
<div>
<p><button id="back" data-i18n="docblockedBack" type="button"></button>
<button id="bye" data-i18n="docblockedClose" type="button"></button></p>
</div>
<div>
2015-03-30 19:10:29 +02:00
<p id="proceed"></p>
<p><button id="proceedTemporary" data-i18n="docblockedDisableTemporary" type="button"></button>
<button id="proceedPermanent" data-i18n="docblockedDisablePermanent" type="button"></button></p>
</div>
<div style="display: none;">
<span id="proceedTemplate"><span></span><span class="code"></span><span></span></span>
2015-03-26 13:12:06 +01:00
</div>
2015-03-26 00:28:22 +01:00
<script src="js/vapi-common.js"></script>
<script src="js/vapi-client.js"></script>
<script src="js/udom.js"></script>
<script src="js/i18n.js"></script>
<script src="js/document-blocked.js"></script>
</body>
</html>