aboutsummaryrefslogtreecommitdiff
path: root/styles/search.css
diff options
context:
space:
mode:
authorlonkaars <l.leblansch@gmail.com>2021-03-30 16:25:30 +0200
committerlonkaars <l.leblansch@gmail.com>2021-03-30 16:25:30 +0200
commitcccd9fccfb6eb2b16878d7488aa3fab578b621cc (patch)
tree983b36cb43e92bc9c10e9e92011a0737cf31a878 /styles/search.css
parentb056a66af63d184e827c0f8ca6e81de2a1b19494 (diff)
search page :tada:
Diffstat (limited to 'styles/search.css')
-rw-r--r--styles/search.css38
1 files changed, 38 insertions, 0 deletions
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;
+}
+