94 lines
1.7 KiB
CSS
94 lines
1.7 KiB
CSS
#übersicht {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
margin: 10px 0px;
|
|
padding: 0px 10px;
|
|
}
|
|
|
|
.container .product {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
padding: 10px;
|
|
align-items: center;
|
|
border: solid #006a4e;
|
|
background-color: #b8d5cd;
|
|
border-radius: 40px;
|
|
margin: 10px 20px;
|
|
width: 40%;
|
|
}
|
|
|
|
.container .product img {
|
|
width: 90%;
|
|
height: width;
|
|
max-height: 400px;
|
|
border: solid #006a4e;
|
|
border-radius: 40px;
|
|
overflow: hidden;
|
|
object-fit: fill;
|
|
}
|
|
|
|
.container .product p, h3 {
|
|
margin: 5px 0px;
|
|
}
|
|
|
|
.container .product .title {
|
|
font-size: 30px;
|
|
}
|
|
|
|
.container .product .shopIn {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: start;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.container .product .shopIn span,button{
|
|
display: flex;
|
|
vertical-align: middle;
|
|
margin: 10px 10px;
|
|
font-size: 30px;
|
|
}
|
|
|
|
.container .product .shopIn button>span.buttonModifier {
|
|
text-align: center;
|
|
margin: 0px;
|
|
padding: 3px;
|
|
}
|
|
|
|
.container .product .shopIn button{
|
|
border-radius: 30px;
|
|
border-color: #006a4e;
|
|
background-color: #2e856e;
|
|
width: 40px;
|
|
height: 40px;
|
|
text-align: center;
|
|
padding: 0px 10px;
|
|
color: #b8d5cd;
|
|
font-size: 30px;
|
|
}
|
|
|
|
.container .product .size {
|
|
font-size: 25px;
|
|
}
|
|
|
|
.container .product .description{
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
text-align: justify;
|
|
height: 150px;
|
|
}
|
|
|
|
#bunt,#grün,#special {
|
|
font-size: 50px;
|
|
color: #006a4e;
|
|
} |