Add custom styles for topic list
This commit is contained in:
parent
af71ca8206
commit
4d5aacd498
@ -8,6 +8,9 @@ section {
|
||||
* {
|
||||
line-height: inherit; }
|
||||
|
||||
input {
|
||||
font-size: inherit; }
|
||||
|
||||
/* config */
|
||||
:root {
|
||||
--primary: #f8f281;
|
||||
@ -585,4 +588,25 @@ pre.scroll-one-half {
|
||||
.fragment.visible {
|
||||
opacity: 1; }
|
||||
|
||||
/*
|
||||
* Topic List
|
||||
* ==========
|
||||
*/
|
||||
.topic-list {
|
||||
box-shadow: 0 0px 50px rgba(0, 0, 0, 0.3); }
|
||||
.topic-list .topic-list-search {
|
||||
display: block;
|
||||
width: 100%;
|
||||
border: none;
|
||||
padding: .5rem;
|
||||
margin-bottom: 1rem;
|
||||
border-bottom: 1px solid var(--secondary);
|
||||
text-align: center; }
|
||||
.topic-list .topic-link {
|
||||
font-weight: normal; }
|
||||
.topic-list .topic-link.active-topic-link {
|
||||
font-weight: bold; }
|
||||
.topic-list .topic-link.not-matching-search-terms {
|
||||
opacity: .2; }
|
||||
|
||||
/*# sourceMappingURL=latex.css.map */
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -8,6 +8,10 @@ section {
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
input {
|
||||
font-size: inherit;
|
||||
}
|
||||
|
||||
/* config */
|
||||
:root {
|
||||
--primary: #f8f281;
|
||||
@ -738,3 +742,33 @@ pre.scroll-one-half {
|
||||
.fragment.visible {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/*
|
||||
* Topic List
|
||||
* ==========
|
||||
*/
|
||||
.topic-list {
|
||||
box-shadow: 0 0px 50px rgba(0, 0, 0, 0.3);
|
||||
|
||||
.topic-list-search {
|
||||
display: block;
|
||||
width: 100%;
|
||||
border: none;
|
||||
padding: .5rem;
|
||||
margin-bottom: 1rem;
|
||||
border-bottom: 1px solid var(--secondary);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.topic-link {
|
||||
font-weight: normal;
|
||||
|
||||
&.active-topic-link {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
&.not-matching-search-terms {
|
||||
opacity: .2;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user