Fix missing link, update some styles
This commit is contained in:
parent
eb043d7e69
commit
44209d7b00
2 changed files with 14 additions and 3 deletions
|
@ -258,3 +258,4 @@ the Elm playground!
|
|||
[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
|
||||
[4]: https://elm-lang.org/docs/records#access
|
||||
[5]: https://guide.elm-lang.org/architecture/
|
||||
|
|
|
@ -85,6 +85,7 @@ https://github.com/jonathantneal/system-font-css/blob/gh-pages/system-font.css *
|
|||
|
||||
body > main {
|
||||
padding: 0.5em;
|
||||
line-height: 1.6em;
|
||||
}
|
||||
|
||||
body > main > .highlight,
|
||||
|
@ -94,6 +95,8 @@ main > h3,
|
|||
main > h4,
|
||||
main > h5,
|
||||
body > main > form,
|
||||
body > main > ul,
|
||||
body > main > ol,
|
||||
body > main > p {
|
||||
margin-top: 1em;
|
||||
margin-bottom: 0.25em;
|
||||
|
@ -115,6 +118,12 @@ main > *:first-child {
|
|||
margin-top: 0;
|
||||
}
|
||||
|
||||
main > p > code {
|
||||
padding: 0.1em 0.25em;
|
||||
border-radius: 0.25em;
|
||||
background-color: rgba(255, 255, 255, 0.03);
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: #111;
|
||||
color: #fff;
|
||||
|
@ -191,16 +200,17 @@ button:hover, input[type=submit]:hover {
|
|||
}
|
||||
|
||||
ul, ol {
|
||||
padding-left: 1.5em;
|
||||
padding-left: 2em;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration-skip-ink: auto;
|
||||
color: #a1efe4;
|
||||
/* color: #a1efe4; */
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #66d9ef;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
.lead {
|
||||
|
|
Loading…
Reference in a new issue