1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-09-24 18:18:49 +02:00
blog/_src/_assets/styl/alerts.styl

35 lines
633 B
Stylus
Raw Normal View History

2014-07-12 02:00:18 +02:00
//
// kremalicious3
// --------------
2014-07-12 21:22:47 +02:00
// Alerts
2014-07-12 02:00:18 +02:00
//
.alert
2014-07-12 21:22:47 +02:00
padding: $padding-base-vertical $padding-base-horizontal
margin-bottom: $spacer
2014-07-12 02:00:18 +02:00
border-radius: $border-radius-base
2014-07-12 21:22:47 +02:00
font-size: $font-size-small
border: 1px solid transparent
2014-07-12 02:00:18 +02:00
> p,
> ul
margin-bottom: 0
> p + p
margin-top: 5px
.alert-success
2014-07-12 21:22:47 +02:00
color: #468847
background: #dff0d8
2014-07-13 00:42:57 +02:00
border-color: darken(#dff0d8, 5%)
2014-07-12 02:00:18 +02:00
.alert-danger,
.alert-error
2014-07-12 21:22:47 +02:00
color: #b94a48
background: #f2dede
2014-07-13 00:42:57 +02:00
border-color: darken(#f2dede, 5%)
2014-07-12 02:00:18 +02:00
.alert-info
2014-07-12 21:22:47 +02:00
color: #3a87ad
background: #d9edf7
2014-07-13 00:42:57 +02:00
border-color: darken(#d9edf7, 5%)