antopie/style.css

86 lines
1.3 KiB
CSS

.grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(max(350px, calc((100% - (30px * 5)) / 6)), 1fr));
grid-gap: 30px;
}
/* Add a white shadow to dark images to get enough contrast with dark theme */
img[src="img/logos/searx.webp"], img[src="img/logos/peertube.webp"] {
filter: drop-shadow(1px 1px 0 white)
drop-shadow(-1px -1px 0 white)
drop-shadow(-1px 1px 0 white)
drop-shadow(1px -1px 0 white);
}
.action::before {
content: "➡ ";
}
.metaService {
margin: 6px;
margin-bottom: 0px;
}
.descService {
text-align: left;
}
.domService {
font-size: 0.8em;
line-height: 26px;
}
.domService code, .domService em {
font-size: inherit;
}
.domService, .domService code {
overflow-wrap: anywhere;
}
.interlude {
display: flex;
justify-content: center;
margin-top: 20px;
margin-bottom: 10px;
}
.interlude > hr {
border: 0;
border-top: 2px gray dashed;
width: 520px;
}
.row {
text-align: center;
justify-content: center;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.row > a.button {
margin: 10px;
}
.padRow {
padding: 10px;
}
small {
font-size: 0.8em;
}
h1.titreService {
font-size: 1.3em;
text-align: center;
margin: 0px;
padding-bottom: 0px;
padding-top: 0px;
}
.antopie {
font-weight: 500;
color: var(--main-color);
}