Initial pass at visibility functionality

This commit is contained in:
G.Ambatte
2022-09-01 19:17:51 +12:00
parent 98e2d57691
commit 9571cb0cc4
3 changed files with 82 additions and 16 deletions
@@ -74,4 +74,27 @@
}
}
}
h1 {
cursor: pointer;
&.active {
color: #58180D;
}
&.active::before {
content: '\f107';
font-family: 'Font Awesome 5 Free';
font-weight: 900;
font-size: 0.6cm;
padding-right: 0.5em;
}
&.inactive {
color: #707070;
}
&.inactive::before {
content: '\f105';
font-family: 'Font Awesome 5 Free';
font-weight: 900;
font-size: 0.6cm;
padding-right: 0.5em;
}
}
}