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)
mNo edit summary
 
(105 intermediate revisions by the same user not shown)
Line 1: Line 1:
.hover-box-content, .hover-box-hidden {
.icon {
    display: inline-block; /* Fit to content */
  filter: invert(0%);
    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 {
@media (prefers-color-scheme: dark) {
    width: 150px;
  .icon {
    height: 230px;
     filter: invert(100%);
    background-color: #f0f0f0;
  }
    border-radius: 10px;
    text-align: center;
    vertical-align: middle;
    position: relative;
    transition: width 0.3s ease;
    min-height: 230px;
}
 
.hover-box:hover {
    width: 200px;
}
 
.hover-box-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    height: 100%;
}
 
.hover-box-icon {
     width: 40px;
    height: 40px;
}
 
.hover-box-label {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
}
 
.hover-box-hidden {
    display: none;
    position: absolute;
    top: 0px;
    left: 200px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px;
    transition: width 0.3s ease;
}
 
.hover-box:hover .hover-box-hidden {
    display: block;
}
 
.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 18:56, 6 October 2024

.icon {
  filter: invert(0%);
}

@media (prefers-color-scheme: dark) {
  .icon {
    filter: invert(100%);
  }
}