0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-16 10:22:42 +00:00

stying updates, agnostic theme

This commit is contained in:
Víctor Losada Hernández
2024-01-23 19:08:57 +01:00
parent 4ed9fc7d0e
commit 0dc1b46466

View File

@@ -72,27 +72,50 @@
.foundBrews { .foundBrews {
background-color: #2C3E50; background-color: #2C3E50;
display:flex; display:flex;
flex-direction: row; flex-direction:column;
flex-wrap:wrap;
width:100%; width:100%;
min-height:500px; min-height:500px;
height:max-content; height:max-content;
padding:50px; padding:50px;
padding-bottom:unset; padding-bottom:unset;
overflow-y:scroll;
.brewItem { .brewItem {
background-image: url('/assets/parchmentBackground.jpg'); height:50px;
width:450px;
height:auto;
min-height:unset; min-height:unset;
overflow:visible; width:100%;
margin-right:50px; display:flex;
color:white;
background:#707070;
.text {
min-height:unset;
width:20vw;
text-overflow: ellipsis;
overflow:hidden;
white-space: nowrap;
display:grid;
align-content:center;
h2 {
font-size: 20px;
font-weight:900;
}
}
hr {
display:none;
}
.info {
width:100%;
display:grid;
grid-template-columns: 3fr 1fr 70px 70px 150px 50px;
align-items:center;
br {
display:none;
}
&:not(:has(.brewTags)) {
grid-template-columns:3fr 70px 70px 150px 50px;
}
dt {
font-size:20px;
font-weight:900;
} }
} }
} }
@@ -109,5 +132,3 @@