alaselababatunde commited on
Commit
db6743e
·
1 Parent(s): 8f5ffeb
Files changed (2) hide show
  1. static/main.css +14 -9
  2. templates/index.html +6 -1
static/main.css CHANGED
@@ -166,24 +166,29 @@ body {
166
  }
167
 
168
  .chat-input button {
169
- background: var(--dominos-red);
170
  color: white;
171
  border: none;
172
- border-radius: 14px;
173
- padding: 14px 28px;
174
- font-weight: 700;
 
 
 
175
  cursor: pointer;
176
- transition: transform 0.2s ease, background 0.2s ease;
177
- height: 52px;
 
178
  }
179
 
180
  .chat-input button:hover {
181
- background: #c1142d;
182
- transform: translateY(-2px);
 
183
  }
184
 
185
  .chat-input button:active {
186
- transform: translateY(0);
187
  }
188
 
189
  /* Markdown Styling */
 
166
  }
167
 
168
  .chat-input button {
169
+ background: var(--dominos-blue);
170
  color: white;
171
  border: none;
172
+ border-radius: 50%;
173
+ width: 54px;
174
+ height: 54px;
175
+ display: flex;
176
+ align-items: center;
177
+ justify-content: center;
178
  cursor: pointer;
179
+ transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
180
+ box-shadow: 0 4px 12px rgba(0, 100, 145, 0.2);
181
+ flex-shrink: 0;
182
  }
183
 
184
  .chat-input button:hover {
185
+ background: #004d70;
186
+ transform: translateY(-2px) scale(1.05);
187
+ box-shadow: 0 6px 18px rgba(0, 100, 145, 0.3);
188
  }
189
 
190
  .chat-input button:active {
191
+ transform: translateY(0) scale(0.95);
192
  }
193
 
194
  /* Markdown Styling */
templates/index.html CHANGED
@@ -30,7 +30,12 @@
30
 
31
  <form id="chat-form" class="chat-input" autocomplete="off">
32
  <textarea name="question" id="input" placeholder="How can Domino's help you today?" required></textarea>
33
- <button type="submit" id="send-btn">Send Order</button>
 
 
 
 
 
34
  </form>
35
  </div>
36
 
 
30
 
31
  <form id="chat-form" class="chat-input" autocomplete="off">
32
  <textarea name="question" id="input" placeholder="How can Domino's help you today?" required></textarea>
33
+ <button type="submit" id="send-btn" aria-label="Send">
34
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
35
+ <path d="M5 12H19M19 12L12 5M19 12L12 19" stroke="white" stroke-width="3" stroke-linecap="round"
36
+ stroke-linejoin="round" />
37
+ </svg>
38
+ </button>
39
  </form>
40
  </div>
41