Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/gohugoioTheme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Deininger <adeininger@urbanonline.de>2022-11-10 11:58:32 +0300
committerGitHub <noreply@github.com>2022-11-10 11:58:32 +0300
commitc919843ba78eaea248c270fa9cbe2ec4b24f49fe (patch)
tree74551aba7a6e08bddfca2e46ce9f246ff16d6784
parent0ef1c51685bfde2410a031d3d5b4255d12ee90e4 (diff)
README.md: correct broken link (#235)
-rw-r--r--README.md4
-rw-r--r--assets/css/_font-family.css2
2 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index f84e98bd..ec390917 100644
--- a/README.md
+++ b/README.md
@@ -35,12 +35,12 @@ We use [NPM](https://www.npmjs.com/) for package management The theme's `.gitign
We use Webpack to manage our asset pipeline. Arguably, Webpack is overkill for this use-case, but we're using it here because once it's set up (which we've done for you), it's really easy to use. If you want to use an external script, just add it via Yarn, and reference it in main.js. You'll find instructions in the js/main.js file.
### PostCSS
-PostCSS is just CSS. You'll find `postcss.config.js` in the Webpack.config.js file. There you'll find that we're using [`postcss-import`](https://github.com/postcss/postcss-import) which allows us import css files directly from the node_modules folder, [`postcss-cssnext`](http://cssnext.io/features/) which gives us the power to use upcoming CSS features today. If you miss Sass you can find PostCss modules for those capabilities, too.
+PostCSS is just CSS. You'll find `postcss.config.js` in the Webpack.config.js file. There you'll find that we're using [`postcss-import`](https://github.com/postcss/postcss-import) which allows us import css files directly from the node_modules folder, [`postcss-cssnext`](https://cssnext.github.io/features/) which gives us the power to use upcoming CSS features today. If you miss Sass you can find PostCss modules for those capabilities, too.
### Tachyons
-This theme uses the [Tachyons CSS Library](http://tachyons.io/). It's about 15kb gzipped, highly modular, and each class is atomic so you never have to worry about overwriting your styles. It's a great library for themes because you can make most all the style changes you need right in your layouts.
+This theme uses the [Tachyons CSS Library](https://tachyons.io/). It's about 15kb gzipped, highly modular, and each class is atomic so you never have to worry about overwriting your styles. It's a great library for themes because you can make most all the style changes you need right in your layouts.
## How to Use
diff --git a/assets/css/_font-family.css b/assets/css/_font-family.css
index 9b451cf1..440b5efd 100644
--- a/assets/css/_font-family.css
+++ b/assets/css/_font-family.css
@@ -1,4 +1,4 @@
-/* From http://cssfontstack.com */
+/* From https://www.cssfontstack.com */
code, .code, pre code, .highlight pre {
font-family: 'inconsolata',Menlo,Monaco,'Courier New',monospace;
}