User:Sur/minerva.css: Difference between revisions

From Deadlock Wiki
Jump to navigation Jump to search
Sur (talk | contribs)
Created page with " .hover-box { width: 150px; height: 150px; background-color: #f0f0f0; border-radius: 10px; text-align: center; vertical-align: middle; position: relative; transition: all 0.3s ease; } .hover-box:hover { height: 200px; } .hover-box-content { display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100%; } .hover-box-icon { width: 40px; height: 40px; } .hover-box-label {..."
 
Sur (talk | contribs)
mNo edit summary
 
(32 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
.stat-infoboxes-container {
.hover-box {
  max-width: calc(100% - 300px);
    width: 150px;
    height: 150px;
    background-color: #f0f0f0;
    border-radius: 10px;
    text-align: center;
    vertical-align: middle;
    position: relative;
    transition: all 0.3s ease;
}
 
.hover-box:hover {
    height: 200px;
}
 
.hover-box-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    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: all 0.3s ease;
}
 
.hover-box:hover .hover-box-hidden {
    display: block;
}
 
.hover-box-table {
    width: 100%;
    border-collapse: collapse;
}
}


.hover-box-table th, .hover-box-table td {
@media (max-width: 768px) {
     border: 1px solid #cccccc;
  .stat-infoboxes-container {
    padding: 5px;
     max-width: 100%;
    text-align: center;
  }
}
}

Latest revision as of 01:09, 25 September 2024

.stat-infoboxes-container {
  max-width: calc(100% - 300px);
}

@media (max-width: 768px) {
  .stat-infoboxes-container {
    max-width: 100%;
  }
}