Initial commit
[yaffs-website] / web / themes / custom / yaffs / scss / component / _alert.scss
1 /**
2  * Alert styling.
3  */
4 .alert-sm {
5   padding: 5px 10px;
6 }
7
8 // Treat all links inside alert as .alert-link
9 .alert a {
10   font-weight: $alert-link-font-weight;
11 }
12 .alert-success {
13   a, a:hover, a:focus {
14     color: darken($alert-success-text, 10%);
15   }
16 }
17 .alert-info {
18   a, a:hover, a:focus {
19     color: darken($alert-info-text, 10%);
20   }
21 }
22 .alert-warning {
23   a, a:hover, a:focus {
24     color: darken($alert-warning-text, 10%);
25   }
26 }
27 .alert-danger {
28   a, a:hover, a:focus {
29     color: darken($alert-danger-text, 10%);
30   }
31 }