summaryrefslogtreecommitdiff
path: root/www/lib/angular-carousel/src/css
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@gmail.com>2017-09-27 11:39:30 -0400
committerPliable Pixels <pliablepixels@gmail.com>2017-09-27 11:39:30 -0400
commite18708f10b04455be151a5a799f0109c34f20a25 (patch)
tree9e4559ef0fff8b366474e7768308ddca1e32268a /www/lib/angular-carousel/src/css
parent97a1cb3ae199c7b5455dcba0001efd5b4c32040a (diff)
package updates to set up bower correctly #535
Diffstat (limited to 'www/lib/angular-carousel/src/css')
-rwxr-xr-xwww/lib/angular-carousel/src/css/angular-carousel.scss74
1 files changed, 0 insertions, 74 deletions
diff --git a/www/lib/angular-carousel/src/css/angular-carousel.scss b/www/lib/angular-carousel/src/css/angular-carousel.scss
deleted file mode 100755
index 905971f0..00000000
--- a/www/lib/angular-carousel/src/css/angular-carousel.scss
+++ /dev/null
@@ -1,74 +0,0 @@
-input[type=range] {
- width:300px;
-}
-
-ul[rn-carousel] {
- overflow:hidden;
- padding:0;
- white-space: nowrap;
- position: relative;
- perspective:1000px;
- -ms-touch-action: pan-y;
- touch-action: pan-y;
- > li {
- color:black;
- backface-visibility: hidden;
- overflow: visible;
- vertical-align: top;
- position:absolute;
- left:0;
- right:0;
- white-space: normal;
- padding:0;
- margin:0;
- list-style-type:none;
- width:100%;
- height:100%;
- display:inline-block;
- }
-}
-
-/* prevent flickering when moving buffer */
-ul[rn-carousel-buffered] > li {
- display:none;
-}
-
-ul[rn-carousel-transition="hexagon"] {
- overflow:visible;
-}
-
-/* indicators */
-div.rn-carousel-indicator span {
- cursor:pointer;
- color: #666;
- &.active {
- color: white
- }
-}
-
-/* prev/next controls */
-.rn-carousel-control {
- transition: opacity 0.2s ease-out;
- font-size: 2rem;
- position: absolute;
- top: 40%;
- opacity: 0.75;
- cursor: pointer;
- &:hover {
- opacity: 1;
- }
-
- &.rn-carousel-control-prev {
- left: 0.5em;
- &:before {
- content: "<";
- }
- }
-
- &.rn-carousel-control-next {
- right: 0.5em;
- &:before {
- content: ">";
- }
- }
-}