$base-color: #c6538c; $border-dark: rgba($base-color, 0.88); .alert { border: 1px solid $border-dark; }
.alert { border: 1px solid rgba(198, 83, 140, 0.88); }
$sizes: 40px, 60px, 80px, 100px, 120px; @each $size in $sizes { .panel-#{$size} { height: $size; } }
.panel-40px { height: 40px; } .panel-60px { height: 60px; } .panel-80px { height: 80px; } .panel-100px { height: 100px; } .panel-120px { height: 120px; }
@mixin avatar($size, $circle: false) { width: $size; height: $size; @if $circle { border-radius: $size / 2; } } .square-av { @include avatar(100px, $circle: false); } .circle-av { @include avatar(100px, $circle: true); }
.square-av { width: 100px; height: 100px; } .circle-av { width: 100px; height: 100px; border-radius: 50px; }
.container { background:lighten(#00ff00, 30%) }
.container { background: #99ff99; }
.container { background:darken(#cb7832, 30%) }
.container { background: #502f14; }