main
1 branches
0 tags
git clone https://git.sheff.online/git/GetSrc
main.css
CSS
939 B
 1@tailwind base;
 2@tailwind components;
 3@tailwind utilities;
 4
 5@layer base {
 6
 7    .readme p {
 8        @apply py-2;        
 9    }
10
11    .readme h1 {
12        @apply text-3xl mb-3 font-bold;
13      }
14    .readme h2 {
15        @apply text-2xl mb-3 font-bold;
16      }
17      .readme h3 {
18        @apply text-lg mb-3 font-bold;
19      }
20      .readme h4 {
21          @apply text-base mb-3 font-bold;
22      }
23      .readme h5 {
24          @apply text-base mb-3 font-bold;
25      }
26      .readme h6 {
27          @apply text-sm mb-3 font-bold;
28      }
29      
30    .readme a {
31        @apply text-blue-600;
32    }    
33
34    pre {
35        @apply pt-3 pb-3 px-2 rounded-xl text-slate-900 mb-3 bg-slate-50 shadow-inner overflow-x-auto text-sm;
36    }
37
38    pre.hlchroma {
39        @apply w-full p-0 rounded-none text-slate-900 m-0 bg-inherit shadow-none overflow-x-auto text-sm;
40    }
41
42    .mermaid {
43        @apply bg-inherit ring-0 mx-auto flex justify-center;
44    }
45}