matrix.org/sass/_servers.scss
Thibault Martin fe7a0fdf13
Zola responsive sdks (#1701)
* Set up base content for sdks

* Make the grids work on mobile too

* Add the filters to the SDKs page

* I need to TWIM

* Basic javascriptfull version of the panel selector

* Use macros

* Remove unused statements
2023-04-18 09:04:11 +02:00

59 lines
953 B
SCSS

.servers {
p {
text-align: center;
font-weight: 400;
font-size: 1.125rem;
line-height: 120%;
margin: 0 auto 4rem auto;
}
}
.server-links {
margin-top: auto;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
gap: .7rem;
a {
display: flex;
align-items: center;
gap: .3rem;
border: 1px solid #777;
border-radius: 999px;
padding-inline: .5rem;
font-size: .8rem;
svg {
width: 1.2em;
height: 1.2em;
* {
fill: #777;
}
line {
stroke: #777;
}
}
}
a:hover {
color: #fff;
background-color: #777;
svg {
* {
fill: #fff;
}
line {
stroke: #fff;
}
}
}
}