Fix missing link, update some styles

This commit is contained in:
Daniel Flanagan 2020-07-29 13:32:00 -05:00
parent eb043d7e69
commit 44209d7b00
Signed by: lytedev
GPG Key ID: 5B2020A0F9921EF4
2 changed files with 14 additions and 3 deletions

View File

@ -258,3 +258,4 @@ the Elm playground!
[2]: https://github.com/hecrj/composable-form/blob/dd846d84de9df181a9c6e8803ba408e628ff9a93/src/Form/Base.elm#L26 [2]: https://github.com/hecrj/composable-form/blob/dd846d84de9df181a9c6e8803ba408e628ff9a93/src/Form/Base.elm#L26
[3]: https://github.com/hecrj/composable-form/blob/dd846d84de9df181a9c6e8803ba408e628ff9a93/src/Form.elm [3]: https://github.com/hecrj/composable-form/blob/dd846d84de9df181a9c6e8803ba408e628ff9a93/src/Form.elm
[4]: https://elm-lang.org/docs/records#access [4]: https://elm-lang.org/docs/records#access
[5]: https://guide.elm-lang.org/architecture/

View File

@ -85,6 +85,7 @@ https://github.com/jonathantneal/system-font-css/blob/gh-pages/system-font.css *
body > main { body > main {
padding: 0.5em; padding: 0.5em;
line-height: 1.6em;
} }
body > main > .highlight, body > main > .highlight,
@ -94,6 +95,8 @@ main > h3,
main > h4, main > h4,
main > h5, main > h5,
body > main > form, body > main > form,
body > main > ul,
body > main > ol,
body > main > p { body > main > p {
margin-top: 1em; margin-top: 1em;
margin-bottom: 0.25em; margin-bottom: 0.25em;
@ -115,6 +118,12 @@ main > *:first-child {
margin-top: 0; margin-top: 0;
} }
main > p > code {
padding: 0.1em 0.25em;
border-radius: 0.25em;
background-color: rgba(255, 255, 255, 0.03);
}
body { body {
background-color: #111; background-color: #111;
color: #fff; color: #fff;
@ -191,16 +200,17 @@ button:hover, input[type=submit]:hover {
} }
ul, ol { ul, ol {
padding-left: 1.5em; padding-left: 2em;
} }
a { a {
text-decoration-skip-ink: auto; text-decoration-skip-ink: auto;
color: #a1efe4; /* color: #a1efe4; */
color: #fff;
} }
a:visited { a:visited {
color: #66d9ef; color: #ccc;
} }
.lead { .lead {