e-hossam96 commited on
Commit
74cd622
·
1 Parent(s): 28e33b6

moved custom static files into static folder

Browse files
Files changed (2) hide show
  1. static/index.html +13 -0
  2. static/styles.css +37 -0
static/index.html ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div style="text-align: center; padding: 20px;">
2
+ <h1 style="background: linear-gradient(45deg, #667eea, #764ba2);
3
+ -webkit-background-clip: text;
4
+ background-clip: text;
5
+ -webkit-text-fill-color: transparent;
6
+ font-size: 2.5em;
7
+ margin-bottom: 10px;">
8
+ 🤖 AI-to-AI Conversation Interface
9
+ </h1>
10
+ <p style="font-size: 1.2em; color: #666; margin-bottom: 30px;">
11
+ Set up system messages for two AI agents and watch them converse!
12
+ </p>
13
+ </div>
static/styles.css ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .gradio-container {
2
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
3
+ }
4
+
5
+ .system-input {
6
+ border-radius: 10px !important;
7
+ border: 2px solid #e1e5e9 !important;
8
+ }
9
+
10
+ .start-button {
11
+ background: linear-gradient(45deg, #667eea 0%, #764ba2 100%) !important;
12
+ border: none !important;
13
+ border-radius: 25px !important;
14
+ color: white !important;
15
+ font-weight: bold !important;
16
+ padding: 15px 30px !important;
17
+ font-size: 16px !important;
18
+ transition: all 0.3s ease !important;
19
+ }
20
+
21
+ .start-button:hover {
22
+ transform: translateY(-2px) !important;
23
+ box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4) !important;
24
+ }
25
+
26
+ .save-button {
27
+ background: linear-gradient(45deg, #56ab2f 0%, #a8e6cf 100%) !important;
28
+ border: none !important;
29
+ border-radius: 20px !important;
30
+ color: white !important;
31
+ font-weight: bold !important;
32
+ }
33
+
34
+ .conversation-box {
35
+ border-radius: 15px !important;
36
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
37
+ }