hugo-PaperMod/assets/css/common/profile-mode.css

44 lines
689 B
CSS
Raw Normal View History

.buttons,
.main .profile {
display: flex;
justify-content: center;
}
.main .profile {
align-items: center;
2021-06-11 15:04:18 +02:00
min-height: calc(100vh - var(--header-height) - var(--footer-height) - (var(--gap) * 2));
text-align: center;
}
2023-12-16 16:29:36 +01:00
.profile .profile_inner {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
.profile img {
border-radius: 50%;
}
.buttons {
flex-wrap: wrap;
2020-09-06 16:37:57 +02:00
max-width: 400px;
}
.button {
background: var(--tertiary);
border-radius: var(--radius);
margin: 8px;
padding: 6px;
2021-06-11 10:04:55 +02:00
transition: transform 0.1s;
}
.button-inner {
padding: 0 8px;
}
.button:active {
2021-06-11 10:04:55 +02:00
transform: scale(0.96);
}