User:Sur/vector.css

From Deadlock Wiki
Revision as of 23:58, 13 September 2024 by Sur (talk | contribs)
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
.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 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
}

.hover-box-hidden {
    display: none;
    position: absolute;
    top: -200px;
    left: 0;
    width: 100%;
    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 {
    border: 1px solid #cccccc;
    padding: 5px;
    text-align: center;
}