hugo-PaperMod/assets/css/common/profile-mode.css
2024-03-22 16:57:00 +05:30

46 lines
No EOL
746 B
CSS

.buttons,
.main .profile {
display: flex;
justify-content: center;
}
.main .profile {
align-items: center;
min-height: calc(100vh - var(--header-height) - var(--footer-height) - (var(--gap) * 2));
text-align: center;
}
.profile .profile_inner {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
.profile img {
border-radius: 50%;
box-shadow: 100px;
}
.buttons {
flex-wrap: wrap;
max-width: 400px;
}
.button {
background: var(--theme);
border-radius: var(--radius);
border: 2px solid var(--code-bg);
margin: 6px;
padding: 6px;
transition: transform 0.2s;
}
.button-inner {
padding: 0 8px;
}
.button:active {
transform: scale(0.9);
}