2023-09-05 15:04:07 +04:00
|
|
|
.projects {
|
|
|
|
|
display: flex;
|
2023-09-06 21:06:15 +04:00
|
|
|
margin-top: 20px;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 20px;
|
2023-09-05 15:04:07 +04:00
|
|
|
}
|
|
|
|
|
|
2023-09-06 21:06:15 +04:00
|
|
|
.projects :not(:first-child) {
|
2023-09-05 15:04:07 +04:00
|
|
|
margin-left: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 900px) {
|
2023-09-06 21:06:15 +04:00
|
|
|
.projects {
|
2023-09-05 15:04:07 +04:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
2023-09-06 21:06:15 +04:00
|
|
|
.projects:not(:first-child) {
|
2023-09-05 15:04:07 +04:00
|
|
|
margin-left: 0;
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
}
|
|
|
|
|
}
|