aboutsummaryrefslogtreecommitdiff
path: root/styles/search.css
diff options
context:
space:
mode:
Diffstat (limited to 'styles/search.css')
-rw-r--r--styles/search.css67
1 files changed, 0 insertions, 67 deletions
diff --git a/styles/search.css b/styles/search.css
deleted file mode 100644
index e424b6b..0000000
--- a/styles/search.css
+++ /dev/null
@@ -1,67 +0,0 @@
-.searchBar {
- background-color: var(--fg-alt);
- border-radius: 8px;
- padding: 12px;
- margin-bottom: 24px;
-}
-
-.searchBar .input {
- background-color: transparent;
- border: 0;
-
- color: var(--bg);
-
- margin-left: 12px;
- width: calc(100% - 48px - 12px);
- padding: 14px 0;
-
- vertical-align: top;
-}
-
-.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(--fg-alt) !important;
-}
-
-.searchResults .post::after {
- display: none;
-}
-
-.searchResults .post {
- display: block;
- border-radius: 8px;
-
- padding: 12px;
- margin-bottom: 12px;
- background-color: var(--bg-alt);
-
- color: var(--fg);
-}
-
-.searchResults .post .title,
-.searchResults .post .subtitle,
-.searchResults .post .authordate {
- margin: 4px 0;
-}
-
-.searchResults .post .authordate {
- font-style: italic;
- opacity: .75;
-}
-
-@media (prefers-color-scheme: light) {
- .searchBar { background-color: var(--fg); }
- .searchBar .button { color: var(--fg) !important; }
-}
-