Contacts filters
parent
78ebae1c86
commit
d576016e9c
|
@ -1,4 +1,9 @@
|
||||||
section.profile-contacts
|
section.profile-contacts
|
||||||
|
nav.profile-contacts-filters
|
||||||
|
a.active(href="", title="No Filter") all
|
||||||
|
a(href="", title="Only show your team") team
|
||||||
|
a(href="", title="Only show people you follow") following
|
||||||
|
a(href="", title="Only show people follow you") followers
|
||||||
- for (var x = 0; x < 3; x++)
|
- for (var x = 0; x < 3; x++)
|
||||||
div.profile-contact-single
|
div.profile-contact-single
|
||||||
picture
|
picture
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
nav.profile-content-tabs
|
nav.profile-content-tabs
|
||||||
a.tab.active(href="", title="Activity Tab")
|
a.tab(href="", title="Activity Tab")
|
||||||
span.icon.icon-timeline
|
span.icon.icon-timeline
|
||||||
span activity
|
span activity
|
||||||
a.tab(href="", title="Projects Tab")
|
a.tab(href="", title="Projects Tab")
|
||||||
span.icon.icon-project
|
span.icon.icon-project
|
||||||
span projects
|
span projects
|
||||||
a.tab(href="", title="Contacts Tab")
|
a.tab.active(href="", title="Contacts Tab")
|
||||||
span.icon.icon-team
|
span.icon.icon-team
|
||||||
span contacts
|
span contacts
|
||||||
a.tab(href="", title="Favorites Tab")
|
a.tab(href="", title="Favorites Tab")
|
||||||
|
|
|
@ -1,5 +1,23 @@
|
||||||
.profile-contacts {
|
.profile-contacts {
|
||||||
border-top: 1px solid $whitish;
|
border-top: 1px solid $whitish;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
.profile-contacts-filters {
|
||||||
|
align-self: center;
|
||||||
|
display: flex;
|
||||||
|
a {
|
||||||
|
border-bottom: 2px solid $white;
|
||||||
|
color: $gray-light;
|
||||||
|
display: inline-block;
|
||||||
|
padding: 1rem 1.5rem;
|
||||||
|
transition: all .2s linear;
|
||||||
|
&:hover,
|
||||||
|
&.active {
|
||||||
|
border-bottom: 2px solid $gray-light;
|
||||||
|
color: $green-taiga;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.profile-contact-single {
|
.profile-contact-single {
|
||||||
|
|
Loading…
Reference in New Issue