@import '../../variables.scss'; .friend { display: flex; flex-direction: row; justify-content: space-between; padding: 30px 0; border-bottom: 1px solid $traditionalgrey; .limits { display: flex; flex-direction: row; justify-content: space-between; div { margin: 0 10px; h4 { font-size: 12px; margin-bottom: 20px; } } } .info { p { margin-bottom: 20px; &.online { color: $green; svg { color: $green; } } &.pending { color: $orange; svg { color: $orange; } i { margin-left: 5px; color: $darkestgrey; cursor: pointer; &:hover { text-decoration: underline; } } } &.closing { color: $red; svg { color: $red; } i { margin-left: 5px; color: $darkestgrey; cursor: pointer; &:hover { text-decoration: underline; } } } svg, span { display: inline-block; vertical-align: top; } svg { margin-right: 5px; width: 12px; height: 12px; color: $darkestgrey; } span { font-size: 12px; } } h2 { color: $black; font-size: 14px; font-weight: bold; letter-spacing: 1.3px; span { color: $darkestgrey; margin-left: 5px; } } } }