37 lines
750 B
CSS
Executable file
37 lines
750 B
CSS
Executable file
.Services {
|
|
background-image: radial-gradient(circle at 100vw 100vh, rgba(255,145,0,0.2) 0%, rgba(0,0,0,0) 63%, rgba(0,0,0,0) 100%);
|
|
background-color: var(--color-orange-black);
|
|
background-repeat: no-repeat;
|
|
|
|
|
|
|
|
.network-list {
|
|
width: 100%;
|
|
overflow-x: auto;
|
|
padding-top: 4px;
|
|
|
|
& .scroll-container {
|
|
display: flex;
|
|
padding-bottom: 3rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (width < 1423px) {
|
|
.Services {
|
|
& .service-list article:last-child {
|
|
grid-column: 1/-1;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (width < 600px) {
|
|
.Services {
|
|
& .network-list {
|
|
--height: 380px;
|
|
& article {
|
|
flex-basis: 70vw;
|
|
}
|
|
}
|
|
}
|
|
}
|