summaryrefslogtreecommitdiffstats
path: root/src/assets/css/tailwind.css
blob: 102835308bb6e919a0a0f763257f2238f4aa58dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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;
    }
}