49 строки
766 B
CSS
49 строки
766 B
CSS
body {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
margin: 0;
|
|
background-color: var(--md-sys-color-surface-container-high);
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
main {
|
|
padding: 1rem;
|
|
}
|
|
|
|
main > * {
|
|
width: 100%;
|
|
}
|
|
|
|
nav {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: var(--md-sys-color-surface-container);
|
|
}
|
|
|
|
nav ul {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
margin: 0;
|
|
padding: .5rem;
|
|
list-style: none;
|
|
}
|
|
|
|
nav li {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
color: var(--md-sys-color-on-surface);
|
|
text-align: center;
|
|
}
|
|
|
|
nav md-icon-button {
|
|
width: 100%;
|
|
}
|