1
0
mirror of https://github.com/danbee/cv synced 2025-03-04 08:59:12 +00:00
cv/source/css/components/_content.scss
Dan Barber 4346f8a3ba Lots of changes and updates
* Start organizing CSS according to ITCSS

* Replace logo with rainbow db

* Add Imagine Learning to experience

* Refactor layout to use CSS grid
2023-06-25 18:13:26 -05:00

33 lines
508 B
SCSS

.content {
@media only screen and (min-width: 640px) {
display: grid;
grid-template-rows: 0fr 0fr 1fr;
grid-template-columns: 2fr 1fr;
grid-template-areas:
"profile contact"
"experience skills"
"experience interests";
grid-gap: 0 7%;
}
&__profile {
grid-area: profile;
}
&__contact {
grid-area: contact;
}
&__skills {
grid-area: skills;
}
&__experience {
grid-area: experience;
}
&__interests {
grid-area: interests;
}
}