12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // Auth changed message
- // --------------------------------------------------
- .auth-message {
- background-color: @auth-changed-bg;
- padding: @line-height-computed 0px;
- width: 100%;
- position: fixed;
- top: -100%;
- left: 0px;
- z-index: @zindex-auth-message;
- transition: top 300ms ease;
- &.show {
- top: 0px;
- bottom: auto;
- }
- p {
- padding: @line-height-computed / 4 0px;
- color: @auth-changed-color;
- }
- // Small displays
- @media screen and (max-width: @screen-sm-max) {
- text-align: center;
- .btn {
- padding: @padding-large-vertical @padding-large-horizontal;
- font-size: @font-size-large;
- }
- }
- }
|