mirror of
https://github.com/Steffo99/steffoweb.git
synced 2024-11-21 23:54:30 +00:00
30 lines
384 B
CSS
30 lines
384 B
CSS
|
.Project {
|
||
|
display: grid;
|
||
|
|
||
|
grid-template-areas:
|
||
|
"title description stars"
|
||
|
;
|
||
|
grid-template-columns: 1fr 4fr auto;
|
||
|
grid-column-gap: 12px;
|
||
|
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.Title {
|
||
|
font-size: larger;
|
||
|
|
||
|
grid-area: title;
|
||
|
}
|
||
|
|
||
|
.Description {
|
||
|
justify-self: start;
|
||
|
|
||
|
grid-area: description;
|
||
|
}
|
||
|
|
||
|
.Stars {
|
||
|
justify-self: end;
|
||
|
|
||
|
grid-area: stars;
|
||
|
}
|