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

43 lines
673 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;
}
.profile .profile_inner h1 {
padding: 12px 0;
}
.profile img {
2020-08-29 11:43:14 +02:00
display: inline-table;
border-radius: 50%;
}
.buttons {
flex-wrap: wrap;
2020-09-06 16:37:57 +02:00
max-width: 400px;
margin: 0 auto;
}
.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);
}