2018-04-29 16:24:15 +02:00
|
|
|
.account__header .account__header__fields {
|
2018-01-13 19:41:20 +01:00
|
|
|
font-size: 15px;
|
|
|
|
line-height: 20px;
|
|
|
|
overflow: hidden;
|
2018-04-29 16:24:15 +02:00
|
|
|
margin: 20px -10px -20px;
|
|
|
|
border-bottom: 0;
|
2018-09-21 07:37:37 +02:00
|
|
|
border-top: 0;
|
2018-01-13 19:41:20 +01:00
|
|
|
|
2018-05-09 22:11:59 +02:00
|
|
|
dl {
|
2018-09-21 08:38:39 +02:00
|
|
|
background: $ui-base-color;
|
2018-09-21 07:37:37 +02:00
|
|
|
border-top: 1px solid lighten($ui-base-color, 4%);
|
|
|
|
border-bottom: 0;
|
2018-05-09 22:11:59 +02:00
|
|
|
display: flex;
|
2018-01-13 19:41:20 +01:00
|
|
|
}
|
|
|
|
|
2018-05-09 22:11:59 +02:00
|
|
|
dt,
|
|
|
|
dd {
|
|
|
|
box-sizing: border-box;
|
2018-08-29 12:30:50 +02:00
|
|
|
padding: 14px 5px;
|
2018-05-09 22:11:59 +02:00
|
|
|
text-align: center;
|
|
|
|
max-height: 48px;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
2018-01-13 19:41:20 +01:00
|
|
|
}
|
|
|
|
|
2018-05-09 22:11:59 +02:00
|
|
|
dt {
|
2018-05-05 17:58:46 +02:00
|
|
|
color: $darker-text-color;
|
2018-01-13 19:41:20 +01:00
|
|
|
background: lighten($ui-base-color, 13%);
|
2018-05-09 22:11:59 +02:00
|
|
|
width: 120px;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
font-weight: 500;
|
2018-01-13 19:41:20 +01:00
|
|
|
}
|
|
|
|
|
2018-05-09 22:11:59 +02:00
|
|
|
dd {
|
|
|
|
flex: 1 1 auto;
|
2018-01-13 19:41:20 +01:00
|
|
|
color: $primary-text-color;
|
|
|
|
background: $ui-base-color;
|
|
|
|
|
2018-09-21 07:37:37 +02:00
|
|
|
&.verified {
|
|
|
|
border: 1px solid rgba($valid-value-color, 0.5);
|
|
|
|
background: rgba($valid-value-color, 0.25);
|
2018-01-13 19:41:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|