User:Sur/vector.css: Difference between revisions

From Deadlock Wiki
Jump to navigation Jump to search
Sur (talk | contribs)
m hero infobox initial
Sur (talk | contribs)
m onhover >onclick
Line 1: Line 1:
.infobox-hero {
.stat-box {
     color: #FFEFD7;
     width: 100px;
     background-color: #2F2F2F;
    height: 150px;
     font-weight: bold;
     background-color: #f0f0f0;
     font-family: 'PT Serif', 'Palatino', 'Georgia', serif;
     border-radius: 10px;
     width: 100%;
     text-align: center;
     position: relative;
    transition: width 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
}


.infobox-hero th,
.stat-box.clicked {
.infobox-hero td {
     width: 175px;
     color: #999999;
    background-color: #2F2F2F;
    padding: 0.5em;
}
}


.infobox-hero .title {
.stat-box-content {
    font-size: 25px;
    text-shadow: 0px 0px 4px black;
    text-align: center;
    padding: 0.5em;
     display: flex;
     display: flex;
     justify-content: space-between;
    flex-direction: column;
     justify-content: center;
    align-items: center;
    border-radius: 15px;
    height: 100%;
    width: 100%;
}
}


.infobox-hero .card-image {
.stat-box-icon {
     padding: 0;
     width: 40px;
     background-color: #a79986;
     height: 40px;
}
}


.infobox-hero .stat-title {
.stat-box-label {
    font-size: 14px;
     margin-top: 10px;
    font-style: italic;
    text-shadow: 0px 0px 4px black;
    text-align: center;
}
 
.infobox-hero .section-header {
     background-color: #d5903f;
     font-size: 16px;
     font-size: 16px;
     text-shadow: 0px 0px 4px black;
    font-weight: bold;
     border-bottom: none;
     text-decoration-line: underline;
     text-decoration-style: dotted;
    text-decoration-thickness: 2px;
    font-family: 'Retail Demo', sans-serif;
}
}


.infobox-hero .vitality-header {
.stat-box-hover {
     background-color: #74b01c;
    display: none;
     font-size: 16px;
    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;
}
}


.infobox-hero .hero-stat {
.stat-box.clicked .stat-box-hover {
     color: #999999;
     display: block;
     background-color: #2F2F2F;
     opacity: 1;
    transform: translateX(0);
}
}

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);
}