Skip to content

Commit

Permalink
move variables from site.scss to variables.scss and close barryclark#8
Browse files Browse the repository at this point in the history
  • Loading branch information
alperenbozkurt committed Nov 2, 2017
1 parent 5bdfa49 commit 39fd95d
Show file tree
Hide file tree
Showing 53 changed files with 121 additions and 3,668 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
34 changes: 32 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,44 @@ See a [live version of JBlog](http://alperenbozkurt.net/JBlog) hosted on GitHub.

To learn how to install and use this theme check out the [Setup Guide](http://alperenbozkurt.net/JBlog/JBlog-theme/) for more information or apply the following instructions.

##Installation
## Installation

- Fork the Repo
- Edit _config.yml file.
- Edit url as **https**://yourusername.github.io
- Edit url as **https**://yourusername.github.io
- and others
- Remove sample posts from _posts folder and add yours.
- Edit index.md file in about folder.
- Change repo name to YourUserName.github.io
- Open "Github Pages" from settings page
- Click the star icon at the top of this page ;)


## How to customization

- You can change title, description, profile image and social network icons in _config.yml file.
- If you are not like this colors or fonts, you can change its in _sass/variables.scss file.
```scss
$title-font : Lobster, cursive;
$menu-font : Alegreya Sans SC, sans-serif;
$main-font : Roboto Slab, serif;
```
You can add your fonts this area.
```scss
// Colors
$blue: #3498db;
$orange: #e67e22;
$red: #e74c3c;
$white: #ecf0f1;
$green: #2ecc71;
$turko: #1abc9c;
$purple: #9b59b6;
$dark-blue: #34495e;

$main-color: $white;
$background-color: $blue;
$thrid-color: rgba(52, 152, 219, 0.8);
'''
$main-color is panels background color.
$background-color is background, buttons, links color.
$thrid-color is opacity version of background color.
Loading

0 comments on commit 39fd95d

Please sign in to comment.