1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
.card-container {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 30px;
}
.card {
display: grid;
grid-template-columns: 1fr 3fr 1fr;
grid-template-rows: 1fr 1fr;
grid-gap: 8px;
grid-template-areas:
"top-left top-center top-right"
"bottom bottom bottom";
}
.card-top-left {
grid-area: top-left;
}
.card-top-center {
grid-area: top-center;
}
.card-top-right {
grid-area: top-right;
}
.card-bottom {
grid-area: bottom;
}
.repo {
width: 400px;
height: 150px;
border-radius: 5px;
border: 1px solid #d3d3d3;
padding: 8px;
color: #555;
}
.repo p {
margin: 0;
}
.repo-owner-avatar {
height: 64px;
width: 64px;
}
.repo-stars,
.repo-language,
.repo-last-update {
font-size: 12px;
}
.repo-stars span {
font-size: 24px;
}
|