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.
25 lines
379 B
CSS
25 lines
379 B
CSS
.card
|
|
{
|
|
width: 90mm;
|
|
height: 120mm;
|
|
border: solid 1px black;
|
|
border-radius: 10px;
|
|
box-shadow: 5px 5px 0px gray;
|
|
float: left;
|
|
margin: 2mm;
|
|
position: relative;
|
|
}
|
|
.card > p > img {
|
|
width: 80mm;
|
|
height: 80mm;
|
|
position: absolute;
|
|
top: 20mm;
|
|
left: 5mm;
|
|
}
|
|
.card > h2{
|
|
position: absolute;
|
|
top: 5mm;
|
|
left: 5mm;
|
|
margin: 0;
|
|
}
|