Compare commits
No commits in common. "89f92efc28ee249a7f907a771d49cb00cffacd06" and "1067da4682e3c91d59ef07a1c5c4c2e55653c34f" have entirely different histories.
89f92efc28
...
1067da4682
4 changed files with 2 additions and 12 deletions
3
TODO
3
TODO
|
@ -2,8 +2,6 @@
|
||||||
- robots.txt
|
- robots.txt
|
||||||
- make overflow behavior in print so scrollbars go away and full content visibl
|
- make overflow behavior in print so scrollbars go away and full content visibl
|
||||||
- make h1 elems in article content h2 elems
|
- make h1 elems in article content h2 elems
|
||||||
- make h2 elems have anchor elems with rel="bookmark" and a name to make them proper bookmarks
|
|
||||||
- add aria roles where sensible https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles
|
|
||||||
- Fix articles with inline html in them and/or links
|
- Fix articles with inline html in them and/or links
|
||||||
- post jump points and table of contents (be wary of having this take up too much space on mobile)
|
- post jump points and table of contents (be wary of having this take up too much space on mobile)
|
||||||
- ico?
|
- ico?
|
||||||
|
@ -11,4 +9,3 @@
|
||||||
- analytics
|
- analytics
|
||||||
https://github.com/electerious/Ackee
|
https://github.com/electerious/Ackee
|
||||||
https://umami.is/ (https://github.com/umami-software/umami)
|
https://umami.is/ (https://github.com/umami-software/umami)
|
||||||
- search functionality
|
|
||||||
|
|
|
@ -15,7 +15,6 @@
|
||||||
--header-bg: hsl(0,0%,15%);
|
--header-bg: hsl(0,0%,15%);
|
||||||
--nav-link-color: #6B0;
|
--nav-link-color: #6B0;
|
||||||
--nav-link-bg-color: hsl(0,0%,25%);
|
--nav-link-bg-color: hsl(0,0%,25%);
|
||||||
--nav-link-bg-color-hover:hsl(0,0%,20%);
|
|
||||||
--content-border-color: #5ac;
|
--content-border-color: #5ac;
|
||||||
/*stolen from code theme*/
|
/*stolen from code theme*/
|
||||||
--blockquote-bg: rgb(29, 31, 33);
|
--blockquote-bg: rgb(29, 31, 33);
|
||||||
|
@ -52,7 +51,6 @@
|
||||||
* #115e84*/
|
* #115e84*/
|
||||||
--nav-link-color: #118411;
|
--nav-link-color: #118411;
|
||||||
--nav-link-bg-color: hsl(0,0%,75%);
|
--nav-link-bg-color: hsl(0,0%,75%);
|
||||||
--nav-link-bg-color-hover:hsl(0,0%,70%);
|
|
||||||
--content-border-color: #026;
|
--content-border-color: #026;
|
||||||
--blockquote-bg: rgb(226,224,222);
|
--blockquote-bg: rgb(226,224,222);
|
||||||
--highlight-bg: #000;
|
--highlight-bg: #000;
|
||||||
|
@ -65,10 +63,6 @@
|
||||||
color: var(--nav-link-color);
|
color: var(--nav-link-color);
|
||||||
background-color: var(--nav-link-bg-color);
|
background-color: var(--nav-link-bg-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-link:hover {
|
|
||||||
background: var(--nav-link-bg-color-hover);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@layer baseline{
|
@layer baseline{
|
||||||
body {
|
body {
|
||||||
|
@ -116,7 +110,6 @@ pre:has( > code), pre.hljs {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media print {
|
@media print {
|
||||||
@layer print{
|
@layer print{
|
||||||
|
|
||||||
|
|
|
@ -24,8 +24,8 @@
|
||||||
<body>
|
<body>
|
||||||
<!-- originally handled dark v light via js but decided it would be better to just do it all in css and have no toggle 8a7917a0cd34bd7637d9a9a8ad327e4b847cdeed is the last commit where I had the system setup -->
|
<!-- originally handled dark v light via js but decided it would be better to just do it all in css and have no toggle 8a7917a0cd34bd7637d9a9a8ad327e4b847cdeed is the last commit where I had the system setup -->
|
||||||
<header id="header">
|
<header id="header">
|
||||||
<a class="nav-link" rel="prefetch" href="/">Home</a>
|
<a class="nav-link" href="/">Home</a>
|
||||||
<a class="nav-link" rel="prefetch" href="/posts/">All Posts</a>
|
<a class="nav-link" href="/posts/">All Posts</a>
|
||||||
<a class="nav-link" href="/links/">Other places I'm at</a>
|
<a class="nav-link" href="/links/">Other places I'm at</a>
|
||||||
<div class="back-shover"></div>
|
<div class="back-shover"></div>
|
||||||
<a class="icon" href="/index.xml"> <object width="100" height="100" class="icon svg"
|
<a class="icon" href="/index.xml"> <object width="100" height="100" class="icon svg"
|
||||||
|
|
Loading…
Reference in a new issue