Spaces:
Running
Running
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;600;700&display=swap'); | |
h1, h2 { | |
font-family: 'IBM Plex Mono', sans-serif; | |
} | |
.generating { | |
visibility: hidden | |
} | |
.gradio-container { | |
color: black | |
} | |
/* monospace_css */ | |
#q-input textarea { | |
font-family: monospace, 'Consolas', Courier, monospace; | |
} | |
/* Share Button */ | |
/* it was hidden directly inside the svg xml content */ | |
#share-btn-loading-icon { | |
display: none; | |
} | |
a { | |
text-decoration-line: underline; | |
font-weight: 600; | |
} | |
.animate-spin { | |
animation: spin 1s linear infinite; | |
} | |
@keyframes spin { | |
from { | |
transform: rotate(0deg); | |
} | |
to { | |
transform: rotate(360deg); | |
} | |
} | |
#share-btn-container { | |
display: flex; | |
padding-left: 0.5rem ; | |
padding-right: 0.5rem ; | |
background-color: #000000; | |
justify-content: center; | |
align-items: center; | |
border-radius: 9999px ; | |
width: 15rem; | |
} | |
#share-btn { | |
all: initial; | |
color: #ffffff; | |
font-weight: 600; | |
cursor: pointer; | |
font-family: 'IBM Plex Sans', sans-serif; | |
margin-left: 0.5rem ; | |
padding-top: 0.25rem ; | |
padding-bottom: 0.25rem ; | |
} | |
#share-btn * { | |
all: unset; | |
} | |
#share-btn-container div:nth-child(-n+2) { | |
width: auto ; | |
min-height: 0px ; | |
} | |
#share-btn-container .wrap { | |
display: none ; | |
} | |