Показать сообщение отдельно
  #3 (permalink)  
Старый 09.02.2015, 06:56
Аватар для Sanu0074
Аспирант
Отправить личное сообщение для Sanu0074 Посмотреть профиль Найти все сообщения от Sanu0074
 
Регистрация: 16.12.2012
Сообщений: 80

рони,
вот кусочек SASS
& .slider{
        float: left;
        width: 740px;
        -moz-user-select: -moz-none;
        -o-user-select: none;
        -khtml-user-select: none;
        -webkit-user-select: none;
        user-select: none;
            overflow: hidden;
        & .control{
            position: relative;
            z-index: 100;
            position: absolute;
            width: 100%;
            bottom:6px;
            cursor: default;
            & .switch{
                display: inline-block;
                background: transparent;
                border-bottom: 20px solid $insideBlBg;
                border-left: 15px solid transparent;
                border-right: 15px solid transparent;
                height: 0;
                & div{
                    display: inline-block;
                    background: #000;
                    border-radius: 50%;
                    padding: 5px;
                    margin: 6px 2px 0 2px;
                    cursor: pointer;
                    &.curr{
                        background: #fff;
                    }
                    &.prev{
                        background: url(../img/sprite.png) no-repeat -40px -4px;
                    }
                    &.next{
                        background: url(../img/sprite.png) no-repeat -40px -20px;
                    }
                }
            }
        }
        & .tape{
            position: relative;
            z-index: 10;
            & div{
                text-align: left;
                z-index: 11;
                position: absolute;
                width: 741px;
                height: 234px;
                background-size: 100%;
            }
            & .curr{
                z-index: 15;
            }
        }
    }
Ответить с цитированием