summaryrefslogtreecommitdiff
path: root/style
diff options
context:
space:
mode:
Diffstat (limited to 'style')
-rw-r--r--style/style.less3
-rw-r--r--style/typography.less24
2 files changed, 22 insertions, 5 deletions
diff --git a/style/style.less b/style/style.less
index 021afd4..3527378 100644
--- a/style/style.less
+++ b/style/style.less
@@ -146,3 +146,6 @@ img[name=license] {
padding: 1em;
}
+.column.nav {
+ text-align: center;
+}
diff --git a/style/typography.less b/style/typography.less
index f3a5e2e..da23a9e 100644
--- a/style/typography.less
+++ b/style/typography.less
@@ -66,20 +66,34 @@ header, main {
background-color: @color-bg;
}
-dt {
- font-weight: bold;
- color: @color-main;
+dl {
+ width: 100%;
}
-dd, dt {
+dl::after {
+ content: "";
display: block;
+ clear: both;
+}
+
+dt, dd {
+ float: left;
+ margin-bottom: 1em;
+}
+
+dt {
+ font-weight: bold;
+ color: @color-main;
+ width: 30%;
+ margin-right: 5%;
}
dd {
- margin-bottom: 0.5em;
+ width: 65%;
}
+
/**
* Footnotes
*/