Spaces:
Running
Running
| /* !important */ | |
| @import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap'); | |
| * { | |
| /* font-family: 'Comfortaa', cursive, sans-serif !important; */ | |
| font-family: "M PLUS Rounded 1c", sans-serif ; | |
| box-sizing: border-box ; | |
| font-weight: 200 ; | |
| } | |
| footer { | |
| visibility: hidden ; | |
| height: 0 ; | |
| } | |
| :root { | |
| --primary-color: #d67ae0; | |
| --primary-color-rgb: 214, 122, 224; | |
| --text-on-primary: #000000; | |
| --bg-color: #f7f8fc; | |
| --surface-color: #ffffff; | |
| --text-color: #1c1c1f; | |
| --subtext-color: #65676b; | |
| --gradient-1: #fdfbff; | |
| --gradient-2: #f4f6f9; | |
| --icon-filter: invert(80%); | |
| --icon-filter-hover: invert(0%); | |
| --header-bg: rgba(247, 248, 252, 0.7); | |
| --footer-bg: #eff1f5; | |
| --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05); | |
| --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05); | |
| --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.07), 0 4px 6px -4px rgb(0 0 0 / 0.07); | |
| --radius-sm: 20px ; | |
| --radius-md: 10px ; | |
| --input-radius: 12px ; | |
| --background-fill-primary: #f7f8fc ; | |
| --background-fill-secondary: #ffffff ; | |
| --block-background-fill: #ffffff ; | |
| --color-accent: #d67ae0 ; | |
| --input-background-fill: transparent ; | |
| } | |
| .dark { | |
| --primary-color: #eab5ee ; | |
| --primary-color-rgb: 234, 181, 238 ; | |
| --text-on-primary: #000 ; | |
| --bg-color: #0d1117 ; | |
| --surface-color: #161b22 ; | |
| --text-color: #e6edf3 ; | |
| --subtext-color: #848d97 ; | |
| --gradient-1: #1a121c ; | |
| --gradient-2: #0d1117 ; | |
| --icon-filter: invert(10%) sepia(8%) saturate(93%) hue-rotate(170deg) brightness(95%) contrast(84%) ; | |
| --icon-filter-hover: invert(90%) ; | |
| --header-bg: rgba(13, 17, 23, 0.7) ; | |
| --footer-bg: #161b22 ; | |
| --radius-sm: 20px ; | |
| --radius-md: 10px ; | |
| --input-radius: 12px ; | |
| --background-fill-primary: #0d1117 ; | |
| --background-fill-secondary: #161b22 ; | |
| --block-background-fill: #161b22 ; | |
| --color-accent: #eab5ee ; | |
| } | |
| body, html { | |
| background: var(--body-background-fill); | |
| } | |
| .primary { | |
| color: var(--primary-color) ; | |
| font-size: 14px ; | |
| padding: 8px 18px ; | |
| border: 2px solid var(--primary-color) ; | |
| transition: all 0.3s ease-in-out ; | |
| font-weight: bold ; | |
| background-color: transparent ; | |
| white-space: nowrap ; | |
| } | |
| .primary:hover { | |
| background-color: var(--primary-color) ; | |
| color: var(--text-on-primary) ; | |
| transform: scale(1.05) ; | |
| } | |
| .button { | |
| border-radius: 8px ; | |
| } | |
| .secondary { | |
| color: var(--primary-color) ; | |
| font-size: 14px ; | |
| padding: 8px 18px ; | |
| border: 2px solid rgb(96 55 103) ; | |
| transition: all 0.3s ease-in-out ; | |
| font-weight: bold ; | |
| background-color: transparent ; | |
| white-space: nowrap ; | |
| } | |
| .secondary:hover { | |
| background-color: rgb(96 55 103) ; | |
| color: #fff ; | |
| transform: scale(1.05) ; | |
| } | |
| ::-webkit-scrollbar { | |
| width: 0.5em ; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background-color: #3a3a3ab3 ; | |
| border-radius: 50px ; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background-color: transparent ; | |
| } |