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.
38 lines
529 B
38 lines
529 B
3 months ago
|
header {
|
||
|
background-color: antiquewhite;
|
||
|
padding: 20px;
|
||
|
}
|
||
|
|
||
|
nav {
|
||
|
display: grid;
|
||
|
grid-template-columns: repeat(5, 1fr);
|
||
|
text-align: center;
|
||
|
align-items: center;
|
||
|
background-color: aliceblue;
|
||
|
}
|
||
|
|
||
|
main {
|
||
|
display: grid;
|
||
|
grid-template-columns: repeat(3,1fr);
|
||
|
grid-auto-rows: 250px;
|
||
|
gap: 30px;
|
||
|
}
|
||
|
|
||
|
.short {
|
||
|
grid-row: span 2;
|
||
|
}
|
||
|
|
||
|
.short img {
|
||
|
width: 600px;
|
||
|
height: 400px;
|
||
|
}
|
||
|
|
||
|
.long img {
|
||
|
width: 400px;
|
||
|
height: 600px;
|
||
|
}
|
||
|
|
||
|
footer {
|
||
|
text-align: center;
|
||
|
border-top: 2px solid gray;
|
||
|
}
|