From c6b4c6a90a3bb77add64994f51d3e2af790c8452 Mon Sep 17 00:00:00 2001 From: jdlugosz963 Date: Fri, 17 Dec 2021 00:22:38 +0100 Subject: make styles and add some features --- src/assets/css/tailwind.css | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/assets/css/tailwind.css (limited to 'src/assets/css/tailwind.css') diff --git a/src/assets/css/tailwind.css b/src/assets/css/tailwind.css new file mode 100644 index 0000000..1028353 --- /dev/null +++ b/src/assets/css/tailwind.css @@ -0,0 +1,31 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + +@layer base { + .inset-center { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + } + + kbd { + @apply bg-gray-600; + @apply p-1; + @apply rounded-md; + @apply border-gray-800; + @apply font-fira; + } + + .searcher { + @apply inset-center; + @apply w-2/3; + @apply h-90; + @apply shadow-lg; + @apply bg-gray-900; + @apply p-4 rounded-lg; + @apply border-2; + @apply border-blue-900; + } +} -- cgit v1.2.3