View source for User:Sur/vector.css
Appearance
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
.stat-box {
width: 100px;
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 */
}
.stat-box:hover {
width: 175px;
}
.stat-box-content {
display: flex;
flex-direction: column;
justify-content: center;
000
1:0
Return to User:Sur/vector.css.