80 lines
1.2 KiB
CSS
80 lines
1.2 KiB
CSS
.project-section {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
}
|
|
.project-card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: wrap;
|
|
/* background-color: aqua; */
|
|
flex: 0 1 48%;
|
|
gap: 1svw;
|
|
}
|
|
|
|
.project-card img {
|
|
width: 96%;
|
|
height: 50svh;
|
|
align-self: center;
|
|
padding-top: 1svh;
|
|
}
|
|
|
|
.project-title-info {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
border-bottom: var(--underlineTitle);
|
|
width: 80%;
|
|
margin: 0px 2svw;
|
|
padding: 0px 2svw;
|
|
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
flex-wrap: nowrap;
|
|
}
|
|
.project-title-info h3 {
|
|
margin: 0px;
|
|
text-align: start;
|
|
white-space: nowrap;
|
|
align-self: center;
|
|
}
|
|
|
|
.project-title-info img {
|
|
height: 6svh;
|
|
}
|
|
|
|
.project-title-info div {
|
|
display: flex;
|
|
gap: 1svw;
|
|
justify-content: flex-end;
|
|
border-bottom: none;
|
|
}
|
|
|
|
.project-card div p {
|
|
display: flex;
|
|
width: 90%;
|
|
justify-self: center;
|
|
text-align: start;
|
|
}
|
|
|
|
.project-tech-logos {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
align-self: center;
|
|
width: 90%;
|
|
justify-content: flex-start;
|
|
column-gap: calc((100% - (60px * 5)) / 4);
|
|
row-gap: 1svw;
|
|
|
|
padding-bottom: 1svh;
|
|
}
|
|
|
|
.project-tech-logos img {
|
|
aspect-ratio: 1;
|
|
max-width: 60px;
|
|
max-height: 60px;
|
|
flex: 0 1 19%;
|
|
}
|