User:Sur/vector.css: Difference between revisions

From Deadlock Wiki
Jump to navigation Jump to search
Sur (talk | contribs)
mNo edit summary
Sur (talk | contribs)
m onhover >onclick
 
(62 intermediate revisions by the same user not shown)
Line 1: Line 1:
.hover-box-content, .hover-box-hidden {
.stat-box {
    display: inline-block; /* Fit to content */
     width: 100px;
    border-radius: 15px; /* Ensure border radius matches background radius */
    padding: 10px; /* Optional: Add padding */
    text-align: center; /* Center content horizontally */
    min-height: 200px;
}
 
.hover-box {
     width: 150px;
     height: 150px;
     height: 150px;
     background-color: #f0f0f0;
     background-color: #f0f0f0;
     border-radius: 10px;
     border-radius: 10px;
     text-align: center;
     text-align: center;
    vertical-align: middle;
     position: relative;
     position: relative;
     transition: width 0.3s ease;
     transition: width 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
}


.hover-box:hover {
.stat-box.clicked {
     width: 200px;
     width: 175px;
}
}


.hover-box-content {
.stat-box-content {
     display: flex;
     display: flex;
     flex-direction: column;
     flex-direction: column;
Line 29: Line 24:
     border-radius: 15px;
     border-radius: 15px;
     height: 100%;
     height: 100%;
    width: 100%;
}
}


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


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


.hover-box-hidden {
.stat-box-hover {
     display: none;
     display: none;
     position: absolute;
     position: absolute;
     top: 0px;
     top: 0;
     left: 200px;
     left: 175px;
     background-color: #ffffff;
     background-color: #fff;
     border: 1px solid #cccccc;
     border: 1px solid #ccc;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
     padding: 10px;
     padding: 10px;
     transition: width 0.3s ease;
     transition: opacity 0.3s ease, transform 0.3s ease;
    border-radius: 15px;
}
}


.hover-box:hover .hover-box-hidden {
.stat-box.clicked .stat-box-hover {
     display: block;
     display: block;
}
     opacity: 1;
 
     transform: translateX(0);
.hover-box-table {
    width: 100%;
    border-collapse: separate; /* Use separate borders to apply radius */
}
 
.hover-box-table td {
    padding: 10px; /* Add some padding for better appearance */
     text-align: center;
     background-color: rgba(255, 255, 255, .35); /* Default background color for cells */
    border: none; /* Remove default borders */
}
 
.hover-box-table th, .hover-box-table td {
    border: 1px solid #cccccc;
    padding: 5px;
    text-align: center;
}
 
.hover-box-table th:first-child, .hover-box-table td:first-child {
    border-top-left-radius: 10px; /* Round top-left corner */
}
 
.hover-box-table th:last-child, .hover-box-table td:last-child {
    border-top-right-radius: 10px; /* Round top-right corner */
}
 
.hover-box-table td:first-child {
    border-bottom-left-radius: 10px; /* Round bottom-left corner */
}
 
.hover-box-table td:last-child {
    border-bottom-right-radius: 10px; /* Round bottom-right corner */
}
}

Latest revision as of 23:34, 21 September 2024

.stat-box {
    width: 100px;
    height: 150px;
    background-color: #f0f0f0;
    border-radius: 10px;
    text-align: center;
    position: relative;
    transition: width 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-box.clicked {
    width: 175px;
}

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

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

.stat-box-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-box-hover {
    display: none;
    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;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-radius: 15px;
}

.stat-box.clicked .stat-box-hover {
    display: block;
    opacity: 1;
    transform: translateX(0);
}