clean up and beginning to implement catfilter
This commit is contained in:
parent
3cbde1b9f2
commit
52cdae478b
2 changed files with 32 additions and 0 deletions
26
kit/css/custom.css
Normal file
26
kit/css/custom.css
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
ul.catFilter {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
ul.catFilter li {
|
||||
padding: 0px 10px;
|
||||
background-color: #333333;
|
||||
color: #7c7c7c;
|
||||
margin: 0 5px 5px 0;
|
||||
font-size: 1rem;
|
||||
font-weight: normal;
|
||||
overflow-wrap: break-word;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
ul.catFilter li.available a {
|
||||
color: #eeeeee;
|
||||
}
|
||||
|
||||
ul.bestandliste {
|
||||
margin-top: 1.55556rem;
|
||||
list-style: square;
|
||||
margin-left: 1rem;
|
||||
font-weight: normal;
|
||||
}
|
||||
6
kit/js/custom.js
Normal file
6
kit/js/custom.js
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
document.addEventListener("DOMContentLoaded", function() {
|
||||
$("ul.catFilter li.available").on("click", function(e){
|
||||
e.preventDefault();
|
||||
console.log("test");
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue