Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GDGToulouse/devfest-theme-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/styles/partials/_table_of_contents.scss')
-rw-r--r--src/styles/partials/_table_of_contents.scss25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/styles/partials/_table_of_contents.scss b/src/styles/partials/_table_of_contents.scss
new file mode 100644
index 0000000..6c4bbf5
--- /dev/null
+++ b/src/styles/partials/_table_of_contents.scss
@@ -0,0 +1,25 @@
+#TableOfContents ul {
+ padding-left: 1em;
+ list-style: none;
+
+ li {
+ font-size: 1rem;
+ margin: var(--space-1) 0;
+ padding: var(--space-1) 0;
+
+ a {
+ color: var(--toc-text);
+ text-decoration: none;
+
+ &:focus, &:hover {
+ text-decoration: underline;
+
+ }
+ }
+ }
+
+}
+
+#TableOfContents > ul > li > ul > li > a {
+ font-weight: bold ;
+} \ No newline at end of file