Spaces:
Sleeping
Sleeping
@font-face { | |
font-family: 'TMCandor'; | |
src: url('/file=fonts/TMCandor-Light.otf') format('opentype'); | |
font-weight: 300; | |
} | |
@font-face { | |
font-family: 'TMCandor'; | |
src: url('/file=fonts/TMCandor-LightItalic.otf') format('opentype'); | |
font-weight: 300; | |
font-style: italic; | |
} | |
@font-face { | |
font-family: 'TMCandor'; | |
src: url('/file=fonts/TMCandor-Regular.otf') format('opentype'); | |
font-weight: normal; | |
} | |
@font-face { | |
font-family: 'TMCandor'; | |
src: url('/file=fonts/TMCandor-RegularItalic.otf') format('opentype'); | |
font-weight: normal; | |
font-style: italic; | |
} | |
@font-face { | |
font-family: 'TMCandor'; | |
src: url('/file=fonts/TMCandor-Bold.otf') format('opentype'); | |
font-weight: bold; | |
} | |
@font-face { | |
font-family: 'TMCandor'; | |
src: url('/file=fonts/TMCandor-BoldItalic.otf') format('opentype'); | |
font-weight: bold; | |
font-style: italic; | |
} | |
@font-face { | |
font-family: 'TMCandorHeadline'; | |
src: url('/file=fonts/TMCandor-Headline.otf') format('opentype'); | |
font-weight: 700; | |
} | |
:root { | |
--font: 'TMCandor', sans-serif ; | |
--font-headline: 'TMCandorHeadline', sans-serif ; | |
--block-title-text-weight: 300 ; | |
--block-shadow: 0.25rem .375rem -.0625rem rgba(0,0,0,.08); | |
--block-radius: 0px ; | |
--block-border-width: 0px ; | |
--body-text-weight: 300 ; | |
--color-cold-black: #000A1E ; | |
--color-white: #FFFFFF; | |
--color-blue: #00283C; | |
--color-orange: #FA6432; | |
--color-button-base: #64C8C8; | |
--color-button-hover: #00647D; | |
} | |
::selection { | |
background: var(--color-orange) ; | |
color: var(--color-white) ; | |
} | |
body, .gradio-container * { | |
font-family: var(--font) ; | |
font-weight: 300 ; | |
color: var(--color-cold-black) ; | |
} | |
.gradio-container h1 { | |
font-family: var(--font-headline) ; | |
font-weight: 700 ; | |
color: var(--color-orange) ; | |
text-align: left ; | |
} | |
.gr-description { | |
font-family: var(--font) ; | |
font-weight: bold ; | |
color: var(--color-cold-black) ; | |
} | |
button { | |
font-family: var(--font) ; | |
font-weight: normal ; | |
background-color: var(--color-button-base) ; | |
color: var(--color-blue) ; | |
border: none; | |
border-radius: 0px; | |
padding: 8px 0px 4px 0px; | |
background-image: none; | |
} | |
button:hover { | |
background-color: var(--color-button-hover) ; | |
color: var(--color-white) ; | |
background-image: none; | |
} | |
textarea { | |
resize: none ; | |
} | |
/* Hide the Gradio footer */ | |
footer { | |
display: none ; | |
} |