?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/themes/quadric/assets/css/scss/modules/shortcodes/



?? Go up: /home/webdevt/www/wdp/wp-content/themes/quadric/assets/css/scss/modules

?? Viewing: _unordered-list.scss

/* ==========================================================================
# Unordered List Style - begin
========================================================================== */

.edgtf-unordered-list ul{
	display: block;
	margin: 0;
	padding: 0;
    list-style-type: none;
    >li{
        position: relative;
        font-family: inherit;
        padding-left: 20px;
        margin-bottom: 5px;
    }    
}
.edgtf-unordered-list.edgtf-line  ul{

    >li{
        &:before {
            height: 20px;
            width: auto;
            line-height: 20px;
            display: inline-block;
            position: absolute;
            left: 0;
            top: 1px;
            padding: 0;
            color: $first-main-color;
            text-align: center;
            content: '-';
        }
    }
    
    
}
.edgtf-unordered-list.edgtf-square  ul{
    >li{
        &:before {
            height: 6px;
            width: 6px;
            display: inline-block;
            position: absolute;
            left: 0;
            top: 10px;
            padding: 0;
            background-color:  $first-main-color;
            text-align: center;
            content: '';
        }
    }

}

.edgtf-unordered-list.edgtf-circle  ul{
   >li{
      &:before {
            height: 6px;
            width: 6px;
            border-radius: 6px;
            display: inline-block;
            position: absolute;
            left: 0;
            top: 10px;
            padding: 0;
            background-color:  $first-main-color;
            text-align: center;
            content: '';
        }
    }

}
.edgtf-unordered-list.edgtf-color-black  ul {
	> li {
		&:before {
			background-color:  #000 !important; /* predefined style */
		}
	}
}
.edgtf-unordered-list.edgtf-color-white  ul {
	> li {
		&:before {
			background-color:  #fff !important; /* predefined style */
		}
	}
}
.edgtf-unordered-list.edgtf-animate-list ul li{
    opacity: 0;
    top: -40px;
}

.touch .no_animation_on_touch .edgtf-unordered-list.edgtf-animate-list  ul li{
    opacity: 1;
    top: 0;
}

/* ==========================================================================
# Unordered List Style - end
========================================================================== */


??

??