64 lines
1.0 KiB
CSS
64 lines
1.0 KiB
CSS
|
.page {
|
||
|
position: relative;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
main {
|
||
|
flex: 1;
|
||
|
}
|
||
|
|
||
|
.top-row {
|
||
|
background-color: #171717;
|
||
|
color: #f1f1f1;
|
||
|
border-bottom: 1px solid #252525;
|
||
|
justify-content: center;
|
||
|
height: 3.5rem;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.top-row ::deep a, .top-row .btn-link {
|
||
|
white-space: nowrap;
|
||
|
margin-left: 1.5rem;
|
||
|
}
|
||
|
|
||
|
.top-row a:first-child {
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
}
|
||
|
|
||
|
@media (max-width: 640.98px) {
|
||
|
.top-row.auth {
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
|
||
|
.top-row a, .top-row .btn-link {
|
||
|
margin-left: 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media (min-width: 641px) {
|
||
|
.page {
|
||
|
flex-direction: row;
|
||
|
}
|
||
|
|
||
|
.sidebar {
|
||
|
width: 250px;
|
||
|
height: 100vh;
|
||
|
position: sticky;
|
||
|
top: 0;
|
||
|
}
|
||
|
|
||
|
.top-row {
|
||
|
position: sticky;
|
||
|
top: 0;
|
||
|
z-index: 1;
|
||
|
}
|
||
|
|
||
|
.top-row, article {
|
||
|
padding-left: 2rem !important;
|
||
|
padding-right: 1.5rem !important;
|
||
|
}
|
||
|
}
|