You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Portfolio/src/components/Project.module.scss

54 lines
577 B

.body {
border-top: 0.1rem solid var(--borders);
padding: 5rem 0;
}
.description {
margin-bottom: 2rem;
}
.right {
text-align: right;
}
.content {
display: flex;
}
.info,
.right {
font-size: 2rem;
width: 50%;
}
.button:not(:last-child) {
margin-right: 1rem;
}
.cover {
width: 50%;
display: flex;
justify-content: center;
align-items: center;
}
@media only screen and (max-width: 600px) {
.cover,
.info,
.right {
width: 100%;
margin: 2rem 0;
text-align: center;
img {
height: 15rem;
width: 15rem;
}
}
.content {
display: block;
}
}