23 lines
317 B
CSS
23 lines
317 B
CSS
#projects {
|
|
header {
|
|
height: 300px;
|
|
}
|
|
article {
|
|
display: grid;
|
|
grid-gap: 20px;
|
|
grid-auto-columns: repeat(auto-fill, minmax(500px, 1fr));
|
|
p {
|
|
grid-column: 1 / span 2;
|
|
}
|
|
img {
|
|
max-height: 500px;
|
|
max-width: 500px;
|
|
width: 100%;
|
|
margin: 0px auto;
|
|
}
|
|
}
|
|
.mouse {
|
|
margin-top: 100px;
|
|
}
|
|
}
|