24 lines
279 B
CSS
24 lines
279 B
CSS
|
body {
|
||
|
display: grid;
|
||
|
}
|
||
|
|
||
|
.card {
|
||
|
display: flex;
|
||
|
width: 600px;
|
||
|
max-width: 95vw;
|
||
|
}
|
||
|
|
||
|
.card > img {
|
||
|
margin: 4px;
|
||
|
width: 48px;
|
||
|
height: 48px;
|
||
|
border-radius: 12px;
|
||
|
}
|
||
|
|
||
|
.content > .title {
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.content > .duration {
|
||
|
color: #aaa;
|
||
|
}
|