parent
5026df8bbd
commit
dd63d931f7
3 changed files with 124 additions and 22 deletions
@ -1,18 +1,33 @@ |
||||
@import "tailwindcss"; |
||||
@import "tailwindcss"; |
||||
@import url('https://fonts.cdnfonts.com/css/sora-3'); |
||||
|
||||
html{ |
||||
html { |
||||
font-family: 'Sora', sans-serif; |
||||
} |
||||
|
||||
} |
||||
main{ |
||||
@apply w-full min-h-screen; |
||||
} |
||||
section { |
||||
@apply flex flex-col items-center justify-center gap-4 p-4; |
||||
@apply bg-gray-100 rounded-xl; |
||||
} |
||||
button{ |
||||
@apply px-4 py-2 bg-fuchsia-400 text-black font-bold rounded-full hover:bg-fuchsia-500; |
||||
} |
||||
select, input[type="file"] { |
||||
@apply px-4 py-2 border border-gray-300 rounded; |
||||
} |
||||
main { |
||||
@apply w-full min-h-screen font-light text-gray-800 tracking-wider; |
||||
} |
||||
|
||||
section { |
||||
@apply flex flex-col items-center justify-start gap-4 px-4; |
||||
@apply bg-slate-100 border-green-400 border-4; |
||||
} |
||||
|
||||
section>* { |
||||
@apply w-full; |
||||
} |
||||
|
||||
button { |
||||
@apply px-2 py-1 bg-fuchsia-400 text-black font-bold rounded-full hover:bg-fuchsia-500 tracking-wider; |
||||
/* @apply uppercase; */ |
||||
} |
||||
|
||||
select, |
||||
input[type="file"] { |
||||
@apply px-4 py-2 border border-gray-300 rounded font-light text-gray-800; |
||||
} |
||||
|
||||
h1 { |
||||
@apply text-2xl font-bold text-center uppercase text-gray-800 tracking-widest bg-green-400 mb-4; |
||||
} |
||||
Loading…
Reference in new issue