diff --git a/utils/full-page-slider/full-page-slider.component.css b/utils/full-page-slider/full-page-slider.component.css index d125c785..ac7065e2 100644 --- a/utils/full-page-slider/full-page-slider.component.css +++ b/utils/full-page-slider/full-page-slider.component.css @@ -1,10 +1,9 @@ section { position: fixed; top:10%; - left: 0; + left: 120px; height: calc(100% - 100px); - width: 100%; - overflow: hidden; + width: calc(100% - 120px); } .menu { @@ -45,6 +44,17 @@ section { color: var(--portal-main-color); } +.menu a.previous:hover, .menu a.next:hover { + background-color: var(--portal-main-color); + border-radius: 50%; + display: flex; + padding: 5px; +} + +.menu a.previous:hover path, .menu a.next:hover path { + fill: white; +} + .menu nav { position: absolute; top: 50%; @@ -66,7 +76,7 @@ section { } .menu nav > ul > li > a { - display: block; + display: table-cell; border-radius: 100%; width: 15px; height: 15px; @@ -81,6 +91,6 @@ section { -o-animation : border-top-color 0.25s linear, border-right-color 0.25s linear 0.10s, border-bottom-color 0.25s linear 0.30s, border-left-color 0.25s linear 0.40s; } -.menu nav > ul > li.uk-active > a { +.menu nav > ul > li.uk-active > a, .menu nav > ul > li > a:hover { background-color: #E95420; } diff --git a/utils/full-page-slider/full-page-slider.component.ts b/utils/full-page-slider/full-page-slider.component.ts index ada107dd..4c06c3af 100644 --- a/utils/full-page-slider/full-page-slider.component.ts +++ b/utils/full-page-slider/full-page-slider.component.ts @@ -7,12 +7,13 @@ import {SlideComponent} from "./slide.component";