We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 956773c commit 134efa0Copy full SHA for 134efa0
templates/template_ruleset.html
@@ -1,5 +1,26 @@
1
{% include './header.html' %}
2
<script>{% include './ruleset_filter.js' %}</script>
3
+<style>
4
+ #searchBar {
5
+ font-family: inherit;
6
+ font-size: 40px;
7
+ border: none;
8
+ outline: none;
9
+ padding: 10px;
10
+ color: black;
11
+ background: #549171;
12
+ border-bottom: 5px solid #549171;
13
+ width: 100%;
14
+ margin-bottom: 30px;
15
+ border-radius: 10px 10px 0px 0px;
16
+ transition: 0.3s;
17
+ }
18
+ #searchBar:focus {
19
20
+ background: #80BA50;
21
+ border-bottom: 5px solid #1B4D3E;
22
23
+</style>
24
<div class="writing">
25
<input type="text" id="searchBar" placeholder="Search rules...">
26
{{ data }}
0 commit comments