auth-message.less 659 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // Auth changed message
  3. // --------------------------------------------------
  4. .auth-message {
  5. background-color: @auth-changed-bg;
  6. padding: @line-height-computed 0px;
  7. width: 100%;
  8. position: fixed;
  9. top: -100%;
  10. left: 0px;
  11. z-index: @zindex-auth-message;
  12. transition: top 300ms ease;
  13. &.show {
  14. top: 0px;
  15. bottom: auto;
  16. }
  17. p {
  18. padding: @line-height-computed / 4 0px;
  19. color: @auth-changed-color;
  20. }
  21. // Small displays
  22. @media screen and (max-width: @screen-sm-max) {
  23. text-align: center;
  24. .btn {
  25. padding: @padding-large-vertical @padding-large-horizontal;
  26. font-size: @font-size-large;
  27. }
  28. }
  29. }