summaryrefslogtreecommitdiff
path: root/CoreWiki/wwwroot/css/site.css
diff options
context:
space:
mode:
authorPaweł Bernaciak <pawelbernaciak@zohomail.eu>2023-12-29 09:41:56 +0100
committerPaweł Bernaciak <pawelbernaciak@zohomail.eu>2023-12-29 09:41:56 +0100
commit79f5eaf40b93d64be74d8b4f1ef80d19fadbfbe1 (patch)
treeddf121e78bdd50673379b223abfdb448c4f81291 /CoreWiki/wwwroot/css/site.css
parent1a96616699ab41bf6343bc1acc45a836c3e6caf3 (diff)
Cywilizowany tailwindHEADmaster
Diffstat (limited to 'CoreWiki/wwwroot/css/site.css')
-rw-r--r--CoreWiki/wwwroot/css/site.css49
1 files changed, 30 insertions, 19 deletions
diff --git a/CoreWiki/wwwroot/css/site.css b/CoreWiki/wwwroot/css/site.css
index f8d98fc..e7c7034 100644
--- a/CoreWiki/wwwroot/css/site.css
+++ b/CoreWiki/wwwroot/css/site.css
@@ -1,22 +1,33 @@
-html {
- font-size: 14px;
-}
-
-@media (min-width: 768px) {
- html {
- font-size: 16px;
- }
-}
-
-.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
- box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
-}
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
-html {
- position: relative;
- min-height: 100%;
+@layer base {
+ h1 {
+ @apply text-5xl;
+ @apply font-semibold;
+ @apply mb-2;
+ }
+ h2 {
+ @apply text-3xl;
+ @apply font-semibold;
+ @apply mb-1;
+ }
+ h3 {
+ @apply text-2xl;
+ @apply font-semibold;
+ }
+ h4 {
+ @apply text-xl;
+ @apply font-semibold;
+ }
+ h5 {
+ @apply text-lg;
+ @apply font-semibold;
+ }
+ h6 {
+ @apply font-semibold;
+ }
}
-body {
- margin-bottom: 60px;
-} \ No newline at end of file
+[x-cloak] { display: none !important; } \ No newline at end of file