User:Raptorify/vector.css: Difference between revisions

From Deadlock Wiki
Jump to navigation Jump to search
Created page with "*,*:before,*:after{box-sizing:border-box;margin:0;padding:0;font-family:Inter,sans-serif}progress{-webkit-appearance:none;-moz-appearance:none;appearance:none}progress::-webkit-progress-bar{overflow:hidden}.weapon progress::-webkit-progress-bar{height:12px;border-radius:6px;background-color:#000}.weapon progress::-webkit-progress-value{background-color:orange}.vitality progress::-webkit-progress-bar{height:12px;border-radius:6px;background-color:#000}.vitality progress::..."
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
*,*:before,*:after{box-sizing:border-box;margin:0;padding:0;font-family:Inter,sans-serif}progress{-webkit-appearance:none;-moz-appearance:none;appearance:none}progress::-webkit-progress-bar{overflow:hidden}.weapon progress::-webkit-progress-bar{height:12px;border-radius:6px;background-color:#000}.weapon progress::-webkit-progress-value{background-color:orange}.vitality progress::-webkit-progress-bar{height:12px;border-radius:6px;background-color:#000}.vitality progress::-webkit-progress-value{background-color:#228b22}.spirit progress::-webkit-progress-bar{height:12px;border-radius:6px;background-color:#000}.spirit progress::-webkit-progress-value{background-color:#639}.stat-box{width:100%;max-width:140px}.stat-box__wrapper{display:flex;column-gap:8px}.stat-box__content{display:flex;align-items:center;flex-direction:column;row-gap:8px}.stat-box__icon{width:60px;height:60px}.stat-box__container{background-image:linear-gradient(rgba(var(--primary-color),.8),rgba(var(--primary-color),.3))}.stat-box__container:before{content:"";position:absolute;top:-4px;right:-4px;bottom:-4px;left:-4px;border-radius:20px;z-index:-1}.weapon{--primary-color: #D5903F}.vitality{--primary-color: #74B01C }.spirit{--primary-color: #C288F0 }
.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;
}

Latest revision as of 00:00, 14 September 2024

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