diff --git a/themes/first/src/css/color.less b/themes/first/src/css/color.less index e598a43..d4e78c1 100644 --- a/themes/first/src/css/color.less +++ b/themes/first/src/css/color.less @@ -3,8 +3,7 @@ @color-code-border: rgb(90, 92, 0); @color-code-inline: rgb(35, 77, 133); - -@color-note-background: rgb(119, 238, 95); +@color-note-background: rgb(101, 224, 77); @color-note-border: rgb(56, 116, 0); @color-warning-background: rgba(188, 32, 11, 0.55); diff --git a/themes/first/src/css/font.less b/themes/first/src/css/font.less index 8c6a1ab..443c8d6 100644 --- a/themes/first/src/css/font.less +++ b/themes/first/src/css/font.less @@ -1,5 +1,6 @@ @font-normal: ~"'Libre Baskerville', serif"; @font-code: ~"'Inconsolata', monospace"; @font-header: ~"'Zilla Slab', serif"; +@font-height: 1.7em; @font-nav: ~"'Lato', sans-serif"; diff --git a/themes/first/src/css/main.less b/themes/first/src/css/main.less index 9c2bc55..21065a3 100644 --- a/themes/first/src/css/main.less +++ b/themes/first/src/css/main.less @@ -6,6 +6,7 @@ body { margin: 0px; + } body .content { @@ -13,6 +14,8 @@ body .content { margin: 0px; font-family: @font-normal; + + line-height: 1.7em; } @media @desktop { @@ -90,13 +93,21 @@ pre { } } -p > code { +.inline-code{ color: @color-code-inline; font-weight: bold; font-family: @font-code; } +p > code { + .inline-code(); +} + +li > code { + .inline-code(); +} + .block-margin { margin-top: .65em; margin-bottom: .65em;