Blame view

static/sass/index/_footer.scss 1.96 KB
梁志锋 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
.float-layer {
        height: 44px;
        background: rgba(68, 68, 68, 0.95);
        position: fixed;
        width: 100%;
        bottom: 0;
        left: 0;
        z-index: 9999;
        padding: 10px 0;
        
        .float-layer-left {
            padding-left: 22px;
            overflow: hidden;
            float: left;

            img {
                height: 44px;
                float: left;
                margin-right: 10px;
            }

            p {
                float: left;
                font-size: 16px;
                height: 44px;
                line-height: 44px;
                color: white;
            }
29 30 31 32 33 34 35 36 37 38 39

            .yoho-icon {
                float: left;
                margin-right: 10px;
                font-size: 22px;
                line-height: 44px;
                width: 44px;
                height: 44px;
                text-align: center;
                color: #fff;
                border-radius: 10px;
ccbikai authored
40 41
                @include background(linear-gradient(#323232, #0f0f0f));
                // background-image: linear-gradient(#323232, #0f0f0f);
42
            }
梁志锋 authored
43 44 45 46 47 48 49 50 51 52
        }

}

#float-layer-close {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
梁志锋 authored
53 54 55 56 57 58 59 60
    
    .close-icon {
        position: absolute;
        left: 0;
        top: 0;
        color: #C0C0C0;
        z-index: 2;
    }
梁志锋 authored
61 62 63 64 65 66 67 68 69 70 71 72 73
}

#float-layer-btn {
    position: absolute;
    top: 50%;
    right: 15px;
    font-size: 16px;
    padding: 0 10px;
    height: 27px;
    line-height: 27px;
    background: white;
    border-radius: 5px;
    margin-top: -13px;
uedxwg authored
74 75 76 77 78 79 80
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.5);    
    &:link,
    &:visited,
    &:hover,
    &:actived {
        color: #000;
    }
梁志锋 authored
81 82 83 84 85 86 87 88 89 90 91 92
}

.circle-rightbottom { 
    position: absolute;
   
    width: 25px; 
    height: 0px;
    border:0 solid #323232;
    border-bottom:25px solid #323232;
    -moz-border-radius:0 0 25px 0;
    -webkit-border-radius:0 0 25px 0;
    border-radius:0 0 25px 0; 
梁志锋 authored
93
}