diff options
Diffstat (limited to 'src/assets/stylesheet.css')
| -rw-r--r-- | src/assets/stylesheet.css | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/src/assets/stylesheet.css b/src/assets/stylesheet.css index 96910b7..6aa41e0 100644 --- a/src/assets/stylesheet.css +++ b/src/assets/stylesheet.css @@ -2,8 +2,8 @@ { --bg: #101010; --text: white; - --main: limegreen; - --accent: lime; + --main: palevioletred; + --accent: hotpink; } .footpara @@ -13,7 +13,7 @@ #content { - max-width: 60em; + max-width: 80ch; margin: auto; font-family: serif; } @@ -43,29 +43,33 @@ a { color: var(--main); text-decoration: none; - border: 1px solid transparent; } a:hover { color: var(--bg); - background-color: var(--main); + background-color: var(--accent); } a:has(> img):hover { background-color: transparent; } -nav +.pages { font-family: monospace; font-size: 1.2em; text-align: center; } -ul li +ul { - list-style-type: none; + list-style-type: circle; +} + +ol +{ + list-style-type: upper-roman; } hr |
