Dodano filtry dla dziennika rozkładów jazdy

This commit is contained in:
2022-05-17 01:39:40 +02:00
parent 42155fe6b8
commit 2d8155fdbe
9 changed files with 138 additions and 62 deletions
+19
View File
@@ -114,6 +114,8 @@ select {
// font-family: "Open Sans", sans-serif;
border: none;
font-family: "Quicksand", sans-serif;
font-size: 1em;
}
input {
@@ -214,7 +216,24 @@ ul {
&--image {
color: white;
transition: color 0.3s;
}
&--option {
cursor: pointer;
color: white;
background-color: #333;
border-radius: 0.25em;
padding: 0.25em 0.5em;
&:hover {
background-color: #3c3c3c;
}
&.checked {
color: var(--clr-primary);
font-weight: bold;
}
}
}
+8 -3
View File
@@ -7,9 +7,9 @@
}
span {
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
// user-select: none;
// -moz-user-select: none;
// -webkit-user-select: none;
width: 100%;
text-align: center;
@@ -33,4 +33,9 @@
}
}
}
&:focus span {
// outline: 1px solid white;
border: none;
}
}