hubl/src/scss/_member.scss

124 lines
1.7 KiB
SCSS
Raw Normal View History

2018-04-25 23:35:44 +00:00
%detail-section {
2018-09-21 11:29:45 +00:00
font-weight: bold;
font-size: 18px;
2018-04-25 23:35:44 +00:00
}
2018-04-20 06:58:30 +00:00
#member-chat {
#conversejs {
2018-09-21 11:29:45 +00:00
margin: none;
2018-04-20 06:58:30 +00:00
}
}
#profiles-list,
2018-04-25 23:35:44 +00:00
#member-info {
2018-04-20 06:58:30 +00:00
img {
2018-09-21 11:29:45 +00:00
display: block;
2018-04-20 06:58:30 +00:00
}
2018-09-21 11:29:45 +00:00
&,
img {
width: 100%;
2018-04-20 06:58:30 +00:00
}
2018-09-21 11:29:45 +00:00
div[name='name'] {
2018-04-25 23:35:44 +00:00
@extend %detail-section;
2018-09-21 11:29:45 +00:00
padding-top: 10px;
2018-04-20 06:58:30 +00:00
}
2018-09-21 11:29:45 +00:00
div[name='name'],
div[name='location'] {
display: flex;
2018-04-20 06:58:30 +00:00
}
}
2018-04-25 23:35:44 +00:00
#member-detail {
#member-info {
sib-display-mailto,
sib-display-tel {
2018-09-21 11:29:45 +00:00
display: block;
2018-04-25 23:35:44 +00:00
}
2018-04-20 06:58:30 +00:00
2018-09-21 11:29:45 +00:00
a[name='email'],
a[name='number'] {
2018-04-25 23:35:44 +00:00
&::before {
2018-09-21 11:29:45 +00:00
font-family: FontAwesome;
padding-right: 4px;
color: black;
2018-04-25 23:35:44 +00:00
}
2018-04-20 06:58:30 +00:00
}
2018-09-21 11:29:45 +00:00
a[name='email'] {
2018-04-25 23:35:44 +00:00
&::before {
2018-09-21 11:29:45 +00:00
content: '\f0e0';
2018-04-25 23:35:44 +00:00
}
2018-04-20 06:58:30 +00:00
}
2018-09-21 11:29:45 +00:00
a[name='number'] {
2018-04-25 23:35:44 +00:00
&::before {
2018-09-21 11:29:45 +00:00
content: '\f10b';
font-size: 22px;
padding-left: 3px;
padding-right: 7px;
2018-04-25 23:35:44 +00:00
}
}
}
.section {
position: relative;
h2 {
@extend %detail-section;
2018-09-21 11:29:45 +00:00
margin-top: 40px;
}
2018-04-20 06:58:30 +00:00
}
2018-04-25 23:35:44 +00:00
#member-skills {
2018-09-21 11:29:45 +00:00
display: flex;
flex-wrap: wrap;
2018-04-25 23:35:44 +00:00
sib-display {
2018-09-21 11:29:45 +00:00
display: block;
background-color: $hd-color;
color: white;
border-radius: 100px;
padding: 3px 10px;
margin-bottom: 5px;
margin-right: 5px;
2018-04-20 06:58:30 +00:00
}
}
}
@media (min-width: $sm-with) {
#member-detail {
#member-info {
sib-display-img {
2018-09-21 11:29:45 +00:00
display: block;
float: right;
width: 300px;
}
}
}
}
2018-09-21 11:29:45 +00:00
#member-info {
@extend %member;
}
.members-list-condensed{
display: block;
img{
width: 50px;
height: 50px;
border-radius: 100%;
object-fit: cover;
object-position: top;
}
label{
display: none;
}
>div>sib-display>div{
display: flex;
}
ul{
padding-left: 1em;
}
}