You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
944 B
48 lines
944 B
/*******************************
|
|
Divider
|
|
*******************************/
|
|
|
|
/*-------------------
|
|
Element
|
|
--------------------*/
|
|
|
|
@dividerMargin: 1rem;
|
|
|
|
@highlightWidth: 1px;
|
|
@highlightColor: rgba(255, 255, 255, 0.2);
|
|
|
|
@shadowWidth: 1px;
|
|
@shadowColor: rgba(0, 0, 0, 0.1);
|
|
|
|
/* Text */
|
|
@fontWeight: bold;
|
|
@color: @darkTextColor;
|
|
@textTransform: uppercase;
|
|
|
|
/*-------------------
|
|
Coupling
|
|
--------------------*/
|
|
|
|
/* Icon */
|
|
@dividerIconSize: 1rem;
|
|
@dividerIconMargin: 0rem;
|
|
|
|
|
|
/*******************************
|
|
Variations
|
|
*******************************/
|
|
|
|
/* Horizontal / Vertical */
|
|
@horizontalMargin: '';
|
|
@horizontalDividerMargin: 1.5%;
|
|
@verticalDividerMargin: 1rem;
|
|
@verticalDividerHeight: ~"calc(100% - "(@verticalDividerMargin)~")";
|
|
|
|
/* Inverted */
|
|
@invertedTextColor: @white;
|
|
@invertedHighlightColor: rgba(255, 255, 255, 0.15);
|
|
@invertedShadowColor: rgba(0, 0, 0, 0.15);
|
|
|
|
/* Section */
|
|
@sectionMargin: 2rem;
|
|
|