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

github.com/jpescador/hugo-future-imperfect.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDudi Levy <4785835+dudil@users.noreply.github.com>2018-02-12 01:13:39 +0300
committerPatrick Collins <thepatrickcollins@gmail.com>2018-02-12 01:13:39 +0300
commit60201d39d2a16fdaef8e3b0d9a180263ee7278c3 (patch)
treeac7a281dd82a3f07d37135b69b8ca6be4326a257
parent300f40e274728ac2b73e25623ce0c22455a9cb8d (diff)
Bugfix/issue 114 (#121)
* Remove redundent closing curled barcket * Added Property for h1 font-size * Fix property typo: -moz-transition
-rw-r--r--static/css/main.css8
1 files changed, 5 insertions, 3 deletions
diff --git a/static/css/main.css b/static/css/main.css
index ba32a84..dbd8f8c 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -130,8 +130,6 @@
}
- }
-
@media screen and (max-width: 980px) {
body, input, select, textarea {
@@ -210,6 +208,10 @@
border-bottom: 0;
}
+ h1 {
+ font-size: 1.3em;
+ }
+
h2 {
font-size: 1.1em;
}
@@ -569,7 +571,7 @@
select:hover,
textarea:hover {
-webkit-transition:border-color 0.3s ease-in-out;
- moz-transition:border-color 0.3s ease-in-out;
+ -moz-transition:border-color 0.3s ease-in-out;
transition:border-color 0.3s ease-in-out;
border-color: #2ebaae;
}