From 656d2b82047df2dfd87f3ca0bba21f7069faec15 Mon Sep 17 00:00:00 2001 From: Honney Date: Thu, 2 Jul 2026 15:44:53 +0200 Subject: [PATCH] first commit --- .gitignore | 1 + config | 5 +++++ style.css | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 68 insertions(+) create mode 100644 .gitignore create mode 100644 config create mode 100644 style.css diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..eecc942 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.example diff --git a/config b/config new file mode 100644 index 0000000..dc846c2 --- /dev/null +++ b/config @@ -0,0 +1,5 @@ +show=drun +display=grid +allow_images=true +columns=4 +prompt=Search Applications... diff --git a/style.css b/style.css new file mode 100644 index 0000000..3076f59 --- /dev/null +++ b/style.css @@ -0,0 +1,62 @@ +* { + border: none; + box-shadow: none; + outline: none; +} + +window { + font-size: 13px; + font-family: "JetBrains Mono"; + background-color: #191114; + border-radius: 12px; +} + +#outer-box { + margin: 16px; + background-color: #191114; + border-radius: 12px; +} + +#inner-box { + background-color: #191114; + border-radius: 12px; +} + +#entry { + padding: 14px 8px; + border-radius: 16px; + background-color: transparent; + transition: all .2s ease; +} + +#entry:selected { + background-color: #6e334d; +} + +#entry #text { + margin: 14px 0 0; + font-weight: normal; + color: #e1bdc9; +} + +#entry:selected #text { + color: #ffb0ce; +} + +#image { + font-size: 36px; + margin: 4px; +} + +#input { + background: transparent; + margin: 0 8px 12px; + color: #ffb0ce; + padding: 8px 12px; + border-radius: 12px; + border-bottom: 2px solid #6e334d; +} + +#scroll { + margin: 0; +}