number of members => ok

This commit is contained in:
Gaelle Morin 2018-12-18 08:56:42 +01:00
parent 561bc768b1
commit 5b308f5f23
2 changed files with 20 additions and 1 deletions

View File

@ -143,8 +143,25 @@
justify-content: space-between;
&:first-of-type {
background: aquamarine;
color: $color-black2;
font-weight: bold;
justify-content: center;
white-space: nowrap;
&::before, &::after {
border-top: 1px solid $color-grey-light5;
content: '';
position: relative;
top: 0.5em;
width: 40%;
}
&::before {
right: 5.8%;
}
&::after {
left: 5.8%;
}
}
}
}

View File

@ -1,12 +1,14 @@
// colors
$color-white: #fff;
$color-black: #36383b;
$color-black2: #4a4a4a;
$color-black-light: #4a4a4a;
$color-grey-dark: #36383b;
$color-grey2: #7a7f85;
$color-grey1: #d7dbe0;
$color-grey: #898f95;
$color-grey-mid: #abaaba;
$color-grey-light5: #9ba0a7;
$color-grey-light4: #b4b9c0;
$color-grey-light3: hsla(59, 13%, 86%, 0.2);
$color-grey-light2: #d8d8d8;