A Vulcan theme for showcasing videos and photos
meteor add vulcan:theme-fuji
- Featured post section (and
featured
custom field).
You can override the main color with the following SCSS code in your own child theme:
$new-primary-color: #A1DAEA;
a{
&:hover{
color: $new-primary-color;
}
}
.users-account-menu, .users-menu{
.dropdown-toggle{
&:hover, &:active, &:focus{
color: $new-primary-color
}
}
}
.dropdown-item:focus, .dropdown-item:hover{
background: $new-primary-color;
}
.posts-categories{
.posts-category, .dropdown-item a{
&:hover{
background: $new-primary-color;
border-color: $new-primary-color;
}
}
}
.category-heading-item{
&.category-heading-item-parent:hover{
background: $new-primary-color;
&:after{
border-left-color: $new-primary-color;
}
}
}
.btn-primary, .btn-primary.active, button{
background-color: $new-primary-color;
}
.dropdown-item{
&.active, &.active:hover{
background: $new-primary-color;
}
}
.nav-user, .nav-new-post{
@include small{
.btn:hover{
background: $new-primary-color;
}
}
}
.sidebar-toggle:hover{
background: $new-primary-color;
}
.newsletter{
background: $new-primary-color;
}
.posts-load-more{
background: $new-primary-color;
}