Files
website/static/css/custom.css

52 lines
882 B
CSS
Raw Permalink Normal View History

2025-09-14 10:02:15 +02:00
@media only screen and (max-width: 600px) {
#home-banner-header {
text-align: center;
}
}
footer {
margin-block-end: 0.75rem !important;
}
#banner-home-subtitle p {
text-align: justify;
}
2026-01-16 23:15:53 +01:00
#badges {
2025-09-14 10:02:15 +02:00
width: 100%;
2026-01-16 23:15:53 +01:00
max-width: var(--max-layout-width);
display: flex;
justify-content: center;
align-items: baseline;
flex-wrap: wrap;
gap: 1.25rem;
2025-09-14 10:02:15 +02:00
margin: 0 auto 1.75rem auto;
2026-01-16 23:15:53 +01:00
}
#badges a {
max-width: 150px;
2025-09-14 10:02:15 +02:00
transition-duration: 300ms;
}
2026-01-16 23:15:53 +01:00
#badges a:hover,
#badges a:hover::before {
2025-09-14 10:02:15 +02:00
background-color: transparent;
color: transparent;
transform: scale(1.1);
}
2026-01-16 23:15:53 +01:00
#badges a:active {
2025-09-14 10:02:15 +02:00
transform: scale(0.95);
}
2026-01-16 23:15:53 +01:00
#abuseipdb-badge {
width: 150px;
background: #35c246 linear-gradient(
rgba(255,255,255,0),
rgba(255,255,255,.3) 50%,
rgba(0,0,0,.2) 51%, rgba(0,0,0,0)
);
padding: 5px;
box-shadow: 2px 2px 1px 1px rgba(0, 0, 0, .2);
}