No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_alert.scss 635B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. //
  2. // Alert
  3. //
  4. .alert {
  5. font-size: $font-size-sm;
  6. }
  7. // Alert heading
  8. .alert-heading {
  9. font-weight: $font-weight-bold;
  10. font-size: $h4-font-size;
  11. margin-top: .15rem;
  12. }
  13. // Alert icon
  14. .alert-icon {
  15. font-size: 1.25rem;
  16. margin-right: 1.25rem;
  17. display: inline-block;
  18. vertical-align: middle;
  19. i.ni {
  20. position: relative;
  21. top: 1px;
  22. }
  23. }
  24. // Alert text next to an alert icon
  25. .alert-text {
  26. display: inline-block;
  27. vertical-align: middle;
  28. }
  29. // Alert links
  30. [class*="alert-"] {
  31. .alert-link {
  32. color: $white;
  33. border-bottom: 1px dotted rgba($white, .5);
  34. }
  35. }