2020-11-17 08:15:19 +01:00
|
|
|
.buttons,
|
|
|
|
.main .profile {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center
|
|
|
|
}
|
|
|
|
|
2020-11-09 06:42:52 +01:00
|
|
|
.main .profile {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
align-items: center;
|
|
|
|
height: 80%;
|
2020-11-17 08:15:19 +01:00
|
|
|
text-align: center
|
2020-08-23 14:49:41 +02:00
|
|
|
}
|
|
|
|
|
2020-11-09 06:42:52 +01:00
|
|
|
.profile .profile_inner h1 {
|
2020-11-17 08:15:19 +01:00
|
|
|
padding: 12px 0
|
2020-08-23 14:49:41 +02:00
|
|
|
}
|
|
|
|
|
2020-11-09 06:42:52 +01:00
|
|
|
.profile .profile_inner span {
|
2020-10-02 10:28:25 +02:00
|
|
|
padding: 10px 0;
|
2020-11-17 08:15:19 +01:00
|
|
|
font-size: 18px
|
2020-10-02 10:28:25 +02:00
|
|
|
}
|
|
|
|
|
2020-11-09 06:42:52 +01:00
|
|
|
.profile img {
|
2020-08-29 11:43:14 +02:00
|
|
|
display: inline-table;
|
2020-08-23 14:49:41 +02:00
|
|
|
border-radius: 50%;
|
2020-11-17 08:15:19 +01:00
|
|
|
pointer-events: none
|
2020-08-23 14:49:41 +02:00
|
|
|
}
|
|
|
|
|
2020-11-17 08:15:19 +01:00
|
|
|
@media screen and (max-width:600px) {
|
2020-11-09 06:42:52 +01:00
|
|
|
.profile img {
|
2020-11-17 08:15:19 +01:00
|
|
|
transform: scale(.85)
|
2020-08-23 14:49:41 +02:00
|
|
|
}
|
|
|
|
}
|
2020-08-24 13:28:47 +02:00
|
|
|
|
2020-08-28 14:57:26 +02:00
|
|
|
.buttons {
|
2020-08-29 07:11:20 +02:00
|
|
|
flex-wrap: wrap;
|
2020-09-06 16:37:57 +02:00
|
|
|
max-width: 400px;
|
2020-11-17 08:15:19 +01:00
|
|
|
margin: 0 auto
|
2020-08-28 14:57:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
background: var(--tertiary);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
margin: 8px;
|
2020-08-29 07:11:20 +02:00
|
|
|
padding: 6px;
|
2020-11-17 08:15:19 +01:00
|
|
|
transition: transform .1s
|
2020-08-28 14:57:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.button-inner {
|
2020-11-17 08:15:19 +01:00
|
|
|
padding: 0 8px
|
2020-08-29 07:11:20 +02:00
|
|
|
}
|
|
|
|
|
2020-10-02 10:22:03 +02:00
|
|
|
.button:active {
|
2020-11-17 08:15:19 +01:00
|
|
|
transform: scale(.96)
|
2020-11-09 06:42:52 +01:00
|
|
|
}
|