mirror of
https://github.com/minoplhy/crappy-reverie.git
synced 2024-11-14 21:36:57 +00:00
Stop using the Futura font replacing them with the system fonts.
This commit is contained in:
parent
8437f8a9d9
commit
f831df5428
@ -20,8 +20,6 @@ This is a plug-and-play Jekyll theme best suited to use on [GitHub Pages](https:
|
|||||||
- Free hosting on your GitHub Pages user site
|
- Free hosting on your GitHub Pages user site
|
||||||
- All the SEO goodies comes in-built
|
- All the SEO goodies comes in-built
|
||||||
- Markdown blogging
|
- Markdown blogging
|
||||||
- Elegant typography
|
|
||||||
- Futura PT fonts (The same fonts which has been used on <https://pixar.com>)
|
|
||||||
- Syntax highlighting using Pygments
|
- Syntax highlighting using Pygments
|
||||||
- [Dracula syntax theme](https://draculatheme.com/) included
|
- [Dracula syntax theme](https://draculatheme.com/) included
|
||||||
- Disqus commenting
|
- Disqus commenting
|
||||||
|
@ -24,7 +24,7 @@ footer-links:
|
|||||||
email: amit.d.merchant@gmail.com
|
email: amit.d.merchant@gmail.com
|
||||||
facebook:
|
facebook:
|
||||||
flickr:
|
flickr:
|
||||||
github: amitmerchant1990
|
github: amitmerchant1990/reverie
|
||||||
instagram:
|
instagram:
|
||||||
linkedin:
|
linkedin:
|
||||||
pinterest:
|
pinterest:
|
||||||
|
@ -11,15 +11,17 @@ This is a plug-and-play Jekyll theme which you can use on GitHub Pages without e
|
|||||||
## Features
|
## Features
|
||||||
|
|
||||||
- Command-line free fork-first workflow, using GitHub.com to create, customize and post to your blog
|
- Command-line free fork-first workflow, using GitHub.com to create, customize and post to your blog
|
||||||
- Fully responsive and mobile optimized base theme (Theme Demo)
|
- Fully responsive and mobile optimized base theme
|
||||||
- Sass/Coffeescript support using Jekyll 2.0
|
- Sass/Coffeescript support using Jekyll 2.0
|
||||||
- Free hosting on your GitHub Pages user site
|
- Free hosting on your GitHub Pages user site
|
||||||
|
- All the SEO goodies comes in-built
|
||||||
- Markdown blogging
|
- Markdown blogging
|
||||||
- Syntax highlighting using Pygments
|
- Syntax highlighting using Pygments
|
||||||
- Dracula syntax theme included
|
- [Dracula syntax theme](https://draculatheme.com/) included
|
||||||
- Disqus commenting
|
- Disqus commenting
|
||||||
- Google Analytics integration
|
- Google Analytics integration
|
||||||
|
- Fuzzy search across blog posts
|
||||||
|
- Pagination of posts works out-of-the-box.
|
||||||
- Categorize posts out-of-the box
|
- Categorize posts out-of-the box
|
||||||
- A home widget to show recent GitHub commit
|
|
||||||
- RSS Feed
|
- RSS Feed
|
||||||
- SEO friendly
|
- In-built sitemap
|
@ -18,8 +18,6 @@ This is a plug-and-play Jekyll theme which you can use on GitHub Pages without e
|
|||||||
- Free hosting on your GitHub Pages user site
|
- Free hosting on your GitHub Pages user site
|
||||||
- All the SEO goodies comes in-built
|
- All the SEO goodies comes in-built
|
||||||
- Markdown blogging
|
- Markdown blogging
|
||||||
- Elegant typography
|
|
||||||
- Futura PT fonts (The same fonts which has been used on <https://pixar.com>)
|
|
||||||
- Syntax highlighting using Pygments
|
- Syntax highlighting using Pygments
|
||||||
- [Dracula syntax theme](https://draculatheme.com/) included
|
- [Dracula syntax theme](https://draculatheme.com/) included
|
||||||
- Disqus commenting
|
- Disqus commenting
|
||||||
|
Binary file not shown.
26
style.scss
26
style.scss
@ -22,11 +22,11 @@ html {
|
|||||||
|
|
||||||
body {
|
body {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
font-family: 'FuturaPTLight';
|
font-family: -system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||||
color: #555;
|
color: #404040;
|
||||||
line-height: 1.7;
|
line-height: 1.7;
|
||||||
font-weight: bold;
|
font-weight: 400;
|
||||||
font-size: 15pt;
|
font-size: 18px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -38,7 +38,7 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6 {
|
h1, h2, h3, h4, h5, h6 {
|
||||||
font-family: 'FuturaPTLight';
|
font-family: -system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||||
color: $darkerGray;
|
color: $darkerGray;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
|
||||||
@ -81,7 +81,7 @@ h3 {
|
|||||||
|
|
||||||
h4 {
|
h4 {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
color: $gray;
|
color: #222;
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
@ -408,16 +408,6 @@ body:after {
|
|||||||
content: '';
|
content: '';
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: EBGaramond;
|
|
||||||
src: url(fonts/EBGaramond-Regular.ttf);
|
|
||||||
}
|
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: FuturaPTLight;
|
|
||||||
src: url(fonts/FuturaPTLight.otf);
|
|
||||||
}
|
|
||||||
|
|
||||||
#bar {
|
#bar {
|
||||||
background: #000;
|
background: #000;
|
||||||
height: 7px;
|
height: 7px;
|
||||||
@ -431,7 +421,7 @@ body:after {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.post h1{
|
.post h1{
|
||||||
font-family: 'FuturaPTLight';
|
font-family: -system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-kerning: auto;
|
font-kerning: auto;
|
||||||
@ -440,7 +430,7 @@ body:after {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.page h1{
|
.page h1{
|
||||||
font-family: 'FuturaPTLight';
|
font-family: -system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-kerning: auto;
|
font-kerning: auto;
|
||||||
|
Loading…
Reference in New Issue
Block a user