73 lines
1.4 KiB
SCSS
73 lines
1.4 KiB
SCSS
// Organization user details
|
|
// --------------------------------------------------
|
|
|
|
@import "../variables/mixins";
|
|
@import "../variables/colors";
|
|
@import "../variables/sizes";
|
|
|
|
.OrganizationUser-stats {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
width: 940px;
|
|
padding: 30px 0;
|
|
border-bottom: 1px solid $cStructure-mainLine;
|
|
}
|
|
|
|
.OrganizationUser-stat {
|
|
width: 120px;
|
|
text-align: center;
|
|
}
|
|
|
|
.OrganizationUser-statIcon {
|
|
width: 38px;
|
|
height: 38px;
|
|
border: 1px solid $cStructure-mainLine;
|
|
border-radius: 4px;
|
|
line-height: 40px;
|
|
text-align: center;
|
|
}
|
|
|
|
.OrganizationUser-statInfo {
|
|
display: block;
|
|
padding: 10px 0 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.OrganizationUser-statTitle {
|
|
display: block;
|
|
color: $cTypography-headers;
|
|
font-size: $sFontSize-large;
|
|
font-style: normal;
|
|
font-weight: $sFontWeight-normal;
|
|
}
|
|
|
|
.OrganizationUser-statLabel {
|
|
color: $cTypography-secondary;
|
|
font-size: $sFontSize-normal;
|
|
}
|
|
|
|
.OrganizationUser-statIcon {
|
|
color: #D1D1D1;
|
|
font-size: $sFontSize-largest;
|
|
}
|
|
|
|
.CDB-IconFont-eye.OrganizationUser-statIcon {
|
|
font-size: 24px;
|
|
line-height: 29px;
|
|
}
|
|
|
|
.CDB-IconFont-marker.OrganizationUser-statIcon {
|
|
font-size: 22px;
|
|
}
|
|
|
|
.CDB-IconFont-progressBar.OrganizationUser-statIcon {
|
|
font-size: 24px;
|
|
line-height: 24px;
|
|
}
|
|
|
|
.CDB-IconFont-twitter.OrganizationUser-statIcon {
|
|
font-size: 22px;
|
|
line-height: 32px;
|
|
}
|