https://github.com/vulcanjs/fuji-theme
A Vulcan theme for showcasing videos and photos
https://github.com/vulcanjs/fuji-theme
Last synced: about 1 year ago
JSON representation
A Vulcan theme for showcasing videos and photos
- Host: GitHub
- URL: https://github.com/vulcanjs/fuji-theme
- Owner: VulcanJS
- Created: 2017-04-27T02:50:38.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-10T07:56:00.000Z (about 9 years ago)
- Last Synced: 2025-03-30T22:41:51.300Z (about 1 year ago)
- Language: JavaScript
- Size: 9.76 MB
- Stars: 18
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fuji-Theme
A [Vulcan](http://vulcanjs.org) theme for showcasing videos and photos


### Install
```
meteor add vulcan:theme-fuji
```
### Features
- Featured post section (and `featured` custom field).
### Colors
You can override the main color with the following SCSS code in your own child theme:
```scss
$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;
}
```