26 lines
302 B
CSS
26 lines
302 B
CSS
@import "cards.css";
|
|
|
|
body{
|
|
margin: 0;
|
|
}
|
|
|
|
.cards{
|
|
display: flex;
|
|
gap: 1rem;
|
|
flex-wrap: wrap;
|
|
margin: 1rem;
|
|
}
|
|
|
|
.card{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.topleft{
|
|
align-self: flex-start;
|
|
}
|
|
|
|
.bottomright{
|
|
align-self: flex-end;
|
|
} |