mirror of
https://github.com/searxng/searxng.git
synced 2026-05-09 02:43:52 +02:00
34e993a854
SPDX short-form identifiers to communicate license information in a simple, efficient, portable and machine-readable manner [1] [1] https://spdx.dev/learn/handling-license-info/
22 lines
356 B
Plaintext
22 lines
356 B
Plaintext
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
.dialog-modal {
|
|
animation-name: dialogmodal;
|
|
animation-duration: 0.13s;
|
|
|
|
@keyframes dialogmodal {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
|
|
50% {
|
|
opacity: 0.5;
|
|
transform: translate(-50%, -50%) scale(1.05);
|
|
}
|
|
}
|
|
}
|
|
|
|
input.checkbox-onoff[type="checkbox"]::before {
|
|
transition: left 0.25s;
|
|
}
|