hugo-PaperMod/assets/css/profile-mode.css
Aditya Telange 704921ccd1
init media.css
- combine all media queries
- name zmedia to conacat at last
- change some max-width values to group them
2021-01-16 12:54:51 +05:30

53 lines
739 B
CSS

.buttons,
.main .profile {
display: flex;
justify-content: center
}
.main .profile {
position: absolute;
left: 0;
right: 0;
align-items: center;
height: 80%;
text-align: center
}
.profile .profile_inner h1 {
padding: 12px 0
}
.profile .profile_inner span {
padding: 10px 0;
font-size: 18px
}
.profile img {
display: inline-table;
border-radius: 50%;
pointer-events: none
}
.buttons {
flex-wrap: wrap;
max-width: 400px;
margin: 0 auto
}
.button {
background: var(--tertiary);
border-radius: var(--radius);
margin: 8px;
padding: 6px;
transition: transform .1s
}
.button-inner {
padding: 0 8px
}
.button:active {
transform: scale(.96)
}