| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- .layout-topbar {
- position: fixed;
- height: 5rem;
- z-index: 997;
- left: 0;
- top: 0;
- width: 100%;
- padding: 0 2rem;
- background-color: var(--surface-card);
- transition: left $transitionDuration;
- display: flex;
- align-items: center;
- box-shadow: 0px 3px 5px rgba(0,0,0,.02), 0px 0px 2px rgba(0,0,0,.05), 0px 1px 4px rgba(0,0,0,.08);
-
- .layout-topbar-logo {
- display: flex;
- align-items: center;
- color: var(--surface-900);
- font-size: 1.5rem;
- font-weight: 500;
- width: 300px;
- border-radius: 12px;
-
- img {
- height: 2.5rem;
- margin-right: .5rem;
- }
-
- &:focus {
- @include focused();
- }
- }
-
- .layout-topbar-button {
- display: inline-flex;
- justify-content: center;
- align-items: center;
- position: relative;
- color: var(--text-color-secondary);
- border-radius: 50%;
- width: 3rem;
- height: 3rem;
- cursor: pointer;
- transition: background-color $transitionDuration;
-
- &:hover {
- color: var(--text-color);
- background-color: var(--surface-hover);
- }
-
- &:focus {
- @include focused();
- }
-
- i {
- font-size: 1.5rem;
- }
-
- span {
- font-size: 1rem;
- display: none;
- }
- }
-
- .layout-menu-button {
- margin-left: 2rem;
- }
-
- .layout-topbar-menu-button {
- display: none;
-
- i {
- font-size: 1.25rem;
- }
- }
-
- .layout-topbar-menu {
- margin: 0 0 0 auto;
- padding: 0;
- list-style: none;
- display: flex;
-
- .layout-topbar-button {
- margin-left: 1rem;
- }
- }
- }
-
- @media (max-width: 991px) {
- .layout-topbar {
- justify-content: space-between;
-
- .layout-topbar-logo {
- width: auto;
- order: 2;
- }
-
- .layout-menu-button {
- margin-left: 0;
- order: 1;
- }
-
- .layout-topbar-menu-button {
- display: inline-flex;
- margin-left: 0;
- order: 3;
- }
-
- .layout-topbar-menu {
- margin-left: 0;
- position: absolute;
- flex-direction: column;
- background-color: var(--surface-overlay);
- box-shadow: 0px 3px 5px rgba(0,0,0,.02), 0px 0px 2px rgba(0,0,0,.05), 0px 1px 4px rgba(0,0,0,.08);
- border-radius: 12px;
- padding: 1rem;
- right: 2rem;
- top: 5rem;
- min-width: 15rem;
-
- .layout-topbar-button {
- margin-left: 0;
- display: flex;
- width: 100%;
- height: auto;
- justify-content: flex-start;
- border-radius: 12px;
- padding: 1rem;
-
- i {
- font-size: 1rem;
- margin-right: .5rem;
- }
-
- span {
- font-weight: medium;
- display: block;
- }
- }
- }
- }
- }
|