misuzu/assets/less/mio/classes/profile.less

147 lines
3.2 KiB
Text
Raw Normal View History

2018-03-22 02:56:41 +00:00
@mio-profile-mobile: 700px;
2018-04-16 00:33:54 +00:00
.profile {
2018-03-22 02:56:41 +00:00
&__avatar {
width: 200px;
height: 200px;
@media (max-width: @mio-profile-mobile) {
width: 100px;
height: 100px;
margin: 20px 0;
}
}
2018-03-23 00:27:46 +00:00
&__account-link {
color: inherit;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
2018-03-22 02:56:41 +00:00
&__icon {
vertical-align: middle;
}
&__header {
height: 300px;
background-color: #fbeeff;
background-size: cover;
background-repeat: no-repeat;
background-position: 50%;
@media (max-width: @mio-profile-mobile) {
height: auto;
background-size: 700px auto;
background-position: center top;
}
&__content {
margin: 2px;
display: flex;
align-items: flex-start;
justify-content: space-between;
@media (max-width: @mio-profile-mobile) {
flex-direction: column-reverse;
align-items: center;
margin: 0;
}
}
}
&__info {
display: flex;
@media (max-width: @mio-profile-mobile) {
flex-direction: column;
background-color: #9475b2;
width: 100%;
padding-top: 2px;
}
&__section {
margin-right: 2px;
@media (max-width: @mio-profile-mobile) {
margin: 0 1px;
}
}
&__block {
border: 1px solid #9475b2;
padding: 2px 4px;
margin-bottom: 2px;
background-color: rgba(251, 238, 255, .9);
@media (max-width: @mio-profile-mobile) {
background-color: #fbeeff;
}
2018-03-23 00:27:46 +00:00
&--links:empty {
display: none;
}
2018-03-22 02:56:41 +00:00
}
&__row {
display: flex;
2018-07-07 19:25:12 +00:00
&--link {
text-decoration: none;
color: inherit;
&:hover {
text-decoration: underline;
}
}
2018-03-22 02:56:41 +00:00
}
&__column {
min-width: 80px;
2018-07-06 01:28:06 +00:00
max-width: 200px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
2018-03-22 02:56:41 +00:00
@media (max-width: @mio-profile-mobile) {
min-width: auto;
flex-grow: 1;
text-align: right;
}
&--heading {
font-weight: bold;
@media (max-width: @mio-profile-mobile) {
text-align: left;
}
}
&--numeric {
text-align: right;
}
&--user-title {
text-align: center;
width: 100%;
font-style: italic;
}
&--icons {
text-align: center;
min-width: 0;
}
&--country {
font-size: .8em;
line-height: 1.4em;
width: 110px;
text-align: center;
align-self: flex-end;
}
}
}
}