aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/app/scripts/directives/page-scroller/page-scroller.less
diff options
context:
space:
mode:
authorMichael Lando <ml636r@att.com>2017-06-09 03:19:04 +0300
committerMichael Lando <ml636r@att.com>2017-06-09 03:19:04 +0300
commited64b5edff15e702493df21aa3230b81593e6133 (patch)
treea4cb01fdaccc34930a8db403a3097c0d1e40914b /catalog-ui/app/scripts/directives/page-scroller/page-scroller.less
parent280f8015d06af1f41a3ef12e8300801c7a5e0d54 (diff)
[SDC-29] catalog 1707 rebase commit.
Change-Id: I43c3dc5cf44abf5da817649bc738938a3e8388c1 Signed-off-by: Michael Lando <ml636r@att.com>
Diffstat (limited to 'catalog-ui/app/scripts/directives/page-scroller/page-scroller.less')
-rw-r--r--catalog-ui/app/scripts/directives/page-scroller/page-scroller.less98
1 files changed, 0 insertions, 98 deletions
diff --git a/catalog-ui/app/scripts/directives/page-scroller/page-scroller.less b/catalog-ui/app/scripts/directives/page-scroller/page-scroller.less
deleted file mode 100644
index 14f8568f07..0000000000
--- a/catalog-ui/app/scripts/directives/page-scroller/page-scroller.less
+++ /dev/null
@@ -1,98 +0,0 @@
-.sdc-page-scroller {
-
- /****************** Navigation ***************/
- nav {
- position: fixed;
- top: 0;
- right: 0;
- z-index: 100;
- display: flex;
- flex-direction: column;
- width: 100px;
- bottom: 0;
- background-color: #000;
- align-items: center;
- justify-content: center;
- }
-
- nav ul {
- list-style: none;
- text-align: center;
- margin-top: 0;
- padding: 0;
- }
-
- nav ul li {
- display: block;
- margin-bottom: 15px;
-
- }
-
- nav ul li:last-child {
-
- }
-
- nav a {
- display: block;
- height: 6px;
- width: 6px;
- border-radius: 50%;
- background-color: #4a4c4d;
- }
-
- nav a.active {
- position: relative;
- }
-
- nav a.active::after {
- content: '';
- display: block;
- position: absolute;
- border: 2px solid #0198d1;
- width: 16px;
- height: 16px;
- border-radius: 50%;
- top: -5px;
- left: -5px;
- }
-
- /****************** Previous Next navigation ***************/
- .go-prev, .go-next {
- cursor: pointer;
- font-weight: bold;
- text-decoration: underline;
- }
-
- .slides-container {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- overflow-y: hidden;
- z-index: 10;
- }
-
- .slide {
- position: relative;
- width: 100%;
- height: 100%;
- overflow: hidden;
- }
-
- .slide .centered {
- width: 60%;
- margin: 200px auto 0;
- }
-
- .slide .centered h1 {
- text-align: center;
- }
-
- .slide .centered p {
- text-align: center;
- margin-top: 20px;
- font-size: 20px;
- }
-
-}