MediaWiki:Common.css: Difference between revisions

Jump to navigation Jump to search
no edit summary
No edit summary
No edit summary
Line 1: Line 1:
@keyframes randomMovement {
    0% {
        top: 0;
        left: 0;
    }
    25% {
        top: 100px;
        left: 200px;
    }
    50% {
        top: 200px;
        left: 100px;
    }
    75% {
        top: 100px;
        left: 300px;
    }
    100% {
        top: 0;
        left: 0;
    }
}
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.moving-li {
    background-color: red;
    color: white;
    padding: 10px 20px;
    position: absolute;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    animation: randomMovement 12s infinite ease-in-out; /* Плавное движение */
}
.table-with-spacing {
.table-with-spacing {
     border-spacing: 10px;
     border-spacing: 10px;

Navigation menu