10 lines
236 B
CSS
10 lines
236 B
CSS
#menu {
|
|
padding-left: 5%;
|
|
padding-right: 5%;
|
|
padding-top: 1%;
|
|
display: grid;
|
|
grid-template-columns: repeat(2, calc(90% / 2));
|
|
grid-template-rows: repeat(2, calc(90% / 2));
|
|
grid-gap: 2% 2%;
|
|
color: white;
|
|
} |