Add AbuseIPDB badge

This commit is contained in:
2026-01-16 23:15:53 +01:00
parent 05b17aec54
commit 7516a9dc4a
2 changed files with 58 additions and 24 deletions

View File

@@ -12,20 +12,40 @@ footer {
text-align: justify;
}
#notbyai {
#badges {
width: 100%;
max-width: 150px;
max-width: var(--max-layout-width);
display: flex;
justify-content: center;
align-items: baseline;
flex-wrap: wrap;
gap: 1.25rem;
margin: 0 auto 1.75rem auto;
}
#badges a {
max-width: 150px;
transition-duration: 300ms;
}
#notbyai:hover,
#notbyai:hover::before {
#badges a:hover,
#badges a:hover::before {
background-color: transparent;
color: transparent;
transform: scale(1.1);
}
#notbyai:active {
#badges a:active {
transform: scale(0.95);
}
#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);
}