summaryrefslogtreecommitdiff
path: root/style
diff options
context:
space:
mode:
authorAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-03-07 01:09:35 +0100
committerAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-03-07 01:09:35 +0100
commit83c85b543ba272509e4759604b729e8abcc3aaf7 (patch)
tree77fb9a1f244ba1d2f02b861ba6a5a8cfa1c5726b /style
parent623ee2f2b9895aec44592132b971f9eae9f81105 (diff)
Got impressum working, after a multi-hour struggle
Diffstat (limited to 'style')
-rw-r--r--style/style.less11
-rw-r--r--style/typography.less22
2 files changed, 32 insertions, 1 deletions
diff --git a/style/style.less b/style/style.less
index 5b5d2de..3348e93 100644
--- a/style/style.less
+++ b/style/style.less
@@ -149,6 +149,17 @@ main a.button:hover {
color: white;
}
+/*
+ * Addresses
+ */
+
+span.address, span.mail, span.phone {
+ display: block;
+}
+
+span.address > span {
+ display: block;
+}
/*
* For screen
diff --git a/style/typography.less b/style/typography.less
index 336cd9b..d104536 100644
--- a/style/typography.less
+++ b/style/typography.less
@@ -8,7 +8,6 @@ html {
}
p {
- line-height: 1.75;
margin-bottom: 0.5rem;
}
@@ -48,6 +47,10 @@ header, main {
background-color: @color-bg;
}
+dt {
+ font-weight: bold;
+}
+
/**
* Footnotes
*/
@@ -62,9 +65,14 @@ sup {
* Main text
*/
+main, footer {
+ line-height: 1.75;
+}
+
main {
h1, h2, h3, h4, h5, h6 {
+ color: @color-main;
margin-top: 0.25em;
margin-bottom: 0.25em;
}
@@ -73,6 +81,18 @@ main {
font-size: 200%;
}
+ h2 {
+ font-size: 150%;
+ }
+
+ h3 {
+ font-size: 125%;
+ }
+
+ h4, h5, h6 {
+ font-weight: bold;
+ }
+
}