auth-message.less 675 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. }
  22. // Small displays
  23. @media screen and (max-width: @screen-sm-max) {
  24. .auth-message {
  25. text-align: center;
  26. .btn {
  27. padding: @padding-large-vertical @padding-large-horizontal;
  28. font-size: @font-size-large;
  29. }
  30. }
  31. }