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
|
||||
- All the SEO goodies comes in-built
|
||||
- Markdown blogging
|
||||
- Elegant typography
|
||||
- Futura PT fonts (The same fonts which has been used on <https://pixar.com>)
|
||||
- Syntax highlighting using Pygments
|
||||
- [Dracula syntax theme](https://draculatheme.com/) included
|
||||
- Disqus commenting
|
||||
|
@ -24,7 +24,7 @@ footer-links:
|
||||
email: amit.d.merchant@gmail.com
|
||||
facebook:
|
||||
flickr:
|
||||
github: amitmerchant1990
|
||||
github: amitmerchant1990/reverie
|
||||
instagram:
|
||||
linkedin:
|
||||
pinterest:
|
||||
|
@ -11,15 +11,17 @@ This is a plug-and-play Jekyll theme which you can use on GitHub Pages without e
|
||||
## Features
|
||||
|
||||
- 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
|
||||
- Free hosting on your GitHub Pages user site
|
||||
- All the SEO goodies comes in-built
|
||||
- Markdown blogging
|
||||
- Syntax highlighting using Pygments
|
||||
- Dracula syntax theme included
|
||||
- [Dracula syntax theme](https://draculatheme.com/) included
|
||||
- Disqus commenting
|
||||
- Google Analytics integration
|
||||
- Fuzzy search across blog posts
|
||||
- Pagination of posts works out-of-the-box.
|
||||
- Categorize posts out-of-the box
|
||||
- A home widget to show recent GitHub commit
|
||||
- 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
|
||||
- All the SEO goodies comes in-built
|
||||
- Markdown blogging
|
||||
- Elegant typography
|
||||
- Futura PT fonts (The same fonts which has been used on <https://pixar.com>)
|
||||
- Syntax highlighting using Pygments
|
||||
- [Dracula syntax theme](https://draculatheme.com/) included
|
||||
- Disqus commenting
|
||||
|
Binary file not shown.
26
style.scss
26
style.scss
@ -22,11 +22,11 @@ html {
|
||||
|
||||
body {
|
||||
background: #fff;
|
||||
font-family: 'FuturaPTLight';
|
||||
color: #555;
|
||||
font-family: -system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||
color: #404040;
|
||||
line-height: 1.7;
|
||||
font-weight: bold;
|
||||
font-size: 15pt;
|
||||
font-weight: 400;
|
||||
font-size: 18px;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
@ -38,7 +38,7 @@ body {
|
||||
}
|
||||
|
||||
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;
|
||||
font-weight: bold;
|
||||
|
||||
@ -81,7 +81,7 @@ h3 {
|
||||
|
||||
h4 {
|
||||
font-size: 18px;
|
||||
color: $gray;
|
||||
color: #222;
|
||||
}
|
||||
|
||||
p {
|
||||
@ -408,16 +408,6 @@ body:after {
|
||||
content: '';
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: EBGaramond;
|
||||
src: url(fonts/EBGaramond-Regular.ttf);
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: FuturaPTLight;
|
||||
src: url(fonts/FuturaPTLight.otf);
|
||||
}
|
||||
|
||||
#bar {
|
||||
background: #000;
|
||||
height: 7px;
|
||||
@ -431,7 +421,7 @@ body:after {
|
||||
}
|
||||
|
||||
.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;
|
||||
font-weight: bold;
|
||||
font-kerning: auto;
|
||||
@ -440,7 +430,7 @@ body:after {
|
||||
}
|
||||
|
||||
.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;
|
||||
font-weight: bold;
|
||||
font-kerning: auto;
|
||||
|
Loading…
Reference in New Issue
Block a user