154 lines
3.2 KiB
CSS
154 lines
3.2 KiB
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
/* add fonts here */
|
|
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); */
|
|
|
|
@layer base {
|
|
:root {
|
|
--background: 0 0% 100%;
|
|
--foreground: 0 0% 5%;
|
|
|
|
--card: 0 0% 100%;
|
|
--card-foreground: 0 0% 5%;
|
|
|
|
--popover: 0 0% 100%;
|
|
--popover-foreground: 0 0% 5%;
|
|
|
|
--primary: 190 56% 55%;
|
|
--primary-foreground: 0 0% 2%;
|
|
|
|
--secondary: 0 0% 96%;
|
|
--secondary-foreground: 0 0% 5%;
|
|
|
|
--muted: 0 0% 96%;
|
|
--muted-foreground: 0 0% 45%;
|
|
|
|
--accent: 0 0% 96%;
|
|
--accent-foreground: 0 0% 5%;
|
|
|
|
--destructive: 0 84% 60%;
|
|
--destructive-foreground: 0 0% 98%;
|
|
|
|
--border: 0 0% 92%;
|
|
--input: 0 0% 85%;
|
|
--ring: 0 0% 76%;
|
|
|
|
--radius: 0.5rem;
|
|
}
|
|
|
|
.dark {
|
|
--background: 0 0% 0%;
|
|
--foreground: 0 0% 98%;
|
|
|
|
--card: 0 0% 3%;
|
|
--card-foreground: 0 0% 98%;
|
|
|
|
--popover: 0 0% 3%;
|
|
--popover-foreground: 0 0% 98%;
|
|
|
|
--primary: 187 71% 53%;
|
|
--primary-foreground: 0 0% 2%;
|
|
|
|
--secondary: 0 0% 6%;
|
|
--secondary-foreground: 0 0% 98%;
|
|
|
|
--muted: 0 0% 9%;
|
|
--muted-foreground: 0 0% 49%;
|
|
|
|
--accent: 0 0% 6%;
|
|
--accent-foreground: 0 0% 98%;
|
|
|
|
--destructive: 0 84% 60%;
|
|
--destructive-foreground: 0 0% 98%;
|
|
|
|
--border: 0 0% 11%;
|
|
--input: 0 0% 16%;
|
|
--ring: 187 71% 40%;
|
|
}
|
|
}
|
|
|
|
@layer base {
|
|
* {
|
|
@apply border-border;
|
|
}
|
|
body {
|
|
@apply bg-background text-foreground;
|
|
/* font-family: 'Poppins', sans-serif; */
|
|
}
|
|
|
|
|
|
.typography-h1{
|
|
@apply text-3xl md:text-4xl font-extrabold tracking-tight scroll-m-20 lg:text-5xl dark:text-white
|
|
}
|
|
.typography-h2{
|
|
@apply pb-2 text-3xl font-semibold tracking-tight transition-colors border-b scroll-m-20 first:mt-0 dark:text-white/90;
|
|
}
|
|
.typography-h3{
|
|
@apply text-2xl font-semibold tracking-tight scroll-m-20 dark:text-white;
|
|
}
|
|
.typography-h4{
|
|
@apply text-xl font-semibold tracking-tight scroll-m-20 dark:text-white;
|
|
}
|
|
.typography-p{
|
|
@apply leading-7 [&:not(:first-child)]:mt-6 dark:text-white;
|
|
}
|
|
.typography-code{
|
|
@apply relative rounded bg-gray-500/50 px-[0.3rem] py-[0.2rem] font-mono text-sm font-semibold dark:text-white/90;
|
|
}
|
|
.typography-lead{
|
|
@apply text-lg opacity-50 dark:text-white;
|
|
}
|
|
.typography-large{
|
|
@apply text-lg font-semibold dark:text-white;
|
|
}
|
|
.typography-small{
|
|
@apply text-sm font-medium leading-none dark:text-white;
|
|
}
|
|
.typography-muted{
|
|
@apply text-sm opacity-50 dark:text-white;
|
|
}
|
|
|
|
|
|
[class*=v-md-icon-], [class*=v-md-icon-]:before, [class*=v-md-icon-]:after {
|
|
font-size: 16px;
|
|
font-family: v-md-iconfont!important;
|
|
font-style: normal!important;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
|
|
.v-md-editor textarea{
|
|
background:unset;
|
|
}
|
|
|
|
.v-md-editor-preview{
|
|
color: #2c3e50;
|
|
}
|
|
|
|
|
|
.overflow-y-auto,
|
|
.overflow-x-auto,
|
|
.overflow-auto {
|
|
@apply scrollbar-thumb-slate-700/70 scrollbar-track-transparent scrollbar-thin;
|
|
}
|
|
|
|
|
|
.singleLine {
|
|
display: flex;
|
|
flex-direction: row;
|
|
/* height: 40px; */
|
|
width: 100%;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.singleLine span {
|
|
display: inline-block;
|
|
height: 20px;
|
|
margin-top: 12px;
|
|
white-space: nowrap;
|
|
}
|
|
}
|