Sha256: 0457999ab7fc36351687b7a9f0aaf39bde4e5fb389b51750fdccf80dc5fcc989

Contents?: true

Size: 1.05 KB

Versions: 2

Compression:

Stored size: 1.05 KB

Contents

.divider {
	display: block; position: relative;
	background: inherit;
	text-align: center;
	& > * {
		display: inline-block; position: relative;
		margin: 0 auto; padding: 0 15px;
		background: inherit;
		z-index: 3;
		&.white { background: $white; }
		&.dark { background: $dark-bg; }
		&.main { background: $main-bg; }
		&.soft { background: $main-bg; }
		
	}
	&:after {
		display: block; position: absolute; content: "";
		margin: -1px 0 0; padding: 0;
		top: 50%; height: 0;
		left: 0; right: 0;
		border-top: solid 1px #ccc;
		border-bottom: solid 1px $white;
		z-index: 1;
	}
}

.section {
	.divider {
		& > * { background: $main-bg; }
	}
	hr {
		display: block; position: relative;
		margin: 10px 0; padding: 0;
		height: 0;
		border: none;
		border-top: solid 1px #ccc;
		border-bottom: solid 1px $white;
	}

    &.dark {
        background: $dark-bg;
		.divider > * { background: $dark-bg; }
    }
	&.bright {
		background: $white;
		.divider > * { background: $white; }
	}
	&.brand { 
		background: $brand-color; 
		.divider > * { background: $brand-color; }
	}
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
magic_stylez-0.0.0.27 vendor/assets/stylesheets/magic/helper/_divider.scss
magic_stylez-0.0.0.26 vendor/assets/stylesheets/magic/helper/_divider.scss