Skip to content

Commit 134efa0

Browse files
authored
add lil css to ruleset page (#227)
1 parent 956773c commit 134efa0

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

templates/template_ruleset.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
{% include './header.html' %}
22
<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+
color: black;
20+
background: #80BA50;
21+
border-bottom: 5px solid #1B4D3E;
22+
}
23+
</style>
324
<div class="writing">
425
<input type="text" id="searchBar" placeholder="Search rules...">
526
{{ data }}

0 commit comments

Comments
 (0)