User:Sur/vector.css: Difference between revisions

From Deadlock Wiki
Jump to navigation Jump to search
Sur (talk | contribs)
m overlap removed
Sur (talk | contribs)
m Undo revision 6784 by Sur (talk)
Tag: Undo
Line 7: Line 7:
     border-radius: 10px;
     border-radius: 10px;
     text-align: center;
     text-align: center;
    position: relative;
     display: flex;
     display: flex;
     flex-direction: column;
     flex-direction: column;
     justify-content: center;
     justify-content: center;
     align-items: center;
     align-items: center;
    margin-bottom: 20px; /* Add margin to create space below */
     transition: width 0.3s ease;
     transition: width 0.3s ease;
}
.stat-infobox:hover {
    width: 175px; /* Width remains the same on hover */
}
}


Line 42: Line 46:
.stat-infobox-hover {
.stat-infobox-hover {
     display: block; /* Table is now always visible */
     display: block; /* Table is now always visible */
    position: absolute;
    top: 0;
    left: 175px;
     background-color: #fff;
     background-color: #fff;
     border: 1px solid #ccc;
     border: 1px solid #ccc;
Line 56: Line 63:
         width: 140px; /* Wider by default for small screens */
         width: 140px; /* Wider by default for small screens */
         height: 130px;
         height: 130px;
    }
    .stat-infobox-hover {
        left: 140px;
        font-size: 14px;
     }
     }
}
}
Line 63: Line 75:
         width: 120px; /* Wider by default for smaller screens */
         width: 120px; /* Wider by default for smaller screens */
         height: 110px;
         height: 110px;
    }
    .stat-infobox-hover {
        left: 120px;
        font-size: 12px;
        padding: 8px;
     }
     }
}
}

Revision as of 02:17, 22 September 2024

/* Used for {{StatBoxes}} for hero pages*/

.stat-infobox {
    width: 175px; /* Wider by default */
    height: 150px;
    background-color: #f0f0f0;
    border-radius: 10px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: width 0.3s ease;
}

.stat-infobox:hover {
    width: 175px; /* Width remains the same on hover */
}

.stat-infobox-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    height: 100%;
    width: 100%;
}

.stat-infobox-icon {
    width: 40px;
    height: 40px;
}

.stat-infobox-label {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-thickness: 2px;
    font-family: 'Retail Demo', sans-serif;
}

.stat-infobox-hover {
    display: block; /* Table is now always visible */
    position: absolute;
    top: 0;
    left: 175px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 15px;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (max-width: 768px) {
    .stat-infobox {
        width: 140px; /* Wider by default for small screens */
        height: 130px;
    }

    .stat-infobox-hover {
        left: 140px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .stat-infobox {
        width: 120px; /* Wider by default for smaller screens */
        height: 110px;
    }

    .stat-infobox-hover {
        left: 120px;
        font-size: 12px;
        padding: 8px;
    }
}

.stat-infobox-table {
    width: 100%;
    border-collapse: separate;
}

.stat-infobox-table th, 
.stat-infobox-table td {
    padding: 5px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.08);
    border: 1px solid black;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    max-width: 320px;
    font-family: 'Retail Demo', sans-serif;
}

.stat-infobox-table th:hover,
.stat-infobox-table td:hover {
    overflow: visible;
    text-overflow: clip;
    background-color: rgba(0, 0, 0, .4);
}

.stat-infobox-table td::before, 
.stat-infobox-table th::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.08);
    mix-blend-mode: multiply;
}

.stat-infobox-table th:first-child,
.stat-infobox-table td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.stat-infobox-table th:last-child,
.stat-infobox-table td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.stat-infobox-table .darker {
    background-color: rgba(0, 0, 0, 0.25);
}