2014-02-01 15:49:36 +00:00
|
|
|
/*
|
|
|
|
Component: alert
|
|
|
|
------------------------
|
|
|
|
*/
|
2013-12-25 03:09:19 +00:00
|
|
|
|
|
|
|
.alert {
|
2014-02-01 15:49:36 +00:00
|
|
|
//Add padding to allow the icon to appear
|
|
|
|
padding-left: 30px;
|
|
|
|
margin-left: 15px;
|
2013-12-25 03:09:19 +00:00
|
|
|
position: relative;
|
2014-02-01 15:49:36 +00:00
|
|
|
//Make icons float to the left corner
|
|
|
|
> .fa, > .glyphicon {
|
|
|
|
position: absolute;
|
|
|
|
left: -15px;
|
|
|
|
top: -15px;
|
|
|
|
width: 35px;
|
|
|
|
height: 35px;
|
|
|
|
.border-radius(50%);
|
|
|
|
line-height: 35px;
|
|
|
|
text-align: center;
|
|
|
|
background: inherit;
|
|
|
|
border: inherit;
|
|
|
|
}
|
|
|
|
|
2013-12-25 03:09:19 +00:00
|
|
|
}
|