openfree commited on
Commit
6a37b67
·
verified ·
1 Parent(s): 6f3df96

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -10
app.py CHANGED
@@ -679,11 +679,7 @@ css = """
679
 
680
  /* 2) 배경을 연하고 투명한 파스텔 톤 그라디언트로 변경 */
681
  body {
682
- background: linear-gradient(
683
- 135deg,
684
- rgba(255, 229, 210, 0.6),
685
- rgba(255, 240, 245, 0.6)
686
- );
687
  margin: 0;
688
  padding: 0;
689
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
@@ -692,11 +688,7 @@ body {
692
 
693
  /* 버튼 색상도 기존의 짙은 붉은-주황 → 파스텔 계열로 연하게 */
694
  button, .btn {
695
- background: linear-gradient(
696
- 90deg,
697
- rgba(255, 210, 220, 0.7),
698
- rgba(255, 190, 200, 0.7)
699
- ) !important;
700
  border: none;
701
  color: #333; /* 글자 잘 보이도록 약간 진한 글씨 */
702
  padding: 12px 24px;
@@ -732,6 +724,8 @@ title_html = """
732
  """
733
 
734
 
 
 
735
  with gr.Blocks(css=css, title="Gemma3-uncensored-R27B") as demo:
736
  gr.Markdown(title_html)
737
 
 
679
 
680
  /* 2) 배경을 연하고 투명한 파스텔 톤 그라디언트로 변경 */
681
  body {
682
+ background: linear-gradient(135deg, rgba(255, 229, 210, 0.6), rgba(255, 240, 245, 0.6));
 
 
 
 
683
  margin: 0;
684
  padding: 0;
685
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
 
688
 
689
  /* 버튼 색상도 기존의 짙은 붉은-주황 → 파스텔 계열로 연하게 */
690
  button, .btn {
691
+ background: linear-gradient(90deg, rgba(255, 210, 220, 0.7), rgba(255, 190, 200, 0.7)) !important;
 
 
 
 
692
  border: none;
693
  color: #333; /* 글자 잘 보이도록 약간 진한 글씨 */
694
  padding: 12px 24px;
 
724
  """
725
 
726
 
727
+
728
+
729
  with gr.Blocks(css=css, title="Gemma3-uncensored-R27B") as demo:
730
  gr.Markdown(title_html)
731