User:Sur/minerva.css: Difference between revisions
< User:Sur
mNo edit summary |
mNo edit summary |
||
(19 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
. | .stat-box { | ||
width: | width: 100px; | ||
height: 150px; | height: 150px; | ||
background-color: #f0f0f0; | background-color: #f0f0f0; | ||
Line 7: | Line 7: | ||
position: relative; | position: relative; | ||
transition: width 0.3s ease; | transition: width 0.3s ease; | ||
display: flex; | display: flex; | ||
flex-direction: column; | flex-direction: column; | ||
justify-content: center; | justify-content: center; | ||
align-items: center; | align-items: center; | ||
} | } | ||
. | .stat-box:hover { | ||
width: | width: 175px; | ||
} | } | ||
. | .stat-box-content { | ||
display: flex; | display: flex; | ||
flex-direction: column; | flex-direction: column; | ||
Line 25: | Line 25: | ||
height: 100%; | height: 100%; | ||
width: 100%; | width: 100%; | ||
} | } | ||
. | .stat-box-icon { | ||
width: 40px; | width: 40px; | ||
height: 40px; | height: 40px; | ||
} | } | ||
. | .stat-box-label { | ||
margin-top: 10px; | margin-top: 10px; | ||
font-size: 16px; | font-size: 16px; | ||
font-weight: bold; | font-weight: bold; | ||
text- | text-decoration-line: underline; | ||
text-decoration-style: dotted; | |||
text-decoration-thickness: 2px; | |||
font-family: 'Retail Demo', sans-serif; | |||
} | } | ||
. | .stat-box-hover { | ||
display: none; | display: none; | ||
position: absolute; | position: absolute; | ||
top: 0; | top: 0; | ||
left: | left: 175px; | ||
background-color: #fff; | background-color: #fff; | ||
border: 1px solid #ccc; | border: 1px solid #ccc; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); | box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); | ||
padding: 10px; | padding: 10px; | ||
transition: | transition: opacity 0.3s ease, transform 0.3s ease; | ||
border-radius: 15px; | |||
} | } | ||
. | .stat-box:hover .stat-box-hover { | ||
display: block; | display: block; | ||
opacity: 1; | |||
transform: translateX(0); | |||
} | |||
@media (max-width: 768px) { | |||
.stat-box { | |||
width: 90px; | |||
height: 130px; | |||
} | |||
.stat-box:hover { | |||
width: 140px; | |||
} | |||
.stat-box-hover { | |||
left: 140px; | |||
font-size: 14px; | |||
} | |||
} | } | ||
.hover-box-table { | @media (max-width: 480px) { | ||
.stat-box { | |||
width: 75px; | |||
height: 110px; | |||
} | |||
.stat-box:hover { | |||
width: 120px; | |||
} | |||
.stat-box-hover { | |||
left: 120px; | |||
font-size: 12px; | |||
padding: 8px; | |||
} | |||
} | |||
.stat-box-table { | |||
width: 100%; | width: 100%; | ||
border-collapse: separate; | border-collapse: separate; | ||
} | } | ||
. | .stat-box-table th, | ||
. | .stat-box-table td { | ||
padding: 5px; | padding: 5px; | ||
text-align: center; | text-align: center; | ||
background-color: rgba( | background-color: rgba(0, 0, 0, 0.08); | ||
border: 1px solid | border: 1px solid black; | ||
white-space: nowrap; | |||
overflow: hidden; | |||
text-overflow: ellipsis; | |||
position: relative; | |||
max-width: 320px; | |||
font-family: 'Retail Demo', sans-serif; | |||
} | |||
.stat-box-table th:hover, | |||
.stat-box-table td:hover { | |||
overflow: visible; | |||
text-overflow: clip; | |||
background-color: rgba(0, 0, 0, .4); | |||
} | |||
.stat-box-table td::before, | |||
.stat-box-table th::before { | |||
content: ''; | |||
position: absolute; | |||
top: 0; | |||
left: 0; | |||
width: 100%; | |||
height: 100%; | |||
background-color: rgba(0, 0, 0, 0.08); | |||
mix-blend-mode: multiply; | |||
} | } | ||
. | .stat-box-table th:first-child, | ||
. | .stat-box-table td:first-child { | ||
border-top-left-radius: 10px; | border-top-left-radius: 10px; | ||
border-bottom-left-radius: 10px; | border-bottom-left-radius: 10px; | ||
} | } | ||
. | .stat-box-table th:last-child, | ||
. | .stat-box-table td:last-child { | ||
border-top-right-radius: 10px; | border-top-right-radius: 10px; | ||
border-bottom-right-radius: 10px; | border-bottom-right-radius: 10px; | ||
} | |||
.stat-box-table .darker { | |||
background-color: rgba(0, 0, 0, 0.25); | |||
} | } |
Revision as of 04:32, 18 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:hover {
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:hover .stat-box-hover {
display: block;
opacity: 1;
transform: translateX(0);
}
@media (max-width: 768px) {
.stat-box {
width: 90px;
height: 130px;
}
.stat-box:hover {
width: 140px;
}
.stat-box-hover {
left: 140px;
font-size: 14px;
}
}
@media (max-width: 480px) {
.stat-box {
width: 75px;
height: 110px;
}
.stat-box:hover {
width: 120px;
}
.stat-box-hover {
left: 120px;
font-size: 12px;
padding: 8px;
}
}
.stat-box-table {
width: 100%;
border-collapse: separate;
}
.stat-box-table th,
.stat-box-table td {
padding: 5px;
text-align: center;
background-color: rgba(0, 0, 0, 0.08);
border: 1px solid black;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
position: relative;
max-width: 320px;
font-family: 'Retail Demo', sans-serif;
}
.stat-box-table th:hover,
.stat-box-table td:hover {
overflow: visible;
text-overflow: clip;
background-color: rgba(0, 0, 0, .4);
}
.stat-box-table td::before,
.stat-box-table th::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.08);
mix-blend-mode: multiply;
}
.stat-box-table th:first-child,
.stat-box-table td:first-child {
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
.stat-box-table th:last-child,
.stat-box-table td:last-child {
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
}
.stat-box-table .darker {
background-color: rgba(0, 0, 0, 0.25);
}