Skip to content

Instantly share code, notes, and snippets.

@GuilhermeHideki
Created December 29, 2016 19:24
Show Gist options
  • Save GuilhermeHideki/7fd05701c34b23ba2bdcbb9b9370876f to your computer and use it in GitHub Desktop.
Save GuilhermeHideki/7fd05701c34b23ba2bdcbb9b9370876f to your computer and use it in GitHub Desktop.
SCSS Bootstrap callout
.bs-callout {
padding: 20px;
margin: 20px 0;
border: 1px solid #eee;
border-left-width: 5px;
border-radius: 3px;
h4 {
margin-top: 0;
margin-bottom: 5px;
}
p:last-child {
margin-bottom: 0;
}
code {
border-radius: 3px;
}
+.bs-callout {
margin-top: -5px;
}
}
@mixin bs-callout($class, $color) {
.bs-callout-#{$class} {
border-left-color: $color;
h4 {
color: $color;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment