desync-message.less 417 B

1234567891011121314151617181920212223
  1. //
  2. // Desync Message
  3. // --------------------------------------------------
  4. .desync-message {
  5. background: @alert-desync-bg;
  6. padding: @line-height-computed * 1.5 0px;
  7. .box-shadow(0px 0px 3px fadeOut(#333, 70%));
  8. position: fixed;
  9. top: -100%;
  10. width: 100%;
  11. z-index: @zindex-modal + 20;
  12. color: @alert-desync-text;
  13. text-align: center;
  14. &.visible {
  15. top: 0px;
  16. transition: top 200ms ease;
  17. }
  18. }