circulartext commited on
Commit
6fe8ec9
·
verified ·
1 Parent(s): 6153859

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -1
app.py CHANGED
@@ -96,13 +96,26 @@ def create_html_with_script(output_text):
96
  padding: 20px;
97
  }}
98
  .styled-letter {{
99
- transition: all 0.3s ease;
100
  }}
101
  @keyframes wiggle {{
102
  0% {{ transform: rotate(0deg); }}
103
  50% {{ transform: rotate(5deg); }}
104
  100% {{ transform: rotate(0deg); }}
105
  }}
 
 
 
 
 
 
 
 
 
 
 
 
 
106
  </style>
107
  <script>
108
  function triggerMovement() {{
 
96
  padding: 20px;
97
  }}
98
  .styled-letter {{
99
+ transition: transform 0.3s ease;
100
  }}
101
  @keyframes wiggle {{
102
  0% {{ transform: rotate(0deg); }}
103
  50% {{ transform: rotate(5deg); }}
104
  100% {{ transform: rotate(0deg); }}
105
  }}
106
+ button {{
107
+ background-color: #4CAF50;
108
+ border: none;
109
+ color: white;
110
+ padding: 15px 32px;
111
+ text-align: center;
112
+ text-decoration: none;
113
+ display: inline-block;
114
+ font-size: 16px;
115
+ margin: 4px 2px;
116
+ cursor: pointer;
117
+ border-radius: 8px;
118
+ }}
119
  </style>
120
  <script>
121
  function triggerMovement() {{