41 lines
661 B
CSS
Executable File
41 lines
661 B
CSS
Executable File
.content-grid {
|
|
color: white;
|
|
margin: 2em;
|
|
}
|
|
|
|
.gallery {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, 200px);
|
|
grid-column-gap: 0px;
|
|
grid-row-gap: 0px;
|
|
border: 2px solid #C0AAC0;
|
|
margin-bottom: 5em;
|
|
}
|
|
|
|
.gallery img {
|
|
height: 200px;
|
|
width: 200px;
|
|
border-radius: 5%;
|
|
}
|
|
|
|
.galitem {
|
|
position: relative;
|
|
height: 200px;
|
|
width: 200px;
|
|
}
|
|
|
|
.subtitle {
|
|
color: white;
|
|
width: 200px;
|
|
position: absolute;
|
|
background: rgba(0,0,0,0.7);
|
|
text-align: center;
|
|
overflow: hidden;
|
|
bottom: 0em;
|
|
}
|
|
|
|
.cats {
|
|
display: block;
|
|
text-align: center;
|
|
}
|