You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
659 B
CSS

1 year ago
.card
{
width: 70mm;
height: 95mm;
1 year ago
border: solid 1px black;
border-radius: 10px;
box-shadow: 5px 5px 0px gray;
float: left;
margin: 2mm;
position: relative;
}
.card > p.image > img {
1 year ago
width: 80mm;
height: 80mm;
position: absolute;
top: 20mm;
left: 5mm;
}
.card > h2{
position: absolute;
top: 5mm;
left: 5mm;
margin: 0;
}
.card > p.text {
width: 80mm;
height: 20mm;
position: absolute;
top: 95mm;
left: 5mm;
text-align: center;
}
.card > p.textnoimage {
width: 80mm;
height: 20mm;
position: absolute;
top: 25mm;
left: 5mm;
text-align: center;
}