diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-03-30 16:25:30 +0200 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-03-30 16:25:30 +0200 |
commit | cccd9fccfb6eb2b16878d7488aa3fab578b621cc (patch) | |
tree | 983b36cb43e92bc9c10e9e92011a0737cf31a878 /styles | |
parent | b056a66af63d184e827c0f8ca6e81de2a1b19494 (diff) |
search page :tada:
Diffstat (limited to 'styles')
-rw-r--r-- | styles/globals.css | 2 | ||||
-rw-r--r-- | styles/navbar.css | 11 | ||||
-rw-r--r-- | styles/search.css | 38 |
3 files changed, 47 insertions, 4 deletions
diff --git a/styles/globals.css b/styles/globals.css index d0e0e4b..5650240 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -64,6 +64,8 @@ h3 { font-size: 32px; } background-color: var(--fg); } +:focus { outline: none; } + @media (prefers-color-scheme: light) { .subtile { opacity: .6; diff --git a/styles/navbar.css b/styles/navbar.css index 2e10091..607c3d7 100644 --- a/styles/navbar.css +++ b/styles/navbar.css @@ -85,16 +85,19 @@ height: 24px; } -.navbarItem > div > svg { - vertical-align: super; -} +.navbarItem > div > svg { vertical-align: super; } @media (prefers-color-scheme: light) { .navbarItem .inner { background-color: var(--heliotrope-gray); } .navbarItem.active .inner, - .navbarItem:not(.chapter):hover .inner { + .navbarItem.link:hover .inner { color: var(--bg); background-color: var(--fg); } + + .navbarItem.pinned .inner .title { + opacity: .6; + color: var(--oxford-blue) + } } diff --git a/styles/search.css b/styles/search.css new file mode 100644 index 0000000..5a63500 --- /dev/null +++ b/styles/search.css @@ -0,0 +1,38 @@ +.searchBar { + background-color: var(--heliotrope-gray); + border-radius: 8px; + padding: 12px; +} + +.searchBar .input { + background-color: transparent; + border: 0; + + color: var(--bg); + + margin-left: 12px; + width: calc(100% - 48px - 12px); + padding: 14px 0; + + vertical-align: top; + + font-family: "Inter", sans-serif; + font-size: 16px; +} + +.searchBar .input::placeholder { + font-style: italic; + opacity: .75; + + color: var(--bg); +} + +.searchBar .button { + margin: 0; + display: inline-block !important; + line-height: 0; + min-width: unset; + background-color: var(--bg); + color: var(--heliotrope-gray) !important; +} + |