antopie/style.css

86 lines
1.3 KiB
CSS
Raw Normal View History

2021-10-12 00:04:01 +02:00
.grid {
display: grid;
2023-05-31 02:41:50 +02:00
grid-template-columns: repeat(auto-fill, minmax(max(350px, calc((100% - (30px * 5)) / 6)), 1fr));
2021-10-12 00:04:01 +02:00
grid-gap: 30px;
}
2023-05-31 02:41:50 +02:00
/* Add a white shadow to dark images to get enough contrast with dark theme */
2021-12-08 20:17:00 +01:00
img[src="img/logos/searx.webp"], img[src="img/logos/peertube.webp"] {
2023-05-30 22:53:54 +02:00
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);
2021-12-08 20:17:00 +01:00
}
2021-10-12 00:04:01 +02:00
.action::before {
2023-05-30 22:53:54 +02:00
content: "➡ ";
2021-10-12 00:04:01 +02:00
}
.metaService {
margin: 6px;
2023-05-30 22:53:54 +02:00
margin-bottom: 0px;
2021-10-12 00:04:01 +02:00
}
.descService {
text-align: left;
}
.domService {
font-size: 0.8em;
2022-02-11 20:51:10 +01:00
line-height: 26px;
2021-10-12 00:04:01 +02:00
}
.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 {
2023-05-31 02:41:50 +02:00
text-align: center;
justify-content: center;
2021-10-12 00:04:01 +02:00
display: flex;
2023-05-30 22:53:54 +02:00
flex-direction: row;
2021-10-12 00:04:01 +02:00
flex-wrap: wrap;
}
.row > a.button {
margin: 10px;
}
.padRow {
padding: 10px;
}
2021-12-08 20:17:00 +01:00
small {
2021-10-12 00:04:01 +02:00
font-size: 0.8em;
}
h1.titreService {
2023-05-30 22:53:54 +02:00
font-size: 1.3em;
text-align: center;
margin: 0px;
padding-bottom: 0px;
2021-10-12 00:04:01 +02:00
padding-top: 0px;
}
2021-12-08 20:17:00 +01:00
.antopie {
font-weight: 500;
2023-05-31 02:41:50 +02:00
color: var(--main-color);
2021-10-12 00:04:01 +02:00
}