Merge pull request #33 from joncrangle/mobile-improvement-and-spelling

Mobile improvement and spelling fixes
This commit is contained in:
mms-gianni
2023-11-13 09:13:48 +01:00
committed by GitHub
2 changed files with 4 additions and 6 deletions

View File

@@ -120,7 +120,7 @@ It is possible to apply custom rules to modify the response. This can be used to
See in [ruleset.yaml](ruleset.yaml) for an example.
```yaml
- domain: example.com # Inbcludes all subdomains
- domain: example.com # Includes all subdomains
domains: # Additional domains to apply the rule
- www.example.de
- www.beispiel.de
@@ -154,5 +154,5 @@ See in [ruleset.yaml](ruleset.yaml) for an example.
<h1>My Custom Title</h1>
- position: .left-content article # Position where to inject the code into DOM
prepend: |
<h2>Suptitle</h2>
<h2>Subtitle</h2>
```

View File

@@ -3,6 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ladder</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
@@ -21,7 +22,7 @@
<input type="text" id="inputField" placeholder="Proxy Search" name="inputField" class="w-full text-sm leading-6 text-slate-400 rounded-md ring-1 ring-slate-900/10 shadow-sm py-1.5 pl-2 pr-3 hover:ring-slate-300 dark:bg-slate-800 dark:highlight-white/5 dark:hover:bg-slate-700" required autofocus>
</div>
</form>
<footer class="mt-10 text-center text-slate-600 dark:text-slate-400">
<footer class="mt-10 text-center text-slate-600 dark:text-slate-400 mx-4">
<p>
Code Licensed Under GPL v3.0 |
<a href="https://github.com/everywall/ladder" class="hover:text-blue-500 hover:underline underline-offset-2 transition-colors duration-300">View Source</a> |
@@ -31,9 +32,6 @@
</div>
<script>
document.addEventListener('DOMContentLoaded', function () {
M.AutoInit();
});
document.getElementById('inputForm').addEventListener('submit', function (e) {
e.preventDefault();
let url = document.getElementById('inputField').value;