grid push

This commit is contained in:
chimchooree
2022-07-18 00:26:24 -05:00
parent 35b8d6e233
commit 1c8c4a72c5
4 changed files with 17 additions and 11 deletions
+7 -4
View File
@@ -1,15 +1,18 @@
.content-grid {
margin: auto;
width: 1fr;
color: white;
margin: auto;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
grid-template-columns: repeat(auto-fit, 200px);
grid-column-gap: 0px;
grid-row-gap: 0px;
margin: auto;
border: 2px solid #C0AAC0;
}
.gallery img {
height: 200px;}
height: 200px;
border-radius: 5%;
}
+2 -3
View File
@@ -35,15 +35,14 @@
.ocs { grid-area: 4 / 1 / 5 / 3; text-align:left;}
.ocs-nav {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(10em, 1fr));
grid-template-columns: repeat(auto-fit, 150px);
background-color: #C0AAC0;
}
.ocs-btn {
background-color: #C0AAC0;
}
.ocs img {
width: 10em;
border-radius: 5%;
width: 150px;
}
.content-right h1, h2, ul, li, b, i, p, img, a {