You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
333 B

3 months ago
.global_menu {
display: grid;
grid-template-columns: repeat(8,1fr);
height: auto;
}
.local_menu {
display: grid;
grid-template-columns: repeat(10,1fr);
height: auto;
}
main {
display: grid;
grid-template-columns: 1fr, 3fr;
}
.sidebar {
padding: 20px;
background-color: darkgreen;
color: yellow;
}
.red {
color: red;
}