@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
ul {
@apply list-disc pl-8
}
body {
@apply bg-primary-900 text-zinc-300
}
h1, h2, h3 {
@apply text-3xl pl-10 pt-10 pb-5 font-bold
}
h1 {
@apply hidden
}
h4 {
@apply text-lg
}
hr {
@apply border-opacity-5 border-2 mx-10 my-6
}
a {
@apply text-blue-400
}
p {
@apply px-10 pb-1
}
li {
@apply text-zinc-300
}
ul {
@apply px-20
}
}
.GET {
@apply text-green-400
}
.POST {
@apply text-yellow-400
}
.DELETE {
@apply text-red-400
}
.PUT {
@apply text-blue-400
}
.code-string {
@apply text-lime-500
}
.code-url {
@apply code-string
}
.code-special {
@apply text-purple-300 italic
}
.code-key {
@apply text-teal-300
}
.code-variable {
@apply text-purple-300
}
.code-operator {
@apply text-blue-300
}
.code-keyword {
@apply text-purple-400
}
.code-method {
@apply text-blue-400
}
.code-var {
@apply text-neutral-100
}
.code-inbuilt {
@apply text-teal-500
}
.code-closure {
@apply text-orange-400
}
.request-good {
@apply bg-green-800/20 border-green-500
}
.request-bad {
@apply bg-red-800/20 border-red-500
}
.navbar-title {
@apply text-xl font-black uppercase
}
.logo {
@apply w-12 px-2 fill-indigo-400
}
.req-argument {
@apply text-yellow-500
}
.req-keyword {
@apply text-blue-500
}
.p-container {
}
.a1 {
@apply tracking-widest uppercase flex p-2 mt-6 pl-4 text-sm text-primary-100 pointer-events-none
}
.a2 {
@apply text-white hover:bg-primary-600 hover:bg-opacity-75 w-full flex items-center p-2 pl-8 text-base
}
.a3 {
@apply text-white hover:bg-primary-600 hover:bg-opacity-75 flex items-center px-2 py-2 pl-12 text-sm font-medium rounded-md
}
.a-selected {
@apply bg-indigo-800 text-white flex items-center px-2 py-2 text-sm font-medium rounded-md
}
.bg {
@apply fixed -z-50 drop-shadow-lg
}
.bg-path {
@apply stroke-green-500 drop-shadow-lg shadow-green-500/50
}
.p-container {
@apply pb-10
}
.content-container {
@apply px-6
}
.request-h1 {
}
.navbar-button-sm {
@apply ml-1 flex items-center justify-center h-10 w-10 rounded-full focus:outline-none focus:ring-2 focus:ring-inset focus:ring-white
}
.navbar-button-lg {
@apply inline-flex items-center justify-center rounded-md text-gray-500 hover:text-gray-900 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500
}
.request {
@apply text-red-800
}
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
.scroll-vertical::-webkit-scrollbar {
@apply w-5 h-4
}
.scroll-vertical::-webkit-scrollbar-track {
@apply bg-gray-700
}
.scroll-vertical::-webkit-scrollbar-thumb {
@apply bg-gradient-to-r from-primary-700 to-primary-500
}
.scroll-horizontal::-webkit-scrollbar {
@apply w-5 h-4
}
.scroll-horizontal::-webkit-scrollbar-track {
@apply rounded-lg bg-gray-600 mx-2
}
.scroll-horizontal::-webkit-scrollbar-thumb {
@apply bg-gradient-to-r from-primary-700 to-primary-500 rounded-lg
}