auth-changed-message.less 806 B

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