CSS fixes, new text

This commit is contained in:
Bingus_Violet 2024-01-07 01:28:28 -06:00
parent fa4d09614f
commit 01ed7a416e
2 changed files with 22 additions and 15 deletions

View file

@ -118,7 +118,7 @@ p {
margin: 10px;
}
img:not(.project-inner > img) {
img:not(.project-inner > div > img) {
width: 100%;
max-width: 135px;
transition: all 2s cubic-bezier(0.075, 0.82, 0.165, 1);
@ -168,27 +168,27 @@ hr {
}
.project {
background-color: rgba(35, 35, 35, 1);
padding: 10px;
background-color: rgba(35, 35, 35, 0.8);
padding: 15px;
border: 2px gray solid;
}
.project-inner {
overflow: hidden;
margin: auto;
padding: 0;
display: flex;
position: relative;
margin: auto;
z-index: 3;
}
.project-inner > img {
.project-inner > div > img {
object-fit: cover;
max-width: 300px;
border: 2px lightgray solid;
border: 2px white solid;
width: 80%;
max-width: 500px;
margin: auto;
}
.project > p {
text-align: right;
display: inline-block;
}