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

github.com/AngeloStavrow/indigo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngelo Stavrow <contact@angelostavrow.com>2019-06-24 15:27:16 +0300
committerGitHub <noreply@github.com>2019-06-24 15:27:16 +0300
commit5925a70300207602421348b82cbc172fde38ff37 (patch)
treed923d1e9477d804ff43b4b5b4f203e09c5e9e8f3
parent533cb730cba5c5ece269f06e00154cb02b157c85 (diff)
parent9acb91fc35e5e766f376eb40349e546475f32eae (diff)
Merge pull request #47 from AngeloStavrow/41_fix-h1-styling
Fixes <h1> font sizing; closes #41.
-rw-r--r--CHANGELOG.md3
-rw-r--r--static/css/style.css4
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index cc4a9ab..8ffccf0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,7 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Fixed
-- Fixed some copy/paste errors in CSS `font-family` definitions [#38](https://github.com/AngeloStavrow/indigo/issues/38)
+- Fixed some copy/paste errors in CSS `font-family` definitions per [#38](https://github.com/AngeloStavrow/indigo/issues/38)
+- Fixes `<h1>` font-sizing per [#41](https://github.com/AngeloStavrow/indigo/issues/41)
## [1.0.5]
### Fixed
diff --git a/static/css/style.css b/static/css/style.css
index 028740e..676124b 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -103,6 +103,10 @@ h1, h2, h3, h4, h5, h6 {
padding-top: 0.15em;
}
+h1 {
+ font-size: 2em;
+}
+
a {
color: #00416a;
}