TejAndrewsACC commited on
Commit
a5d6f83
·
verified ·
1 Parent(s): 0e1c12c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -0
app.py CHANGED
@@ -1627,7 +1627,25 @@ print("Transformer Output:", transformer_output)
1627
 
1628
 
1629
 
 
 
 
1630
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1631
 
1632
 
1633
 
@@ -1680,6 +1698,7 @@ demo = gr.ChatInterface(
1680
  placeholder="💙Hi, I'm ACC Emulect+💙",
1681
  ),
1682
  theme="TejAndrewsACC/Emulect",
 
1683
  )
1684
 
1685
  if __name__ == "__main__":
 
1627
 
1628
 
1629
 
1630
+ css = """
1631
+ /* Import Caveat font from Google Fonts */
1632
+ @import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap');
1633
 
1634
+ /* Apply Caveat font globally and increase font size to 125% */
1635
+ * {
1636
+ font-family: 'Caveat', cursive !important;
1637
+ font-size: 16pt;
1638
+ }
1639
+
1640
+ body {
1641
+ background-image: url('https://huggingface.co/spaces/TejAndrewsACC/Z3ta_Z/resolve/main/backgrass.png');
1642
+ background-size: cover;
1643
+ background-position: center;
1644
+ background-repeat: no-repeat;
1645
+ color: #fff;
1646
+ }
1647
+
1648
+ """
1649
 
1650
 
1651
 
 
1698
  placeholder="💙Hi, I'm ACC Emulect+💙",
1699
  ),
1700
  theme="TejAndrewsACC/Emulect",
1701
+ css=css
1702
  )
1703
 
1704
  if __name__ == "__main__":