{{ site.name }}
123 |124 | {{ site.description }} 125 |
126 |├── .github
└── FUNDING.yml
├── .gitignore
├── .gitlab-ci.yml
├── .ruby-version
├── CODE_OF_CONDUCT.md
├── Gemfile
├── Gemfile.lock
├── LICENSE
├── LICENSE.txt
├── README.md
├── _config.yml
├── _includes
├── disqus.html
├── featuredbox.html
├── newsletter.html
├── pagination.html
├── postbox.html
├── related_posts.html
├── search.html
├── share.html
└── sidebar.html
├── _layouts
├── archive.html
├── default.html
├── page.html
└── post.html
├── _posts
├── 2017-03-15-ubuntu-in-10-years-old-pc.markdown
├── 2017-04-15-list-your-github-repo-in-your-website-blog-using-javascript-jquery.markdown
├── 2017-12-09-auto-deploy-static-wordpress-site-in-github.markdown
└── 2018-10-03-automating-the-newspaper-and-magazine-download.md
├── _sass
└── syntax.scss
├── about.html
├── assets
├── css
│ ├── custom.scss
│ ├── theme.css
│ └── user.css
├── fonts
│ ├── casper-icons.eot
│ ├── casper-icons.svg
│ ├── casper-icons.ttf
│ └── casper-icons.woff
├── images
│ ├── 1.jpg
│ ├── 2.jpg
│ ├── 3.jpg
│ ├── 4.jpg
│ ├── digitalocean_ref.jpg
│ ├── favicon.ico
│ ├── head.jpg
│ ├── jekyll.png
│ └── john.jpg
└── js
│ ├── ie10-viewport-bug-workaround.js
│ ├── jquery.min.js
│ ├── lunr.js
│ ├── masonry.pkgd.min.js
│ ├── search.js
│ ├── theme.js
│ └── user.js
├── contact.html
├── demo.png
├── demo
├── demo_1366x768.png
├── demo_250x200.png
├── demo_400x320.png
└── demo_750x600.png
├── feed.xml
├── index.html
├── search.json
├── sitemap.xml
└── theme-setup
└── index.md
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 |
3 | ko_fi: digitonX
4 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # git ignore files and folder
2 |
3 | # generated site contents
4 | _site/
5 |
6 | # sass cache
7 | .sass-cache/*
8 |
9 | # ide contents
10 | .idea/
11 | .DS_Store
12 |
13 | # Cache
14 | .jekyll-cache/
15 |
--------------------------------------------------------------------------------
/.gitlab-ci.yml:
--------------------------------------------------------------------------------
1 | # This file is a template, and might need editing before it works on your project.
2 | # Template project: https://gitlab.com/pages/jekyll
3 | # Docs: https://docs.gitlab.com/ce/pages/
4 | image: ruby:2.5.0
5 |
6 | variables:
7 | JEKYLL_ENV: production
8 |
9 | before_script:
10 | - bundle install
11 |
12 | test:
13 | stage: test
14 | script:
15 | - bundle exec jekyll build -d test
16 | artifacts:
17 | paths:
18 | - test
19 | except:
20 | - master
21 |
22 | pages:
23 | stage: deploy
24 | script:
25 | - bundle exec jekyll build -d public
26 | artifacts:
27 | paths:
28 | - public
29 | only:
30 | - master
31 |
32 |
--------------------------------------------------------------------------------
/.ruby-version:
--------------------------------------------------------------------------------
1 | 3.2.2
2 |
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | # Contributor Covenant Code of Conduct
2 |
3 | ## Our Pledge
4 |
5 | In the interest of fostering an open and welcoming environment, we as
6 | contributors and maintainers pledge to making participation in our project and
7 | our community a harassment-free experience for everyone, regardless of age, body
8 | size, disability, ethnicity, sex characteristics, gender identity and expression,
9 | level of experience, education, socio-economic status, nationality, personal
10 | appearance, race, religion, or sexual identity and orientation.
11 |
12 | ## Our Standards
13 |
14 | Examples of behavior that contributes to creating a positive environment
15 | include:
16 |
17 | * Using welcoming and inclusive language
18 | * Being respectful of differing viewpoints and experiences
19 | * Gracefully accepting constructive criticism
20 | * Focusing on what is best for the community
21 | * Showing empathy towards other community members
22 |
23 | Examples of unacceptable behavior by participants include:
24 |
25 | * The use of sexualized language or imagery and unwelcome sexual attention or
26 | advances
27 | * Trolling, insulting/derogatory comments, and personal or political attacks
28 | * Public or private harassment
29 | * Publishing others' private information, such as a physical or electronic
30 | address, without explicit permission
31 | * Other conduct which could reasonably be considered inappropriate in a
32 | professional setting
33 |
34 | ## Our Responsibilities
35 |
36 | Project maintainers are responsible for clarifying the standards of acceptable
37 | behavior and are expected to take appropriate and fair corrective action in
38 | response to any instances of unacceptable behavior.
39 |
40 | Project maintainers have the right and responsibility to remove, edit, or
41 | reject comments, commits, code, wiki edits, issues, and other contributions
42 | that are not aligned to this Code of Conduct, or to ban temporarily or
43 | permanently any contributor for other behaviors that they deem inappropriate,
44 | threatening, offensive, or harmful.
45 |
46 | ## Scope
47 |
48 | This Code of Conduct applies both within project spaces and in public spaces
49 | when an individual is representing the project or its community. Examples of
50 | representing a project or community include using an official project e-mail
51 | address, posting via an official social media account, or acting as an appointed
52 | representative at an online or offline event. Representation of a project may be
53 | further defined and clarified by project maintainers.
54 |
55 | ## Enforcement
56 |
57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be
58 | reported by contacting the project team at inbox@cdrrazan.com. All
59 | complaints will be reviewed and investigated and will result in a response that
60 | is deemed necessary and appropriate to the circumstances. The project team is
61 | obligated to maintain confidentiality with regard to the reporter of an incident.
62 | Further details of specific enforcement policies may be posted separately.
63 |
64 | Project maintainers who do not follow or enforce the Code of Conduct in good
65 | faith may face temporary or permanent repercussions as determined by other
66 | members of the project's leadership.
67 |
68 | ## Attribution
69 |
70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
72 |
73 | [homepage]: https://www.contributor-covenant.org
74 |
75 | For answers to common questions about this code of conduct, see
76 | https://www.contributor-covenant.org/faq
77 |
--------------------------------------------------------------------------------
/Gemfile:
--------------------------------------------------------------------------------
1 | source "https://rubygems.org"
2 |
3 | gem 'jekyll', '4.3.4'
4 |
5 | group :jekyll_plugins do
6 | gem 'kramdown'
7 | gem 'jekyll-archives'
8 | gem 'jekyll-feed'
9 | gem 'jekyll-paginate'
10 | gem 'jekyll-seo-tag'
11 | end
12 |
--------------------------------------------------------------------------------
/Gemfile.lock:
--------------------------------------------------------------------------------
1 | GEM
2 | remote: https://rubygems.org/
3 | specs:
4 | addressable (2.8.7)
5 | public_suffix (>= 2.0.2, < 7.0)
6 | bigdecimal (3.1.9)
7 | colorator (1.1.0)
8 | concurrent-ruby (1.3.5)
9 | em-websocket (0.5.3)
10 | eventmachine (>= 0.12.9)
11 | http_parser.rb (~> 0)
12 | eventmachine (1.2.7)
13 | ffi (1.17.1)
14 | ffi (1.17.1-aarch64-linux-gnu)
15 | ffi (1.17.1-aarch64-linux-musl)
16 | ffi (1.17.1-arm-linux-gnu)
17 | ffi (1.17.1-arm-linux-musl)
18 | ffi (1.17.1-arm64-darwin)
19 | ffi (1.17.1-x86-linux-gnu)
20 | ffi (1.17.1-x86-linux-musl)
21 | ffi (1.17.1-x86_64-darwin)
22 | ffi (1.17.1-x86_64-linux-gnu)
23 | ffi (1.17.1-x86_64-linux-musl)
24 | forwardable-extended (2.6.0)
25 | google-protobuf (4.29.3)
26 | bigdecimal
27 | rake (>= 13)
28 | google-protobuf (4.29.3-aarch64-linux)
29 | bigdecimal
30 | rake (>= 13)
31 | google-protobuf (4.29.3-arm64-darwin)
32 | bigdecimal
33 | rake (>= 13)
34 | google-protobuf (4.29.3-x86-linux)
35 | bigdecimal
36 | rake (>= 13)
37 | google-protobuf (4.29.3-x86_64-darwin)
38 | bigdecimal
39 | rake (>= 13)
40 | google-protobuf (4.29.3-x86_64-linux)
41 | bigdecimal
42 | rake (>= 13)
43 | http_parser.rb (0.8.0)
44 | i18n (1.14.6)
45 | concurrent-ruby (~> 1.0)
46 | jekyll (4.3.4)
47 | addressable (~> 2.4)
48 | colorator (~> 1.0)
49 | em-websocket (~> 0.5)
50 | i18n (~> 1.0)
51 | jekyll-sass-converter (>= 2.0, < 4.0)
52 | jekyll-watch (~> 2.0)
53 | kramdown (~> 2.3, >= 2.3.1)
54 | kramdown-parser-gfm (~> 1.0)
55 | liquid (~> 4.0)
56 | mercenary (>= 0.3.6, < 0.5)
57 | pathutil (~> 0.9)
58 | rouge (>= 3.0, < 5.0)
59 | safe_yaml (~> 1.0)
60 | terminal-table (>= 1.8, < 4.0)
61 | webrick (~> 1.7)
62 | jekyll-archives (2.3.0)
63 | jekyll (>= 3.6, < 5.0)
64 | jekyll-feed (0.17.0)
65 | jekyll (>= 3.7, < 5.0)
66 | jekyll-paginate (1.1.0)
67 | jekyll-sass-converter (3.0.0)
68 | sass-embedded (~> 1.54)
69 | jekyll-seo-tag (2.8.0)
70 | jekyll (>= 3.8, < 5.0)
71 | jekyll-watch (2.2.1)
72 | listen (~> 3.0)
73 | kramdown (2.5.1)
74 | rexml (>= 3.3.9)
75 | kramdown-parser-gfm (1.1.0)
76 | kramdown (~> 2.0)
77 | liquid (4.0.4)
78 | listen (3.9.0)
79 | rb-fsevent (~> 0.10, >= 0.10.3)
80 | rb-inotify (~> 0.9, >= 0.9.10)
81 | mercenary (0.4.0)
82 | pathutil (0.16.2)
83 | forwardable-extended (~> 2.6)
84 | public_suffix (6.0.1)
85 | rake (13.2.1)
86 | rb-fsevent (0.11.2)
87 | rb-inotify (0.11.1)
88 | ffi (~> 1.0)
89 | rexml (3.4.0)
90 | rouge (4.5.1)
91 | safe_yaml (1.0.5)
92 | sass-embedded (1.83.4)
93 | google-protobuf (~> 4.29)
94 | rake (>= 13)
95 | sass-embedded (1.83.4-aarch64-linux-android)
96 | google-protobuf (~> 4.29)
97 | sass-embedded (1.83.4-aarch64-linux-gnu)
98 | google-protobuf (~> 4.29)
99 | sass-embedded (1.83.4-aarch64-linux-musl)
100 | google-protobuf (~> 4.29)
101 | sass-embedded (1.83.4-aarch64-mingw-ucrt)
102 | google-protobuf (~> 4.29)
103 | sass-embedded (1.83.4-arm-linux-androideabi)
104 | google-protobuf (~> 4.29)
105 | sass-embedded (1.83.4-arm-linux-gnueabihf)
106 | google-protobuf (~> 4.29)
107 | sass-embedded (1.83.4-arm-linux-musleabihf)
108 | google-protobuf (~> 4.29)
109 | sass-embedded (1.83.4-arm64-darwin)
110 | google-protobuf (~> 4.29)
111 | sass-embedded (1.83.4-riscv64-linux-android)
112 | google-protobuf (~> 4.29)
113 | sass-embedded (1.83.4-riscv64-linux-gnu)
114 | google-protobuf (~> 4.29)
115 | sass-embedded (1.83.4-riscv64-linux-musl)
116 | google-protobuf (~> 4.29)
117 | sass-embedded (1.83.4-x86_64-cygwin)
118 | google-protobuf (~> 4.29)
119 | sass-embedded (1.83.4-x86_64-darwin)
120 | google-protobuf (~> 4.29)
121 | sass-embedded (1.83.4-x86_64-linux-android)
122 | google-protobuf (~> 4.29)
123 | sass-embedded (1.83.4-x86_64-linux-gnu)
124 | google-protobuf (~> 4.29)
125 | sass-embedded (1.83.4-x86_64-linux-musl)
126 | google-protobuf (~> 4.29)
127 | terminal-table (3.0.2)
128 | unicode-display_width (>= 1.1.1, < 3)
129 | unicode-display_width (2.6.0)
130 | webrick (1.9.1)
131 |
132 | PLATFORMS
133 | aarch64-linux
134 | aarch64-linux-android
135 | aarch64-linux-gnu
136 | aarch64-linux-musl
137 | aarch64-mingw-ucrt
138 | arm-linux-androideabi
139 | arm-linux-gnu
140 | arm-linux-gnueabihf
141 | arm-linux-musl
142 | arm-linux-musleabihf
143 | arm64-darwin
144 | riscv64-linux-android
145 | riscv64-linux-gnu
146 | riscv64-linux-musl
147 | ruby
148 | x86-linux
149 | x86-linux-gnu
150 | x86-linux-musl
151 | x86_64-cygwin
152 | x86_64-darwin
153 | x86_64-linux
154 | x86_64-linux-android
155 | x86_64-linux-gnu
156 | x86_64-linux-musl
157 |
158 | DEPENDENCIES
159 | jekyll (= 4.3.4)
160 | jekyll-archives
161 | jekyll-feed
162 | jekyll-paginate
163 | jekyll-seo-tag
164 | kramdown
165 |
166 | BUNDLED WITH
167 | 2.6.2
168 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Copyright (c) 2018 WowThemes.net, 2019-2025 Rajan Bhattarai
2 | License: MIT
3 |
4 | Permission is hereby granted, free of charge, to any person obtaining a copy
5 | of this software and associated documentation files (the "Software"), to deal
6 | in the Software without restriction, including without limitation the rights
7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 | copies of the Software, and to permit persons to whom the Software is
9 | furnished to do so, subject to the following conditions:
10 |
11 | The above copyright notice and this permission notice shall be included in all
12 | copies or substantial portions of the Software.
13 |
14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 | SOFTWARE.
21 |
--------------------------------------------------------------------------------
/LICENSE.txt:
--------------------------------------------------------------------------------
1 | Copyright (c) 2018 WowThemes.net
2 | License: MIT
3 |
4 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5 |
6 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7 |
8 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
9 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Prasad
2 |
3 |
4 |
5 |
6 | > Prasad is a complete Jekyll theme designed for portfolio and blog for developers, developed from forked version of Affiliate Jekyll theme.
7 |
8 | - **Demo:** https://prasad.cdrrazan.com
9 |
10 |
11 |
12 | >You can view the full live site using this theme
13 | >HERE.
14 |
15 | >If you need any help open the issue in target="_blank"> here.
17 |
18 | Please refer to the [Theme setup in the demo site for full documentation of the theme.](https://prasad.cdrrazan.com/theme-setup)
19 |
20 | ## License
21 |
22 | [MIT](LICENSE.txt)
23 |
--------------------------------------------------------------------------------
/_config.yml:
--------------------------------------------------------------------------------
1 | # Site
2 | name: John Doe
3 | description: Just another website
4 | meta_description: Just another website
5 | logo: /assets/images/logo.png
6 | favicon: /assets/images/favicon.ico
7 | paginate: 6
8 | baseurl:
9 | email: 'hello@john.doe'
10 | google_analytics: UA-103662447-9
11 | disqus:
12 | sharethis:
13 |
14 | # Authors
15 | authors:
16 | john:
17 | name: john
18 | display_name: John Doe
19 | image: /assets/images/john.jpg
20 | email: hello@john.doe
21 | web: http://example.com
22 | twitter:
23 | description: Hi, I am John Doe.
24 |
25 | # Plugins
26 | plugins:
27 | - jekyll-archives
28 | - jekyll-paginate
29 | - jekyll-seo-tag
30 |
31 | permalinks: pretty
32 |
33 | # Archives
34 | jekyll-archives:
35 | enabled:
36 | - categories
37 | layout: archive
38 | permalinks:
39 | category: 'category/:name/'
40 |
41 | # Other
42 | markdown: kramdown
43 | highlighter: rouge
44 |
45 | # SEO
46 | twitter:
47 | username: john
48 | card: summary
49 |
50 | facebook:
51 | app_id:
52 | publisher: john.com
53 | admins:
54 |
55 | social:
56 | name: John Doe
57 | links:
58 | - https://twitter.com/
59 | - https://www.facebook.com/
60 | - https://www.linkedin.com/
61 | - https://github.com/
62 |
--------------------------------------------------------------------------------
/_includes/disqus.html:
--------------------------------------------------------------------------------
1 |
52 | 53 | 56 | {% if page.last_modified_at %} 57 | (Updated: 58 | 62 | ) 63 | {% endif %} 64 | 65 |
66 |Web designer and Developer
10 | -------------------------------------------------------------------------------- /assets/css/custom.scss: -------------------------------------------------------------------------------- 1 | --- 2 | # Lets add a comment to make this file sass-y. 3 | # Change this file for any custom CSS. 4 | --- 5 | // Import partials from `sass_dir` (defaults to `_sass`) 6 | 7 | @use "syntax" as *; 8 | -------------------------------------------------------------------------------- /assets/css/theme.css: -------------------------------------------------------------------------------- 1 | /* 2 | Template Name:Affiliates 3 | Copyright:WowThemes.net,https://www.wowthemes.net 4 | Version:1.0.0 5 | License: Attribution-NonCommercial 4.0 International 6 | Free for personal use. For commercial use, please read: https://www.wowthemes.net/freebies-license/ 7 | */ 8 | body { 9 | font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif; 10 | } 11 | 12 | .mainheading { 13 | padding: 0rem 0rem 1rem 0; 14 | } 15 | 16 | a { 17 | color: #fff; 18 | } 19 | 20 | a, a:hover { 21 | transition: all 0.2s; 22 | } 23 | 24 | pre { 25 | -moz-box-sizing: border-box; 26 | box-sizing: border-box; 27 | margin: 0 0 1.75em 0; 28 | border: #E3EDF3 1px solid; 29 | width: 100%; 30 | padding: 10px; 31 | font-family: monospace, sans-serif; 32 | font-size: 14px; 33 | white-space: pre; 34 | overflow: auto; 35 | background: #F7FAFB; 36 | border-radius: 3px; 37 | line-height: 1.3; 38 | } 39 | 40 | .mediumnavigation { 41 | background: #fff; 42 | transition: top 0.5s ease-in-out; 43 | padding: 1.5rem 1rem; 44 | box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05); 45 | } 46 | 47 | .nav-up { 48 | box-shadow: none; 49 | } 50 | 51 | .site-content { 52 | padding-top: 3.5rem; 53 | margin-top: 57px; 54 | transition: all 0.4s; 55 | } 56 | 57 | section { 58 | margin-bottom: 20px; 59 | } 60 | 61 | section.featured-posts { 62 | margin-bottom: 30px; 63 | } 64 | 65 | section.recent-posts { 66 | margin-bottom: 0; 67 | } 68 | 69 | .section-title h2 { 70 | font-weight: 700; 71 | font-size: 1.4rem; 72 | margin-bottom: 27px; 73 | position: relative; 74 | } 75 | 76 | .section-title h2:before { 77 | margin-bottom: 0; 78 | position: absolute; 79 | z-index: 1; 80 | left: 15px; 81 | right: 0px; 82 | top: 12px; 83 | height: 1px; 84 | content: ''; 85 | background-color: ; 86 | } 87 | 88 | .section-title span { 89 | background-color: #fff; 90 | position: relative; 91 | z-index: 2; 92 | display: inline-block; 93 | padding: 0px 15px 0 0; 94 | font-size: 14px; 95 | text-transform: uppercase; 96 | letter-spacing: 1px; 97 | } 98 | 99 | .layout-page .section-title span { 100 | font-size: 2rem; 101 | text-transform: none; 102 | letter-spacing: 0; 103 | } 104 | 105 | .layout-page .section-title h2:before { 106 | top: 17px; 107 | } 108 | 109 | .article-post ol, .article-post ul { 110 | margin-bottom: 1.5rem; 111 | } 112 | 113 | .article-post ol ol, .article-post ul ul { 114 | list-style: disc; 115 | margin-bottom: 0rem; 116 | } 117 | 118 | .prevnextlinks .thepostlink { 119 | padding: 20px 0; 120 | font-size: 17px; 121 | display: block; 122 | color: #111; 123 | font-weight: 500; 124 | } 125 | 126 | .prevnextlinks { 127 | border-top: 1px solid #eee; 128 | border-bottom: 1px solid #eee; 129 | margin-left: 0; 130 | margin-right: 0; 131 | } 132 | 133 | .prevnextlinks .rightborder { 134 | border-right: 1px solid #eee; 135 | } 136 | 137 | .navbar-toggleable-md .navbar-nav .nav-link { 138 | margin-left: 1rem; 139 | font-weight: 500; 140 | color: #000; 141 | text-transform: uppercase; 142 | letter-spacing: 1px; 143 | font-size: 0.94em; 144 | } 145 | 146 | .navbar-toggleable-md .navbar-nav .nav-link.highlight { 147 | background: #6FD350; 148 | color: #fff; 149 | border-radius: 4px; 150 | box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1); 151 | padding-left: 1em; 152 | padding-right: 1em; 153 | 154 | } 155 | 156 | .navbar-toggler { 157 | z-index: 9999; 158 | } 159 | 160 | 161 | .navbar-toggleable-md .navbar-nav .nav-link { 162 | margin-left: 1rem; 163 | font-weight: 500; 164 | color: #000; 165 | text-transform: uppercase; 166 | letter-spacing: 1px; 167 | font-size: 0.94em; 168 | } 169 | 170 | .mediumnavigation .dropdown-menu { 171 | margin: 0 0 15px 0; 172 | box-shadow: none; 173 | border: 0; 174 | } 175 | 176 | @media (min-width: 992px) { 177 | .mediumnavigation .dropdown-menu { 178 | border: 0; 179 | box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05); 180 | margin: 15px 0; 181 | } 182 | 183 | } 184 | 185 | @media (min-width: 576px) { 186 | .card-columns.listfeaturedtag { 187 | -webkit-column-count: 2; 188 | -moz-column-count: 2; 189 | column-count: 2; 190 | } 191 | } 192 | 193 | .card-columns .card { 194 | margin-bottom: 20px; 195 | } 196 | 197 | .listfeaturedtag .wrapthumbnail { 198 | height: 258px; 199 | flex: 0 0 auto; 200 | } 201 | 202 | .listfeaturedtag .card { 203 | border-radius: 2px; 204 | height: 260px; 205 | padding-left: 0; 206 | margin-bottom: 15px; 207 | } 208 | 209 | .listfeaturedtag .thumbnail { 210 | background-size: cover; 211 | height: 100%; 212 | display: block; 213 | background-position: 38% 22% !important; 214 | background-origin: border-box !important; 215 | border-top-left-radius: 2px; 216 | } 217 | 218 | .listfeaturedtag .card-block { 219 | padding-left: 0; 220 | } 221 | 222 | .listfeaturedtag h2.card-title, .listrecent h2.card-title { 223 | font-size: 1.3rem; 224 | font-weight: 500; 225 | line-height: 1.25; 226 | } 227 | 228 | .listfeaturedtag h2.card-title a, .listrecent h2.card-title a { 229 | color: #111; 230 | font-weight: 500; 231 | } 232 | 233 | .listfeaturedtag h2.card-title a:hover, .listrecent h2.card-title a:hover { 234 | color: rgba(0, 0, 0, .6); 235 | text-decoration: none; 236 | } 237 | 238 | .listfeaturedtag h4.card-text, .listrecent h4.card-text { 239 | color: #666; 240 | font-size: 0.95rem; 241 | line-height: 1.8; 242 | font-weight: 400; 243 | } 244 | 245 | .listfeaturedtag .wrapfooter { 246 | position: absolute; 247 | bottom: 20px; 248 | font-size: 12px; 249 | display: block; 250 | width: 85%; 251 | } 252 | 253 | .listrecent .wrapfooter { 254 | font-size: 12px; 255 | margin-top: 30px; 256 | } 257 | 258 | .author-thumb { 259 | width: 40px; 260 | height: 40px; 261 | float: left; 262 | margin-right: 13px; 263 | border-radius: 100%; 264 | } 265 | 266 | .post-top-meta { 267 | margin-bottom: 1rem; 268 | margin-top: 3rem; 269 | } 270 | 271 | .post-top-meta .author-thumb { 272 | width: 72px; 273 | height: 72px; 274 | } 275 | 276 | .post-top-meta.authorpage .author-thumb { 277 | margin-top: 40px; 278 | } 279 | 280 | .post-top-meta span { 281 | font-size: 0.9rem; 282 | color: rgba(0, 0, 0, .44); 283 | display: inline-block; 284 | } 285 | 286 | .post-top-meta .author-description { 287 | margin-bottom: 5px; 288 | margin-top: 10px; 289 | font-size: 0.95rem; 290 | } 291 | 292 | .author-meta { 293 | flex: 1 1 auto; 294 | white-space: nowrap !important; 295 | text-overflow: ellipsis !important; 296 | overflow: hidden !important; 297 | } 298 | 299 | span.post-name, span.post-date, span.author-meta { 300 | display: inline-block; 301 | } 302 | 303 | span.post-date, span.post-read { 304 | color: rgba(0, 0, 0, .44); 305 | } 306 | 307 | span.post-read-more a { 308 | color: rgba(0, 0, 0, .44); 309 | align-items: center; 310 | display: inline-block; 311 | float: right; 312 | width: 30px; 313 | height: 30px; 314 | line-height: 30px; 315 | text-align: center; 316 | border: 1px solid #d0d0d0; 317 | border-radius: 50%; 318 | } 319 | 320 | span.post-name a, span.post-read-more a:hover { 321 | color: rgba(0, 0, 0, .8); 322 | } 323 | 324 | .dot:after { 325 | content: "·"; 326 | margin-left: 3px; 327 | margin-right: 3px; 328 | } 329 | 330 | .mediumnavigation .form-control { 331 | font-size: 0.8rem; 332 | border-radius: 30px; 333 | overflow: hidden; 334 | border: 1px solid rgba(0, 0, 0, 0.04); 335 | } 336 | 337 | .mediumnavigation .form-inline { 338 | margin-left: 15px; 339 | } 340 | 341 | .mediumnavigation .form-inline .btn { 342 | margin-left: -50px; 343 | border: 0; 344 | border-radius: 30px; 345 | cursor: pointer; 346 | } 347 | 348 | .mediumnavigation .form-inline .btn:hover, .mediumnavigation .form-inline .btn:active { 349 | background: transparent; 350 | color: green; 351 | } 352 | 353 | .mediumnavigation .navbar-brand { 354 | font-weight: 500; 355 | padding: 0; 356 | } 357 | 358 | .dropdown-item { 359 | display: block; 360 | width: 100%; 361 | padding: 7px 1.5rem; 362 | } 363 | 364 | .mediumnavigation .nav-item, .dropdown-menu { 365 | font-size: 0.9rem; 366 | } 367 | 368 | .mediumnavigation .search-icon { 369 | margin-left: -40px; 370 | display: inline-block; 371 | margin-top: 3px; 372 | cursor: pointer; 373 | } 374 | 375 | .mediumnavigation .navbar-brand img { 376 | margin-right: 7px; 377 | vertical-align: text-bottom; 378 | max-width: initial; 379 | } 380 | 381 | .mainheading h1.sitetitle { 382 | font-family: Georgia; 383 | } 384 | 385 | .mainheading h1.posttitle { 386 | font-weight: 700; 387 | margin-bottom: 1rem; 388 | } 389 | 390 | .intro { 391 | /*background-image: url(../images/head.jpg);*/ 392 | background-size: cover; 393 | padding: 12rem 0; 394 | margin-top: -87px; 395 | margin-bottom: 3.5rem; 396 | z-index: 1; 397 | position: relative; 398 | } 399 | 400 | .intro .btn { 401 | background: #008744; 402 | border: 0; 403 | color: #333; 404 | border-radius: 3px; 405 | font-weight: 500; 406 | padding: 15px 40px; 407 | box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1); 408 | text-transform: uppercase; 409 | font-size: 13px; 410 | letter-spacing: 1px; 411 | } 412 | 413 | .intro h1 { 414 | font-weight: 700; 415 | } 416 | 417 | .intro h2 { 418 | margin-top: 2rem; 419 | margin-bottom: 2rem; 420 | color: #888; 421 | line-height: 1.6; 422 | } 423 | 424 | .wrapintro { 425 | background: #fff; 426 | opacity: 1; 427 | width: 700px; 428 | padding: 3rem; 429 | max-width: 90%; 430 | margin: 0px auto; 431 | text-align: center; 432 | } 433 | 434 | .footer { 435 | border-top: 1px solid rgba(0, 0, 0, .05) !important; 436 | color: #999; 437 | margin-top: 50px; 438 | margin-bottom: 0px; 439 | background-color: #000; 440 | padding: 30px 0px 30px 0; 441 | } 442 | 443 | .footersocial i { 444 | width: 40px; 445 | height: 40px; 446 | line-height: 40px; 447 | text-align: center; 448 | display: inline-block; 449 | background: #ffffff; 450 | border-radius: 3px; 451 | box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1); 452 | font-size: 18px; 453 | margin-left: 5px; 454 | color: #3c3838; 455 | margin-top: 10px; 456 | } 457 | 458 | .beforefooter { 459 | background: #000; 460 | color: #fff; 461 | padding: 50px 0; 462 | max-width: 100%; 463 | margin: 0px auto; 464 | margin-bottom: -50px; 465 | margin-top: 50px; 466 | } 467 | 468 | .footer a { 469 | color: inherit; 470 | } 471 | 472 | .footer a:hover { 473 | color: #fff; 474 | text-decoration: none; 475 | } 476 | 477 | .footer-widget { 478 | margin-bottom: 3rem; 479 | margin-top: 3rem; 480 | font-size: 15px; 481 | } 482 | 483 | .footer-widget h5.title { 484 | font-size: 18px; 485 | text-transform: uppercase; 486 | letter-spacing: 1px; 487 | color: #fff; 488 | margin-bottom: 1.5rem; 489 | } 490 | 491 | .footer-widget ul { 492 | list-style: none; 493 | padding-left: 0; 494 | } 495 | 496 | .footer-widget ul li { 497 | margin: 12px 0; 498 | } 499 | 500 | .footer-widget .recent-posts img { 501 | float: left; 502 | margin-right: 10px; 503 | } 504 | 505 | .footer .textwidget a { 506 | border-bottom: 1px dashed; 507 | } 508 | 509 | .beforefooter h3 { 510 | margin-bottom: 1rem; 511 | } 512 | 513 | .copyright { 514 | padding-top: 1.5rem; 515 | font-size: 0.9em; 516 | } 517 | 518 | .copyright a { 519 | color: #eee; 520 | } 521 | 522 | .copyright a:hover { 523 | text-decoration: none; 524 | color: #fff; 525 | } 526 | 527 | .link-dark { 528 | color: rgba(0, 0, 0, .8); 529 | } 530 | 531 | .article-post { 532 | font-size: 1.1rem; 533 | line-height: 1.8; 534 | color: rgba(0, 0, 0, .8); 535 | } 536 | 537 | .article-post a { 538 | color: inherit; 539 | box-shadow: inset 0 -2px 0 rgba(255, 229, 31, 1), 0 2px 0 rgba(255, 229, 31, 1); 540 | } 541 | 542 | .article-post a:hover { 543 | box-shadow: inset 0 -30px 0 rgba(255, 229, 31, 1), 0 2px 0 rgba(255, 229, 31, 1); 544 | text-decoration: none; 545 | } 546 | 547 | blockquote { 548 | border-left: 4px solid #6FD350; 549 | padding: 0 20px; 550 | font-style: italic; 551 | color: rgba(0, 0, 0, .5); 552 | } 553 | 554 | .article-post p, .article-post blockquote { 555 | margin: 0 0 1.5rem 0; 556 | } 557 | 558 | .featured-image { 559 | display: block; 560 | margin-bottom: 2rem; 561 | box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1); 562 | } 563 | 564 | .article-post img, .article-post iframe { 565 | box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1); 566 | } 567 | 568 | .article-post p img, .article-post p iframe { 569 | margin-bottom: 0.5rem; 570 | } 571 | 572 | .share { 573 | text-align: center; 574 | } 575 | 576 | .share p { 577 | margin-bottom: 10px; 578 | font-size: 0.95rem; 579 | } 580 | 581 | .share { 582 | display: none; 583 | } 584 | 585 | .share ul li { 586 | display: inline-block; 587 | margin-bottom: 9px; 588 | } 589 | 590 | .share ul { 591 | padding-left: 0; 592 | margin-left: 0; 593 | } 594 | 595 | .share ul li i.fa { 596 | border: 1px solid #ddd; 597 | width: 30px; 598 | height: 30px; 599 | line-height: 30px; 600 | text-align: center; 601 | border-radius: 50%; 602 | } 603 | 604 | .svgIcon { 605 | vertical-align: middle; 606 | } 607 | 608 | 609 | @media (max-width: 999px) { 610 | .listfeaturedtag .wrapthumbnail, .listfeaturedtag .col-md-7 { 611 | width: 100%; 612 | max-width: 100%; 613 | -webkit-box-flex: 0; 614 | -webkit-flex: 100%; 615 | -ms-flex: 100%; 616 | flex: 100%; 617 | } 618 | 619 | .listfeaturedtag .wrapthumbnail { 620 | height: 250px; 621 | } 622 | 623 | .listfeaturedtag .card { 624 | height: auto; 625 | } 626 | 627 | .listfeaturedtag .wrapfooter { 628 | position: relative; 629 | margin-top: 30px; 630 | } 631 | 632 | .listfeaturedtag .card-block { 633 | padding: 20px; 634 | } 635 | } 636 | 637 | @media (max-width: 1024px) { 638 | .post-top-meta .col-md-10 { 639 | text-align: center; 640 | } 641 | } 642 | 643 | @media (max-width: 767px) { 644 | .post-top-meta.authorpage { 645 | text-align: center; 646 | } 647 | } 648 | 649 | .share, .share a { 650 | color: rgba(0, 0, 0, .44); 651 | fill: rgba(0, 0, 0, .44); 652 | } 653 | 654 | .graybg { 655 | background-color: #fafafa; 656 | padding: 40px 0 46px; 657 | position: relative; 658 | } 659 | 660 | .listrelated .card { 661 | box-shadow: 0 1px 7px rgba(0, 0, 0, .05); 662 | border: 0; 663 | } 664 | 665 | .card { 666 | border-radius: 4px; 667 | margin-bottom: 30px; 668 | box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.14); 669 | border: 0; 670 | } 671 | 672 | .card .img-thumb { 673 | border-top-right-radius: 4px; 674 | border-top-left-radius: 4px; 675 | } 676 | 677 | ul.tags { 678 | list-style: none; 679 | padding-left: 0; 680 | margin: 0 0 1.5rem 0; 681 | } 682 | 683 | ul.tags li { 684 | display: inline-block; 685 | font-size: 0.9rem; 686 | } 687 | 688 | ul.tags li a { 689 | background: #008744; 690 | color: #fff; 691 | padding: 3px 10px; 692 | border-radius: 3px; 693 | font-weight: 500; 694 | font-size: 0.93em; 695 | text-transform: capitalize; 696 | box-shadow: 0 6px 10px 0 rgba(169, 169, 169, 0.1); 697 | } 698 | 699 | ul.tags li a:hover { 700 | background: rgba(0, 0, 0, .07); 701 | text-decoration: none; 702 | } 703 | 704 | .margtop3rem { 705 | margin-top: 3rem; 706 | } 707 | 708 | .sep { 709 | height: 1px; 710 | width: 20px; 711 | background: #999; 712 | margin: 0px auto; 713 | margin-bottom: 1.2rem; 714 | } 715 | 716 | .btn { 717 | box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1); 718 | font-weight: 500; 719 | font-size: 15px; 720 | border-radius: .3rem; 721 | color: #fff; 722 | cursor: pointer; 723 | } 724 | 725 | a.btn { 726 | color: #fff; 727 | } 728 | 729 | .btn-group-lg > .btn, .btn-lg { 730 | padding: 1rem 2rem; 731 | border-radius: .3rem; 732 | font-size: 15px; 733 | } 734 | 735 | .btn-primary { 736 | background-color: #675bff; 737 | border-color: #675bff; 738 | } 739 | 740 | .btn.follow { 741 | border-color: #6FD350; 742 | color: #6FD350; 743 | padding: 3px 10px; 744 | text-align: center; 745 | border-radius: 999em; 746 | font-size: 0.85rem; 747 | display: inline-block; 748 | box-shadow: none; 749 | font-weight: 400; 750 | } 751 | 752 | .btn.subscribe { 753 | background-color: #1C9963; 754 | border-color: #1C9963; 755 | color: rgba(255, 255, 255, 1); 756 | fill: rgba(255, 255, 255, 1); 757 | border-radius: 30px; 758 | font-size: 0.85rem; 759 | margin-left: 10px; 760 | font-weight: 600; 761 | text-transform: uppercase; 762 | } 763 | 764 | .post-top-meta .btn.follow { 765 | margin-left: 5px; 766 | margin-top: -4px; 767 | } 768 | 769 | .alertbar { 770 | box-shadow: 0 -3px 10px 0 rgba(0, 0, 0, .0785); 771 | position: fixed; 772 | bottom: 0; 773 | left: 0; 774 | background-color: #fff; 775 | width: 100%; 776 | padding: 14px 0; 777 | z-index: 1; 778 | display: none; 779 | } 780 | 781 | .alertbar form { 782 | display: inline-block; 783 | } 784 | 785 | .alertbar input[type="email"] { 786 | font-size: 0.85rem; 787 | padding: 3px 5px 3px 10px; 788 | border-top-left-radius: 3px; 789 | border-bottom-left-radius: 3px; 790 | border: 1px solid #ddd; 791 | border-right: 0; 792 | margin-right: -10px; 793 | height: 34px; 794 | letter-spacing: 0.5px; 795 | margin-left: 5px; 796 | } 797 | 798 | .alertbar input[type="submit"] { 799 | background-color: #1C9963; 800 | border: 1px solid #1C9963; 801 | color: rgba(255, 255, 255, 1); 802 | fill: rgba(255, 255, 255, 1); 803 | font-size: 0.85rem; 804 | border-radius: 0; 805 | padding: 4px 10px; 806 | border-top-right-radius: 3px; 807 | border-bottom-right-radius: 3px; 808 | font-weight: 600; 809 | height: 34px; 810 | letter-spacing: 0.5px; 811 | cursor: pointer; 812 | } 813 | 814 | .form-control::-webkit-input-placeholder { 815 | color: rgba(0, 0, 0, .5); 816 | } 817 | 818 | .form-control:-moz-placeholder { 819 | color: rgba(0, 0, 0, .5); 820 | } 821 | 822 | .form-control::-moz-placeholder { 823 | color: rgba(0, 0, 0, .5); 824 | } 825 | 826 | .form-control:-ms-input-placeholder { 827 | color: rgba(0, 0, 0, .5); 828 | } 829 | 830 | .form-control::-ms-input-placeholder { 831 | color: rgba(0, 0, 0, .5); 832 | } 833 | 834 | .form-control { 835 | border: 1px solid #eee; 836 | border-radius: 0; 837 | } 838 | 839 | .authorpage h1 { 840 | font-weight: 700; 841 | font-size: 30px; 842 | } 843 | 844 | .post-top-meta.authorpage .author-thumb { 845 | float: none; 846 | } 847 | 848 | .authorpage .author-description { 849 | font-size: 1rem; 850 | color: rgba(0, 0, 0, .6); 851 | } 852 | 853 | .post-top-meta.authorpage .btn.follow { 854 | padding: 7px 20px; 855 | margin-top: 10px; 856 | margin-left: 0; 857 | font-size: 0.9rem; 858 | } 859 | 860 | .graybg.authorpage { 861 | border-top: 1px solid #f0f0f0; 862 | } 863 | 864 | .authorpostbox { 865 | width: 760px; 866 | margin: 0px auto; 867 | margin-bottom: 1.5rem; 868 | max-width: 100%; 869 | } 870 | 871 | .authorpostbox .img-thumb { 872 | width: 100%; 873 | } 874 | 875 | .sociallinks { 876 | margin: 1rem 0; 877 | } 878 | 879 | .sociallinks a { 880 | background: #666; 881 | color: #fff; 882 | width: 22px; 883 | height: 22px; 884 | display: inline-block; 885 | text-align: center; 886 | line-height: 22px; 887 | border-radius: 50%; 888 | font-size: 12px; 889 | } 890 | 891 | #comments { 892 | margin-top: 3rem; 893 | margin-bottom: 1.5rem; 894 | } 895 | 896 | .sidebar { 897 | max-width: 340px; 898 | font-size: 15px; 899 | padding: 15px; 900 | background-color: #fff; 901 | position: -webkit-sticky; 902 | position: sticky; 903 | top: 72px; 904 | } 905 | 906 | .sidebar h5 { 907 | margin-bottom: 1rem; 908 | text-align: center; 909 | position: relative; 910 | font-weight: 700; 911 | } 912 | 913 | .sidebar h5 span { 914 | background-color: #fff; 915 | position: relative; 916 | z-index: 2; 917 | display: inline-block; 918 | padding: 0px 15px 0 15px; 919 | text-align: center; 920 | font-size: 14px; 921 | text-transform: uppercase; 922 | letter-spacing: 1px; 923 | } 924 | 925 | .sidebar h5:before { 926 | margin-bottom: 0; 927 | position: absolute; 928 | z-index: 1; 929 | left: 0px; 930 | top: 12px; 931 | width: 100%; 932 | height: 1px; 933 | content: ''; 934 | background-color: #333333; 935 | } 936 | 937 | .sidebar ul { 938 | list-style: none; 939 | padding-left: 0; 940 | } 941 | 942 | .sidebar ul li a { 943 | color: #999; 944 | border-bottom: 1px solid #f6f6f6; 945 | display: block; 946 | padding-bottom: 10px; 947 | padding-top: 10px; 948 | } 949 | 950 | .sidebar-section { 951 | margin-bottom: 2rem; 952 | border: 5px; 953 | box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.1); 954 | box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.14); 955 | padding: 15px; 956 | } 957 | 958 | .sidebar #mc_embed_signup form { 959 | padding: 0 !Important; 960 | } 961 | 962 | .sidebar #mc_embed_signup .button { 963 | width: 100% !Important; 964 | background: #675bff !Important; 965 | height: auto; 966 | padding: 6px 20px; 967 | font-weight: 600; 968 | box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1); 969 | } 970 | 971 | .sidebar #mc_embed_signup h2 { 972 | font-weight: 400; 973 | font-size: 15px; 974 | color: #999; 975 | margin-bottom: 1rem; 976 | line-height: 1.5; 977 | text-align: center; 978 | } 979 | 980 | .sidebar #mc_embed_signup input { 981 | width: 100%; 982 | } 983 | 984 | .sidebar #mc_embed_signup .mc-field-group { 985 | width: 100% !Important; 986 | } 987 | 988 | #mc_embed_signup .mc-field-group input { 989 | text-indent: 5% !Important; 990 | } 991 | 992 | #mc_embed_signup { 993 | font-family: inherit !Important; 994 | } 995 | 996 | .sidebar-right .sidebar { 997 | max-width: inherit; 998 | } 999 | 1000 | .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 { 1001 | font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif; 1002 | } 1003 | 1004 | .article-post .h1, .article-post .h2, .article-post .h3, .article-post .h4, .article-post .h5, .article-post .h6, .article-post h1, .article-post h2, .article-post h3, .article-post h4, .article-post h5, .article-post h6 { 1005 | font-weight: 500; 1006 | margin-bottom: 1.5rem; 1007 | } 1008 | 1009 | .article-post img.shadow { 1010 | -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.30); 1011 | -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.30); 1012 | box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.30); 1013 | } 1014 | 1015 | img { 1016 | max-width: 100%; 1017 | height: auto; 1018 | } 1019 | 1020 | .bottompagination span.navigation { 1021 | 1022 | } 1023 | 1024 | .bottompagination span.navigation a { 1025 | background: #008744; 1026 | color: #fff; 1027 | padding: 5px; 1028 | border-radius: 3px; 1029 | text-transform: none; 1030 | font-weight: 500; 1031 | letter-spacing: 0; 1032 | min-width: 100px; 1033 | display: inline-block; 1034 | } 1035 | 1036 | .pointerup { 1037 | margin-bottom: -18px; 1038 | margin-left: 49%; 1039 | font-size: 30px; 1040 | } 1041 | 1042 | .pointerup i.fa { 1043 | color: #eaeaea; 1044 | } 1045 | 1046 | .bottompagination span.navigation i { 1047 | display: inline-block; 1048 | } 1049 | 1050 | span.navigation { 1051 | display: block; 1052 | font-size: 0.93rem; 1053 | font-weight: 700; 1054 | text-align: center; 1055 | position: relative; 1056 | } 1057 | 1058 | span.navigation:before { 1059 | margin-bottom: 0; 1060 | position: absolute; 1061 | z-index: 1; 1062 | left: 0px; 1063 | right: 0px; 1064 | top: 12px; 1065 | height: 1px; 1066 | content: ''; 1067 | background-color: #eee; 1068 | } 1069 | 1070 | .pagination { 1071 | display: inline-block; 1072 | background: #fff; 1073 | z-index: 1; 1074 | position: relative; 1075 | padding: 0 20px; 1076 | font-size: 13px; 1077 | letter-spacing: 0.5px; 1078 | font-weight: 500; 1079 | text-transform: uppercase; 1080 | } 1081 | 1082 | iframe { 1083 | max-width: 100%; 1084 | } 1085 | 1086 | @media (max-width: 1199px) { 1087 | .container { 1088 | width: 100%; 1089 | max-width: 100%; 1090 | padding-right: 15px; 1091 | padding-left: 15px; 1092 | margin-right: auto; 1093 | margin-left: auto; 1094 | } 1095 | } 1096 | 1097 | @media (max-width: 991px) { 1098 | .navbar-toggleable-md .navbar-nav .nav-link { 1099 | margin-left: 0; 1100 | margin-top: 10px; 1101 | } 1102 | 1103 | .intro { 1104 | padding: 3rem 0; 1105 | } 1106 | 1107 | .wrapintro { 1108 | padding: 2rem 1rem; 1109 | } 1110 | 1111 | .intro h2 { 1112 | margin-top: 1rem; 1113 | margin-bottom: 1rem; 1114 | } 1115 | } 1116 | 1117 | @media (max-width: 575px) { 1118 | .footer { 1119 | text-align: center; 1120 | } 1121 | 1122 | .footer-widget { 1123 | margin-bottom: 1rem; 1124 | margin-top: 1rem; 1125 | } 1126 | 1127 | .sidebar { 1128 | max-width: 100%; 1129 | } 1130 | 1131 | .copyright .pull-left, .copyright .pull-right { 1132 | float: none; 1133 | } 1134 | 1135 | .beforefooter { 1136 | text-align: center; 1137 | } 1138 | 1139 | .beforefooter .footersocial { 1140 | text-align: center !important; 1141 | margin-top: 1rem; 1142 | } 1143 | 1144 | .form-group .col-md-6:first-child { 1145 | margin-bottom: 1rem; 1146 | } 1147 | 1148 | } 1149 | -------------------------------------------------------------------------------- /assets/css/user.css: -------------------------------------------------------------------------------- 1 | .lunrsearchresult .title { 2 | color: #d9230f; 3 | } 4 | 5 | .lunrsearchresult .url { 6 | color: silver; 7 | } 8 | 9 | .lunrsearchresult a { 10 | display: block; 11 | color: #777; 12 | } 13 | 14 | .lunrsearchresult a:hover, .lunrsearchresult a:focus { 15 | text-decoration: none; 16 | } 17 | 18 | .lunrsearchresult a:hover .title { 19 | text-decoration: underline; 20 | } 21 | 22 | .form-field { 23 | width: 100%; 24 | padding: 8px; 25 | border: 3px solid black; 26 | } 27 | 28 | .share-button { 29 | position: relative; 30 | display: inline-flex; 31 | align-items: center; 32 | padding: 10px; 33 | margin: 10px; 34 | color: #fff; 35 | background-color: #fff; 36 | border-radius: 2px; 37 | box-shadow: 0 1px 1px rgba(0, 0, 0, 0.35); 38 | text-decoration: none; 39 | font-family: "Open Sans", Helvetica, Arial, sans-serif; 40 | font-weight: 600; 41 | font-size: 15px; 42 | } 43 | 44 | .share-button:hover { 45 | color: #fff; 46 | background-color: #4f4f4f; 47 | } 48 | 49 | .share-button:active { 50 | top: 1px; 51 | box-shadow: 0 0 1px rgba(0, 0, 0, 0.25); 52 | } 53 | 54 | .share-button svg { 55 | fill: #ffffff; 56 | width: 19px; 57 | height: 19px; 58 | margin-right: 5px; 59 | } 60 | 61 | .share-button.facebook { 62 | background-color: #4A66B7; 63 | } 64 | 65 | .share-button.facebook:hover { 66 | background-color: #556fbb; 67 | } 68 | 69 | .share-button.twitter { 70 | background-color: #1B95E0; 71 | } 72 | 73 | .share-button.twitter:hover { 74 | background-color: #269ce5; 75 | } 76 | 77 | .share-button.pinterest { 78 | background-color: #c92228; 79 | } 80 | 81 | .share-button.pinterest:hover { 82 | background-color: #cf4146; 83 | } 84 | 85 | .share-button.linkedin { 86 | background-color: #0077B5; 87 | } 88 | 89 | .share-button.linkedin:hover { 90 | background-color: #1e84b9; 91 | } 92 | 93 | .share-button.google-plus { 94 | background-color: #c92228; 95 | } 96 | 97 | .share-button.google-plus:hover { 98 | background-color: #cf4146; 99 | } 100 | -------------------------------------------------------------------------------- /assets/fonts/casper-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrrazan/Prasad/335c39c7aafa9315b07434a7730077a6052b54ee/assets/fonts/casper-icons.eot -------------------------------------------------------------------------------- /assets/fonts/casper-icons.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /assets/fonts/casper-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrrazan/Prasad/335c39c7aafa9315b07434a7730077a6052b54ee/assets/fonts/casper-icons.ttf -------------------------------------------------------------------------------- /assets/fonts/casper-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrrazan/Prasad/335c39c7aafa9315b07434a7730077a6052b54ee/assets/fonts/casper-icons.woff -------------------------------------------------------------------------------- /assets/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrrazan/Prasad/335c39c7aafa9315b07434a7730077a6052b54ee/assets/images/1.jpg -------------------------------------------------------------------------------- /assets/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrrazan/Prasad/335c39c7aafa9315b07434a7730077a6052b54ee/assets/images/2.jpg -------------------------------------------------------------------------------- /assets/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrrazan/Prasad/335c39c7aafa9315b07434a7730077a6052b54ee/assets/images/3.jpg -------------------------------------------------------------------------------- /assets/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrrazan/Prasad/335c39c7aafa9315b07434a7730077a6052b54ee/assets/images/4.jpg -------------------------------------------------------------------------------- /assets/images/digitalocean_ref.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrrazan/Prasad/335c39c7aafa9315b07434a7730077a6052b54ee/assets/images/digitalocean_ref.jpg -------------------------------------------------------------------------------- /assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrrazan/Prasad/335c39c7aafa9315b07434a7730077a6052b54ee/assets/images/favicon.ico -------------------------------------------------------------------------------- /assets/images/head.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrrazan/Prasad/335c39c7aafa9315b07434a7730077a6052b54ee/assets/images/head.jpg -------------------------------------------------------------------------------- /assets/images/jekyll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrrazan/Prasad/335c39c7aafa9315b07434a7730077a6052b54ee/assets/images/jekyll.png -------------------------------------------------------------------------------- /assets/images/john.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdrrazan/Prasad/335c39c7aafa9315b07434a7730077a6052b54ee/assets/images/john.jpg -------------------------------------------------------------------------------- /assets/js/ie10-viewport-bug-workaround.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * IE10 viewport hack for Surface/desktop Windows 8 bug 3 | * Copyright 2014-2017 The Bootstrap Authors 4 | * Copyright 2014-2017 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 6 | */ 7 | 8 | // See the Getting Started docs for more information: 9 | // https://getbootstrap.com/getting-started/#support-ie10-width 10 | 11 | (function () { 12 | 'use strict' 13 | 14 | if (navigator.userAgent.match(/IEMobile\/10\.0/)) { 15 | var msViewportStyle = document.createElement('style') 16 | msViewportStyle.appendChild( 17 | document.createTextNode( 18 | '@-ms-viewport{width:auto!important}' 19 | ) 20 | ) 21 | document.head.appendChild(msViewportStyle) 22 | } 23 | 24 | }()) 25 | -------------------------------------------------------------------------------- /assets/js/jquery.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery v3.2.1 | (c) JS Foundation and other contributors | jquery.org/license */ 2 | !function(a,b){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){"use strict";var c=[],d=a.document,e=Object.getPrototypeOf,f=c.slice,g=c.concat,h=c.push,i=c.indexOf,j={},k=j.toString,l=j.hasOwnProperty,m=l.toString,n=m.call(Object),o={};function p(a,b){b=b||d;var c=b.createElement("script");c.text=a,b.head.appendChild(c).parentNode.removeChild(c)}var q="3.2.1",r=function(a,b){return new r.fn.init(a,b)},s=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,t=/^-ms-/,u=/-([a-z])/g,v=function(a,b){return b.toUpperCase()};r.fn=r.prototype={jquery:q,constructor:r,length:0,toArray:function(){return f.call(this)},get:function(a){return null==a?f.call(this):a<0?this[a+this.length]:this[a]},pushStack:function(a){var b=r.merge(this.constructor(),a);return b.prevObject=this,b},each:function(a){return r.each(this,a)},map:function(a){return this.pushStack(r.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(f.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(a<0?b:0);return this.pushStack(c>=0&&c0&&b-1 in a)}var x=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ha(),z=ha(),A=ha(),B=function(a,b){return a===b&&(l=!0),0},C={}.hasOwnProperty,D=[],E=D.pop,F=D.push,G=D.push,H=D.slice,I=function(a,b){for(var c=0,d=a.length;c_config.yml
. If your site is in root, for baseurl
, make sure this is set to baseurl: /
. Also, change your Google Analytics code, Disqus username, Authors, ShareThis code (https://www.sharethis.com/) etc.
51 |
52 | - Prasad requires 3 plugins:
53 | - $ gem install jekyll-paginate
54 | - $ gem install jekyll-archives
55 | - $ gem install jekyll-seo-tag
56 |
57 | - Locate the files and customize:
58 | - header & footer in default.html
.
59 | - homepage in index.html
60 | - contact form in contact.html
(https://formspree.io/)
61 | > Suitable for any third party Contact form service provider.
62 | - post sidebar in includes/sidebar.html
63 | > Suitable for Referral or Ads Code. You can make sidebar unsticky as well.
64 | - sign up form in includes/newsletter.html
65 | > Suitable for newsletter service. You can directly use the REVUE newsletter service from here.
66 | - search blog in Search/index.html
67 | > Theme uses Lunr.js for searching the blog.
68 |
69 | - Start blogging by adding your .md files in _posts
. You will see in examples in the download.
70 | - YAML front matter
71 | - post featured - featured:true
72 | - post featured image - image: assets/images/mypic.jpg
73 | - page comments - comments:true
74 | > Can setup multiple commenting system as well.
75 | - meta description (optional) - description: "this is my meta description"
76 | - permalinks (optional) - permalink: /blog/this-is-link/
77 | > Setting up custom permalink in the post section will override permalink config from _config.yml
78 |
79 | YAML Post Example:
80 | 81 | --- 82 | layout: post 83 | title: "We all wait for summer" 84 | author: john 85 | categories: [ Jekyll, tutorial ] 86 | image: assets/images/1.jpg 87 | featured: true 88 | permalink: /blog/permalinks-setup/ 89 | --- 90 |91 | 92 | 93 | YAML Page Example 94 |
95 | --- 96 | layout: page 97 | title: Prasad Template for Jekyll 98 | comments: true 99 | --- 100 |101 | 102 | - SEO 103 | - This theme uses jekyll-seo-tag plugins for SEO. Please refer to the [documentation of the plugins](https://github.com/jekyll/jekyll-seo-tag/blob/master/docs/usage.md) for additional theme uses and modification. 104 | 105 | - Instruction on deploying in Gitlab and Netlify 106 | - Gitlab: Add .gitlab-ci.yml for building Jekyll in Gitlab Pages 107 | - Netlify: Visit [this netlify docs](https://www.netlify.com/blog/2015/10/28/a-step-by-step-guide-jekyll-3.0-on-netlify/) 108 | 109 |