30 lines
643 B
SCSS
30 lines
643 B
SCSS
.portfolio {
|
|
&-header {
|
|
justify-content: space-between;
|
|
}
|
|
&_title {
|
|
text-transform: uppercase;
|
|
font: {
|
|
size: 35px;
|
|
weight: 600;
|
|
}
|
|
color: var(--main-text-color);
|
|
margin: 50px 50px;
|
|
}
|
|
&_buttons {
|
|
position: relative;
|
|
width: 130px;
|
|
margin-top: 1em;
|
|
margin-left: auto;
|
|
margin-right: 2em;
|
|
button {
|
|
width:60px;
|
|
height: 60px;
|
|
border:3px solid #373737;
|
|
border-radius: 4px;
|
|
:hover {
|
|
border-color: #D9D9D9;
|
|
}
|
|
}
|
|
}
|
|
} |