mirror of
https://github.com/Feodor2/Mypal68.git
synced 2025-06-18 14:55:44 -04:00
45 lines
919 B
CSS
45 lines
919 B
CSS
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
body {
|
|
--sidebar-width: 320px;
|
|
display: grid;
|
|
grid-template-columns: var(--sidebar-width) 1fr;
|
|
grid-template-rows: 75px 1fr;
|
|
grid-template-areas: "header header"
|
|
"logins login";
|
|
height: 100vh;
|
|
}
|
|
|
|
header {
|
|
display: flex;
|
|
grid-area: header;
|
|
align-items: center;
|
|
background-color: var(--in-content-page-background);
|
|
border-bottom: 1px solid var(--in-content-box-border-color);
|
|
padding-inline-end: 23px;
|
|
}
|
|
|
|
login-filter {
|
|
min-width: 320px;
|
|
max-width: 400px;
|
|
margin-inline: 40px auto;
|
|
flex-grow: 1;
|
|
align-self: center;
|
|
}
|
|
|
|
menu-button {
|
|
margin-inline-start: 18px;
|
|
}
|
|
|
|
login-list {
|
|
grid-area: logins;
|
|
}
|
|
|
|
login-item {
|
|
grid-area: login;
|
|
max-width: 800px;
|
|
}
|
|
|