User:Sur/vector.css: Difference between revisions
< User:Sur
m hidden radius |
m width and height fit-content, min 150 |
||
Line 1: | Line 1: | ||
.hover-box { | .hover-box { | ||
width: 150px; | min-width: 150px; | ||
height: 150px; | min-height: 150px; | ||
background-color: #f0f0f0; | background-color: #f0f0f0; | ||
border-radius: 10px; | border-radius: 10px; | ||
Line 11: | Line 11: | ||
justify-content: center; /* Center content vertically */ | justify-content: center; /* Center content vertically */ | ||
align-items: center; /* Center content horizontally */ | align-items: center; /* Center content horizontally */ | ||
width: fit-content; | |||
height: fit-content; | |||
} | } | ||
.hover-box:hover { | .hover-box:hover { | ||
width: 200px; | min-width: 200px; | ||
} | } | ||
Revision as of 21:12, 14 September 2024
.hover-box {
min-width: 150px;
min-height: 150px;
background-color: #f0f0f0;
border-radius: 10px;
text-align: center;
position: relative;
transition: width 0.3s ease;
display: flex; /* Flexbox on the container */
flex-direction: column; /* Stack elements vertically */
justify-content: center; /* Center content vertically */
align-items: center; /* Center content horizontally */
width: fit-content;
height: fit-content;
}
.hover-box:hover {
min-width: 200px;
}
.hover-box-content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border-radius: 15px;
height: 100%;
width: 100%;
text-align: center;
}
.hover-box-icon {
width: 40px;
height: 40px;
}
.hover-box-label {
margin-top: 10px;
font-size: 16px;
font-weight: bold;
text-align: center; /* Ensure text is centered */
}
.hover-box-hidden {
display: none;
position: absolute;
top: 0;
left: 200px;
background-color: #fff;
border: 1px solid #ccc;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
padding: 10px;
transition: width 0.3s ease;
border-radius: 15px; /* Ensure border radius matches background radius */
}
.hover-box:hover .hover-box-hidden {
display: block;
}
.hover-box-table {
width: 100%;
border-collapse: separate;
}
.hover-box-table th,
.hover-box-table td {
padding: 5px;
text-align: center;
background-color: rgba(255, 255, 255, 0.35);
border: 1px solid #ccc;
}
.hover-box-table th:first-child,
.hover-box-table td:first-child {
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
.hover-box-table th:last-child,
.hover-box-table td:last-child {
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
}