diff --git a/templates/default-layout.lucius b/templates/default-layout.lucius index 3abf26a8f..6939d7616 100644 --- a/templates/default-layout.lucius +++ b/templates/default-layout.lucius @@ -49,11 +49,11 @@ body { --color-lmu-box-border: var(--color-lightwhite); &.theme--lavender { - --color-primary: #4C7A9C; - --color-light: #598EB5; - --color-lighter: #5F98C2; - --color-dark: #425d79; - --color-darker: #274a65; + --color-primary: #4c569c; + --color-light: #5969b5; + --color-lighter: #5f7dc2; + --color-dark: #4c4279; + --color-darker: #273765; --color-link: var(--color-dark); --color-link-hover: var(--color-darker); } @@ -435,22 +435,26 @@ input[type="button"].btn-info:hover, .deflist__dt { font-weight: 600; - font-size: 20px; - - /* bad. avoid this. */ - > a { - font-size: 16px; - } } .deflist__dd { - margin-bottom: 4px; + font-size: 18px; + margin-bottom: 10px; } @media (min-width: 768px) { .deflist { - grid-template-columns: max-content auto; + grid-template-columns: max-content minmax(auto, max-content); + + .deflist { + margin-top: -10px; + margin-right: -15px; + + .deflist__dd { + padding-right: 15px; + } + } } .deflist__dt, @@ -458,6 +462,7 @@ input[type="button"].btn-info:hover, border-bottom: 1px solid #d3d3d3; padding: 12px 0; margin: 0; + font-size: 16px; &:last-of-type { border: 0; @@ -465,7 +470,10 @@ input[type="button"].btn-info:hover, } .deflist__dt { - padding-right: 24px; - font-size: 16px; + padding-right: 50px; + } + + .deflist__dd { + padding-right: 15px; } } diff --git a/templates/versionHistory.hamlet b/templates/versionHistory.hamlet index 2cf13182d..7ad727838 100644 --- a/templates/versionHistory.hamlet +++ b/templates/versionHistory.hamlet @@ -13,7 +13,7 @@
+
#{changeLog}
diff --git a/templates/versionHistory.lucius b/templates/versionHistory.lucius
new file mode 100644
index 000000000..a6ef22367
--- /dev/null
+++ b/templates/versionHistory.lucius
@@ -0,0 +1,4 @@
+#changelog {
+ font-size: 14px;
+ white-space: pre-line;
+}