alerts.less 522 B

123456789101112131415161718192021222324252627
  1. //
  2. // Alerts
  3. // --------------------------------------------------
  4. .misago-alerts {
  5. text-align: center;
  6. .alert {
  7. border: none;
  8. border-bottom: 6px solid fadeOut(#000, 85%);
  9. border-radius: 0;
  10. margin-bottom: 0px;
  11. padding: (@line-height-computed * 0.8) 0px;
  12. font-size: @font-size-large;
  13. .alert-icon {
  14. margin: -@alert-padding 0px;
  15. margin-right: @alert-padding / 2;
  16. position: relative;
  17. top: @font-size-large / 4;
  18. font-size: @font-size-large * 1.8;
  19. }
  20. }
  21. }