17 lines
No EOL
309 B
CSS
17 lines
No EOL
309 B
CSS
body {
|
|
background-color: bisque;
|
|
display: -ms-grid;
|
|
display: grid;
|
|
-ms-grid-columns: (1fr)[5];
|
|
grid-template-columns: repeat(5, 1fr);
|
|
grid-gap: 20px;
|
|
-ms-grid-row: 5;
|
|
grid-row: 5;
|
|
padding-left: 1%;
|
|
padding-right: 1%;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
/*# sourceMappingURL=main.css.map */ |