User:Sur/vector.css: Difference between revisions
< User:Sur
mNo edit summary Tag: Manual revert |
m simplified |
||
Line 5: | Line 5: | ||
border-radius: 10px; | border-radius: 10px; | ||
text-align: center; | text-align: center; | ||
position: relative; | position: relative; | ||
transition: width 0.3s ease; | transition: width 0.3s ease; | ||
Line 16: | Line 15: | ||
.hover-box-content { | .hover-box-content { | ||
display: flex; | display: flex; | ||
justify-content: center; | justify-content: center; | ||
align-items: center; | align-items: center; | ||
border-radius: 15px; | border-radius: 15px; | ||
height: 100%; | height: 100%; | ||
text-align: center; | |||
} | } | ||
Line 37: | Line 36: | ||
display: none; | display: none; | ||
position: absolute; | position: absolute; | ||
top: | top: 0; | ||
left: 200px; | left: 200px; | ||
background-color: # | background-color: #fff; | ||
border: 1px solid # | 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; | ||
Line 52: | Line 51: | ||
.hover-box-table { | .hover-box-table { | ||
width: 100%; | width: 100%; | ||
border-collapse: separate; | border-collapse: separate; | ||
} | } | ||
.hover-box-table th, | |||
.hover-box-table td { | .hover-box-table td { | ||
padding: 5px; | padding: 5px; | ||
text-align: center; | text-align: center; | ||
background-color: rgba(255, 255, 255, 0.35); | |||
border: 1px solid #ccc; | |||
} | } | ||
.hover-box-table th:first-child, | .hover-box-table th:first-child, | ||
.hover-box-table td:first-child { | .hover-box-table td:first-child { | ||
border- | border-top-left-radius: 10px; | ||
border-bottom-left-radius: 10px; | |||
} | } | ||
.hover-box-table th:last-child, | |||
.hover-box-table td:last-child { | .hover-box-table td:last-child { | ||
border- | border-top-right-radius: 10px; | ||
border-bottom-right-radius: 10px; | |||
} | } |
Revision as of 20:50, 14 September 2024
.hover-box {
width: 150px;
height: 150px;
background-color: #f0f0f0;
border-radius: 10px;
text-align: center;
position: relative;
transition: width 0.3s ease;
}
.hover-box:hover {
width: 200px;
}
.hover-box-content {
display: flex;
justify-content: center;
align-items: center;
border-radius: 15px;
height: 100%;
text-align: center;
}
.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: 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;
}
.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;
}