2024-03-27 07:43:19 +00:00
|
|
|
/* styles.css */
|
|
|
|
|
|
|
|
|
|
.folder-notes-style {
|
|
|
|
|
display: block;
|
|
|
|
|
margin: 0px;
|
|
|
|
|
padding: 0px;
|
|
|
|
|
cursor: pointer;
|
2024-08-23 19:09:44 +00:00
|
|
|
color: var(--text-small);
|
2024-03-27 07:43:19 +00:00
|
|
|
text-decoration: none;
|
2024-08-23 19:09:44 +00:00
|
|
|
font-size: var(--font-ui-medium);
|
2024-12-11 06:23:28 +00:00
|
|
|
/* font-family: var(--font-interface-theme); */
|
2024-08-23 19:09:44 +00:00
|
|
|
line-height: var(--line-height-tight);
|
2024-03-27 07:43:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.current-file {
|
2024-08-23 19:09:44 +00:00
|
|
|
color: var(--text-accent);
|
|
|
|
|
padding-top: 0.3em;
|
|
|
|
|
padding-bottom: 0.3em;
|
|
|
|
|
background-color: var(--color-base-00);
|
|
|
|
|
/* background-color: var(--text-selection); */
|
|
|
|
|
/* background-color: var(--text-highlight-bg); */
|
|
|
|
|
font-size: var(--font-ui-larger);
|
|
|
|
|
/* font-family: var(--font-interface-theme); */
|
|
|
|
|
font-weight: var(--font-bold)
|
2024-03-27 07:43:19 +00:00
|
|
|
}
|
|
|
|
|
|
2024-08-23 19:09:44 +00:00
|
|
|
.basic-heading {
|
|
|
|
|
/* color: var(--text-normal); */
|
|
|
|
|
/* color: var(--italic-color); */
|
|
|
|
|
/* Add a little indicator prepend */
|
|
|
|
|
padding-left: 1em;
|
|
|
|
|
padding-top: 0.1em;
|
|
|
|
|
padding-bottom: 0.1em;
|
|
|
|
|
font-size: var(--font-ui-small);
|
|
|
|
|
/* font-family: var(--font-interface-theme); */
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.extra-heading-style {
|
|
|
|
|
color: var(--text-accent);
|
|
|
|
|
padding-left: 1em;
|
|
|
|
|
padding-top: 0.1em;
|
|
|
|
|
padding-bottom: 0.1em;
|
|
|
|
|
font-size: var(--font-ui-medium);
|
|
|
|
|
/* background-color: var(--color-base-00); */
|
|
|
|
|
/* font-family: var(--font-interface-theme); */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hover-style-file {
|
|
|
|
|
background-color: var(--interactive-hover);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p.hover-style-heading {
|
|
|
|
|
/* color: var(--interactive-normal); */
|
2024-03-27 07:43:19 +00:00
|
|
|
background-color: var(--interactive-hover);
|
|
|
|
|
}
|