55 lines
899 B
CSS
55 lines
899 B
CSS
.container {
|
|
display: grid;
|
|
gap: 2.2rem;
|
|
overflow: hidden;
|
|
margin-right: -2rem;
|
|
}
|
|
|
|
.header {
|
|
align-items: baseline;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.link {
|
|
display: none;
|
|
}
|
|
|
|
.stays {
|
|
display: flex;
|
|
gap: 2rem;
|
|
overflow-x: auto;
|
|
|
|
/* Hide scrollbar IE and Edge */
|
|
-ms-overflow-style: none;
|
|
/* Hide Scrollbar Firefox */
|
|
scrollbar-width: none;
|
|
}
|
|
|
|
/* Hide Scrollbar Chrome, Safari and Opera */
|
|
.stays::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
@media screen and (min-width: 950px) {
|
|
.container {
|
|
margin-right: 0;
|
|
}
|
|
@media screen and (max-width: 950px) {
|
|
.stays {
|
|
padding-right: 2rem;
|
|
}
|
|
}
|
|
|
|
.link {
|
|
color: var(--some-black-color, #111);
|
|
display: inline-block;
|
|
font-family: var(--ff-fira-sans);
|
|
font-size: 1.4rem;
|
|
font-weight: 600;
|
|
letter-spacing: 1.2%;
|
|
line-height: 140%;
|
|
text-decoration: none;
|
|
}
|
|
}
|