clear-urls-browser-extension/popup.html
2017-08-04 15:37:35 +02:00

45 lines
892 B
HTML

<!doctype html>
<html>
<head>
<title>ClearURLs Add-on</title>
<style>
body {
overflow: hidden;
margin: 5px;
padding: 5px;
background: #fff;
}
div:first-child {
margin-top: 0px;
}
div {
text-align: center;
padding: 5px 3px;
font-family: sans-serif;
font-size: 1.4em;
width: 110px;
margin-top: 5px;
background: #FFE2BF;
}
div:hover {
background: #FFD19A;
}
#enable {
border: 5px solid #FF8B00;
color: #A43B00;
}
#disable {
border: 5px solid #FF8B00;
color: #A43B00;
}
</style>
<script src="popup.js"></script>
</head>
<body>
<div id="enable"><b>Enable</b></div>
<div id="disable"><b>Disable</b></div><br>
<img src="icon_128.png"></img>
</body>
</html>