aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2018-11-09 21:20:08 +0100
committerTeddy Wing2018-11-09 21:25:24 +0100
commit9c1f8c4a9e8a292a325afb42c45f02344fbee45e (patch)
treef32b55d0d1cdb9f8d4ea2d6b3fe41f9696924c3b
parent737b09e6a192fb7a40578a696b372d6db7222119 (diff)
downloaddome-key-web-9c1f8c4a9e8a292a325afb42c45f02344fbee45e.tar.bz2
main.hcss: Move `layout.hcss` include to bottom
The typography and link styles should be defined closer to the top.
-rw-r--r--assets/styles.css32
-rw-r--r--assets/stylesheets/main.hcss2
2 files changed, 17 insertions, 17 deletions
diff --git a/assets/styles.css b/assets/styles.css
index ef6e370..3ab1420 100644
--- a/assets/styles.css
+++ b/assets/styles.css
@@ -2,6 +2,22 @@ html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abb
.color-murky-pond {
color: #91947f;
}
+h1, h2, h3, h4, h5, h6 {
+ font-family: "Lucida Grande", "Lucida Sans Unicode", Geneva, sans-serif;
+}
+h2 {
+ font-weight: bold;
+ font-size: 1.5em;
+}
+.code {
+ font-family: "Monaco", monospace;
+ line-height: 1.6em;
+}
+.font-size-0\.8 {
+ font-size: 0.8em;
+}
+a:link { color: #b71863; }
+a:hover { color: #880442; }
body {
background-color: #e3ce88;
color: #222;
@@ -40,19 +56,3 @@ ul {
.margin-bottom-1\.8 {
margin-bottom: 1.8em;
}
-h1, h2, h3, h4, h5, h6 {
- font-family: "Lucida Grande", "Lucida Sans Unicode", Geneva, sans-serif;
-}
-h2 {
- font-weight: bold;
- font-size: 1.5em;
-}
-.code {
- font-family: "Monaco", monospace;
- line-height: 1.6em;
-}
-.font-size-0\.8 {
- font-size: 0.8em;
-}
-a:link { color: #b71863; }
-a:hover { color: #880442; }
diff --git a/assets/stylesheets/main.hcss b/assets/stylesheets/main.hcss
index 3a0ed91..46ecf46 100644
--- a/assets/stylesheets/main.hcss
+++ b/assets/stylesheets/main.hcss
@@ -1,5 +1,5 @@
include(reset.css)
include(color.hcss)
-include(layout.hcss)
include(typography.css)
include(links.hcss)
+include(layout.hcss)