summaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
Diffstat (limited to 'scss')
-rw-r--r--scss/launcher.scss80
1 files changed, 80 insertions, 0 deletions
diff --git a/scss/launcher.scss b/scss/launcher.scss
new file mode 100644
index 0000000..eddbc88
--- /dev/null
+++ b/scss/launcher.scss
@@ -0,0 +1,80 @@
+@use "scheme";
+@use "lib";
+@use "font";
+
+.launcher {
+ @include lib.rounded(10);
+ @include lib.border(scheme.$overlay0, 0.2);
+ @include lib.shadow;
+ @include lib.element-decel;
+ @include font.main;
+
+ background-color: scheme.$mantle;
+ color: scheme.$text;
+ padding: lib.s(10) lib.s(14);
+
+ .search-bar {
+ @include lib.spacing;
+
+ margin-bottom: lib.s(5);
+ font-size: lib.s(16);
+
+ .icon {
+ font-size: lib.s(18);
+ color: scheme.$sapphire;
+ }
+
+ .placeholder {
+ color: scheme.$subtext0;
+ }
+ }
+
+ .app {
+ @include lib.element-decel;
+
+ padding: lib.s(5) lib.s(10);
+
+ &:hover,
+ &:focus {
+ background-color: scheme.$surface0;
+ }
+
+ &:active {
+ background-color: scheme.$surface1;
+ }
+ }
+
+ .pinned {
+ .app {
+ @include lib.rounded(5);
+
+ font-size: lib.s(64);
+ }
+ }
+
+ .results {
+ .empty {
+ @include lib.spacing;
+
+ color: scheme.$subtext0;
+
+ .icon {
+ font-size: lib.s(32);
+ }
+ }
+
+ .app {
+ @include lib.rounded(10);
+
+ font-size: lib.s(18);
+
+ & > * {
+ @include lib.spacing;
+ }
+
+ .icon {
+ font-size: lib.s(32);
+ }
+ }
+ }
+}