parent
6b77f4cadf
commit
2a54f1cd4f
@ -1,108 +0,0 @@
|
|||||||
body {
|
|
||||||
color: #303942;
|
|
||||||
cursor: default;
|
|
||||||
direction: __MSG_@@bidi_dir__;
|
|
||||||
font-family: Helvetica, Arial, sans-serif;
|
|
||||||
font-size: .8rem;
|
|
||||||
line-height: 1.4rem;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
margin: 0 0 1rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1, h2, h3 {
|
|
||||||
font-weight: normal;
|
|
||||||
line-height: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
border-bottom: 1px solid #dbdbdb;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
margin: 0 0 1.5rem 0;
|
|
||||||
padding: 1rem 0 1.5rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2 {
|
|
||||||
font-size: 1.3em;
|
|
||||||
margin-bottom: 0.4em;
|
|
||||||
}
|
|
||||||
|
|
||||||
h3 {
|
|
||||||
color: black;
|
|
||||||
font-size: 1.2em;
|
|
||||||
margin-bottom: 0.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: rgb(17, 85, 204);
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
label {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
button {
|
|
||||||
background: #4608ad;
|
|
||||||
border: none;
|
|
||||||
border-radius: .2rem;
|
|
||||||
color: white;
|
|
||||||
font-size: inherit;
|
|
||||||
padding: 0 .6rem;
|
|
||||||
line-height: 1.8rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:active {
|
|
||||||
color: rgb(5, 37, 119);
|
|
||||||
}
|
|
||||||
|
|
||||||
.hero {
|
|
||||||
background: linear-gradient(160deg, #32067c, #150233);
|
|
||||||
padding: 1.5rem 1.5rem 1rem 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hero img {
|
|
||||||
height: 3rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.container {
|
|
||||||
margin: 0 auto;
|
|
||||||
max-width: 800px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.content {
|
|
||||||
padding: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
#options-saved {
|
|
||||||
display: none;
|
|
||||||
margin-left: .5rem;
|
|
||||||
-webkit-animation: fadeout 2s;
|
|
||||||
}
|
|
||||||
|
|
||||||
#about {
|
|
||||||
border-top: 1px solid #dbdbdb;
|
|
||||||
margin-top: 1.5rem;
|
|
||||||
padding: 1.5rem 0 0 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#about img {
|
|
||||||
margin-right: .2rem;
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
|
|
||||||
#about button {
|
|
||||||
background: white;
|
|
||||||
border: 1px solid #dbdbdb;
|
|
||||||
cursor: pointer;
|
|
||||||
color: #303942;
|
|
||||||
margin-bottom: .5rem;
|
|
||||||
margin-inline-end: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
@-webkit-keyframes fadeout {
|
|
||||||
from { opacity: 1; }
|
|
||||||
to { opacity: 0; }
|
|
||||||
}
|
|
@ -1,69 +1,41 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
|
|
||||||
<html>
|
<html>
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
<title data-i18n="options">Wappalyzer options</title>
|
<title data-i18n="options"></title>
|
||||||
|
|
||||||
<link rel="icon" href="../images/icon_32.png">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../css/options.css">
|
<link rel="stylesheet" href="../css/styles.css">
|
||||||
|
|
||||||
<script src="../node_modules/webextension-polyfill/dist/browser-polyfill.js"></script>
|
|
||||||
<script src="../js/utils.js"></script>
|
<script src="../js/utils.js"></script>
|
||||||
<script src="../js/options.js"></script>
|
<script src="../js/options.js"></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div class="hero">
|
<div class="options">
|
||||||
<div class="container">
|
<label class="options__label">
|
||||||
<img src="../images/logo-white.svg">
|
<input class="options__checkbox" type="checkbox">
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="content">
|
<span data-i18n="optionUpgradeMessage"> </span>
|
||||||
<div class="container">
|
</label>
|
||||||
<h1 data-i18n="options">Options</h1>
|
|
||||||
|
|
||||||
<p>
|
<label class="options__label">
|
||||||
<label for="option-upgrade-message">
|
<input class="options__checkbox" type="checkbox">
|
||||||
<input id="option-upgrade-message" type="checkbox">
|
|
||||||
<span data-i18n="optionUpgradeMessage">Tell me about upgrades</span>
|
|
||||||
</label>
|
|
||||||
<label for="option-dynamic-icon">
|
|
||||||
<input id="option-dynamic-icon" type="checkbox">
|
|
||||||
<span data-i18n="optionDynamicIcon">Use application icon instead of Wappalyzer logo</span>
|
|
||||||
</label>
|
|
||||||
<label for="option-tracking">
|
|
||||||
<input id="option-tracking" type="checkbox">
|
|
||||||
<span data-i18n="optionTracking">Anonymously send reports on detected applications to wappalyzer.com for research</span>
|
|
||||||
</label>
|
|
||||||
<label for="option-theme-mode">
|
|
||||||
<input id="option-theme-mode" type="checkbox">
|
|
||||||
<span data-i18n="optionThemeMode">Enable dark mode compatibility</span>
|
|
||||||
</label>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<div id="about">
|
<span data-i18n="optionDynamicIcon"> </span>
|
||||||
<p>
|
</label>
|
||||||
<button id="github">
|
|
||||||
<img src="../images/github.png" width="16" height="16" alt="GitHub icon" />
|
<label class="options__label">
|
||||||
<span data-i18n="github">Fork Wappalyzer on GitHub!</span>
|
<input class="options__checkbox" type="checkbox">
|
||||||
</button>
|
|
||||||
<button id="twitter">
|
<span data-i18n="optionTracking"> </span>
|
||||||
<img src="../images/twitter.png" width="16" height="16" alt="Twitter icon" />
|
</label>
|
||||||
<span data-i18n="twitter">Follow Wappalyzer on Twitter</span>
|
|
||||||
</button>
|
<label class="options__label">
|
||||||
<button id="wappalyzer">
|
<input class="options__checkbox" type="checkbox">
|
||||||
<img src="../images/icon_16.png" width="16" height="16" alt="Wappalyzer icon" />
|
|
||||||
<span data-i18n="website">Go to wappalyzer.com</span>
|
<span data-i18n="optionThemeMode"> </span>
|
||||||
</button>
|
</label>
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
Reference in new issue