2023-02-17 01:23:14 -05:00
|
|
|
#user-image {
|
|
|
|
display: block;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2023-02-17 06:47:28 -05:00
|
|
|
max-width: 100%;
|
|
|
|
width: 100%;
|
2023-02-17 01:23:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#User {
|
|
|
|
display: block;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
margin: 1%;
|
2023-02-17 06:47:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#wrapper {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#user-profile-wrapper {
|
|
|
|
display: inline-grid;
|
|
|
|
margin: 0px;
|
|
|
|
grid-template-areas:
|
|
|
|
"profile-image user-title user-title"
|
|
|
|
"profile-image user-name dx-rating"
|
|
|
|
"profile-image user-class awakens";
|
|
|
|
gap: 10px;
|
|
|
|
border: 2px solid black;
|
|
|
|
border-radius: 10px;
|
|
|
|
justify-items: center;
|
|
|
|
align-items: center;
|
|
|
|
width: fit-content;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 768px) {
|
|
|
|
#user-profile-wrapper {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0;
|
|
|
|
padding: 20px;
|
|
|
|
border: 2px solid black;
|
|
|
|
border-radius: 10px;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.profile-image {
|
|
|
|
grid-area: profile-image;
|
|
|
|
max-width: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-title {
|
|
|
|
grid-area: user-title;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-name {
|
|
|
|
grid-area: user-name;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dx-rating {
|
|
|
|
grid-area: dx-rating;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-rank {
|
|
|
|
grid-area: user-rank;
|
|
|
|
}
|
|
|
|
|
|
|
|
.awakens {
|
|
|
|
grid-area: awakens;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
font-size: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
h4 {
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 480px) {
|
|
|
|
h4 {
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
2023-02-17 01:23:14 -05:00
|
|
|
}
|