2014-04-06 14:14:03 +00:00
|
|
|
/*
|
|
|
|
Flash Messages
|
|
|
|
*/
|
|
|
|
|
|
|
|
@mixin flash($background: $flash-notice, $text: $flash-text) {
|
2014-04-29 18:18:14 +00:00
|
|
|
$flash-height: 35px;
|
|
|
|
|
2014-04-06 14:14:03 +00:00
|
|
|
background-color: $background;
|
|
|
|
color: $text;
|
2014-04-29 18:18:14 +00:00
|
|
|
padding: 7px 7px 7px 44px;
|
2014-04-06 14:14:03 +00:00
|
|
|
position: relative;
|
2014-05-02 16:43:23 +00:00
|
|
|
border-radius: $base-border-radius;
|
2014-04-08 23:28:46 +00:00
|
|
|
|
2014-04-06 14:14:03 +00:00
|
|
|
&:before {
|
|
|
|
@include box-sizing(border-box);
|
2014-05-02 16:43:23 +00:00
|
|
|
border-radius: $base-border-radius 0 0 $base-border-radius;
|
2014-04-06 14:14:03 +00:00
|
|
|
font-family: FontAwesome;
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: normal;
|
|
|
|
content: "\f05a";
|
|
|
|
background-color: darken($background, 10%);
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
float: left;
|
2014-04-29 18:18:14 +00:00
|
|
|
width: $flash-height;
|
2014-04-15 22:04:43 +00:00
|
|
|
height: 100%;
|
2014-04-29 18:18:14 +00:00
|
|
|
padding: 7px;
|
2014-04-06 14:14:03 +00:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
2014-04-21 18:19:03 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Text Highlights
|
|
|
|
*/
|
|
|
|
|
|
|
|
.highlight {
|
2014-04-29 20:02:20 +00:00
|
|
|
font-size: 12px;
|
|
|
|
line-height: 18px;
|
2014-05-02 16:43:23 +00:00
|
|
|
border-radius: $base-border-radius;
|
2014-04-21 18:19:03 +00:00
|
|
|
background: $blue;
|
|
|
|
color: white;
|
|
|
|
display: inline-block;
|
|
|
|
font-style: italic;
|
2014-04-29 20:02:20 +00:00
|
|
|
padding: 0 3px;
|
2014-04-21 18:19:03 +00:00
|
|
|
}
|