diff --git a/contents/links.php b/contents/links.php new file mode 100644 index 0000000..cb33b07 --- /dev/null +++ b/contents/links.php @@ -0,0 +1,21 @@ + +
+
+
Links utili
+
+ +
+ +
+ +

+
+ + +
+
diff --git a/css/styles.css b/css/styles.css index b04d2ce..4f0c30f 100644 --- a/css/styles.css +++ b/css/styles.css @@ -14377,7 +14377,34 @@ a:hover { line-height: 35px; } -/* line 94, global.scss */ +/* line 96, global.scss */ +.items-list .item { + padding: 10px; + transition: .4s; + font-size: 0.875rem; + border-bottom: 1px solid #d1efb5; +} +/* line 102, global.scss */ +.items-list .item .fa-angle-right { + padding: 0 5px; + transition: .4s; +} +/* line 108, global.scss */ +.items-list .item a:after { + content: '\f0c1'; + font-family: 'FontAwesome'; + padding: 0 5px; +} +/* line 115, global.scss */ +.items-list .item:hover { + background: #d1efb5; +} +/* line 117, global.scss */ +.items-list .item:hover .fa-angle-right { + margin-left: 5px; +} + +/* line 124, global.scss */ #MainContent { position: absolute; top: 40px; @@ -14386,7 +14413,7 @@ a:hover { overflow: hidden; } -/* line 102, global.scss */ +/* line 132, global.scss */ #map { width: 100%; border-radius: 3px; diff --git a/scss/.sass-cache/bdcb2ec4843708bc0e130897363854e74056ec3e/global.scssc b/scss/.sass-cache/bdcb2ec4843708bc0e130897363854e74056ec3e/global.scssc index fdefe81..506556a 100644 Binary files a/scss/.sass-cache/bdcb2ec4843708bc0e130897363854e74056ec3e/global.scssc and b/scss/.sass-cache/bdcb2ec4843708bc0e130897363854e74056ec3e/global.scssc differ diff --git a/scss/global.scss b/scss/global.scss index 7a5ab17..784e79e 100644 --- a/scss/global.scss +++ b/scss/global.scss @@ -91,6 +91,36 @@ a{ line-height: 35px; } + +.items-list{ + .item{ + padding: 10px; + transition: .4s; + font-size: $font-14; + border-bottom: 1px solid $light-grey; + + .fa-angle-right{ + padding: 0 5px; + transition: .4s; + } + + a{ + &:after{ + content: '\f0c1'; + font-family: 'FontAwesome'; + padding: 0 5px; + } + } + + &:hover{ + background: $light-grey; + .fa-angle-right{ + margin-left: 5px; + } + } + } +} + #MainContent{ position: absolute; top: 40px;