2020-08-23 13:49:41 +01:00
|
|
|
.main {
|
|
|
|
text-align: center;
|
|
|
|
display: table;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main>.profile {
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.main>.profile>.profile_inner {
|
2020-08-28 13:57:26 +01:00
|
|
|
transform: translate(0, -10%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.profile_inner h1 {
|
|
|
|
padding: 8px;
|
2020-08-23 13:49:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
display: inline-block;
|
|
|
|
width: 200px;
|
|
|
|
border-radius: 50%;
|
|
|
|
pointer-events: none;
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
img {
|
|
|
|
width: 150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2020-08-24 12:28:47 +01:00
|
|
|
|
|
|
|
.social-icons {
|
|
|
|
padding: 16px;
|
|
|
|
}
|
2020-08-28 13:57:26 +01:00
|
|
|
|
|
|
|
.buttons {
|
2020-08-29 06:11:20 +01:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2020-08-28 13:57:26 +01:00
|
|
|
max-width: 300px;
|
2020-08-29 06:11:20 +01:00
|
|
|
justify-content: center;
|
2020-08-28 13:57:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
background: var(--tertiary);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
margin: 8px;
|
2020-08-29 06:11:20 +01:00
|
|
|
padding: 6px;
|
|
|
|
transition: transform 0.1s;
|
2020-08-28 13:57:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.button-inner {
|
2020-08-29 06:11:20 +01:00
|
|
|
padding: 0 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button:active, .social-icons>a>svg:active{
|
|
|
|
transform: scale(0.96);
|
2020-08-28 13:57:26 +01:00
|
|
|
}
|