redstrate.com/themes/red/assets/css/site.css

49 lines
580 B
CSS
Raw Normal View History

2022-09-14 16:54:11 -04:00
/* desktop devices */
@media (min-width: 768px) {
body {
grid-template:
"head head"
"nav main"
"nav foot";
}
}
/* mobile devices */
@media (max-width: 768px) {
body {
grid-template:
"head"
"nav"
"main"
"foot";
}
}
2022-09-14 16:48:15 -04:00
body {
background-color: #eebebe;
display: grid;
}
header {
grid-area: head;
}
aside {
background-color: #e3e3e3;
width: 250px;
grid-area: nav;
}
article {
background-color: #e3e3e3;
grid-area: main;
}
footer {
grid-area: foot;
}