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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/materialize-css/sass/components/_table_of_contents.scss')
-rw-r--r--node_modules/materialize-css/sass/components/_table_of_contents.scss33
1 files changed, 33 insertions, 0 deletions
diff --git a/node_modules/materialize-css/sass/components/_table_of_contents.scss b/node_modules/materialize-css/sass/components/_table_of_contents.scss
new file mode 100644
index 0000000000..638009d97a
--- /dev/null
+++ b/node_modules/materialize-css/sass/components/_table_of_contents.scss
@@ -0,0 +1,33 @@
+/***************
+ Nav List
+***************/
+.table-of-contents {
+ &.fixed {
+ position: fixed;
+ }
+
+ li {
+ padding: 2px 0;
+ }
+ a {
+ display: inline-block;
+ font-weight: 300;
+ color: #757575;
+ padding-left: 16px;
+ height: 1.5rem;
+ line-height: 1.5rem;
+ letter-spacing: .4;
+ display: inline-block;
+
+ &:hover {
+ color: lighten(#757575, 20%);
+ padding-left: 15px;
+ border-left: 1px solid $primary-color;
+ }
+ &.active {
+ font-weight: 500;
+ padding-left: 14px;
+ border-left: 2px solid $primary-color;
+ }
+ }
+}