danhtran2mind commited on
Commit
1da5a87
·
verified ·
1 Parent(s): f22a768

Update gradio_app/static/styles.css

Browse files
Files changed (1) hide show
  1. gradio_app/static/styles.css +29 -34
gradio_app/static/styles.css CHANGED
@@ -19,61 +19,56 @@
19
  animation: fadeIn 0.8s ease-in-out;
20
  margin: 0 auto;
21
  }
22
- /* .intro-container {
23
- max-width: 800px;
24
- padding: 40px;
25
- background: #ffffff;
26
- border-radius: 15px;
27
- box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
28
- text-align: center;
29
- animation: fadeIn 1s ease-in-out;
30
- } */
31
  h1 {
32
- font-size: 2.5em;
33
- color: #007bff;
34
- text-transform: uppercase;
35
- letter-spacing: 1px;
36
- margin-bottom: 20px;
37
  }
 
38
  h2 {
39
- font-size: 2em;
40
- color: #555555;
41
- margin-bottom: 30px;
 
42
  }
43
 
44
  .intro-icon {
45
- font-size: 1.2em;
 
46
  }
47
 
48
  .intro-highlight {
49
- font-size: 1.15em;
50
- /* background-color: #e8f4f8; */
51
- /* padding: 15px;
52
- border-radius: 8px;
53
- margin-bottom: 20px;
54
- border-left: 4px solid #3498db; */
55
  }
56
 
57
  .intro-disclaimer {
58
- font-size: 1.15em;
59
- background-color: #fff3cd;
60
- padding: 15px;
61
- border-radius: 8px;
62
- margin-bottom: 20px;
63
- border-left: 4px solid #f1c40f;
64
  }
65
 
66
  .intro-purpose {
67
- color: #7f8c8d;
68
  }
69
 
70
  .intro-alert {
71
- color: #c0392b;
72
- font-size: 1.3em;
 
73
  }
74
 
75
  @keyframes fadeIn {
76
- 0% { opacity: 0; transform: translateY(-20px); }
77
  100% { opacity: 1; transform: translateY(0); }
78
  }
79
 
 
19
  animation: fadeIn 0.8s ease-in-out;
20
  margin: 0 auto;
21
  }
 
 
 
 
 
 
 
 
 
22
  h1 {
23
+ font-size: 2.2em;
24
+ color: #005566;
25
+ font-weight: 700;
26
+ letter-spacing: 0.5px;
27
+ margin-bottom: 15px;
28
  }
29
+
30
  h2 {
31
+ font-size: 1.6em;
32
+ color: #34495e;
33
+ font-weight: 500;
34
+ margin-bottom: 20px;
35
  }
36
 
37
  .intro-icon {
38
+ font-size: 1.1em;
39
+ margin-right: 5px;
40
  }
41
 
42
  .intro-highlight {
43
+ font-size: 1.1em;
44
+ background-color: rgba(230, 243, 255, 0.9);
45
+ padding: 12px;
46
+ border-radius: 6px;
47
+ margin-bottom: 15px;
48
+ border-left: 4px solid #1e90ff;
49
  }
50
 
51
  .intro-disclaimer {
52
+ font-size: 1em;
53
+ background-color: rgba(255, 248, 225, 0.9);
54
+ padding: 12px;
55
+ border-radius: 6px;
56
+ margin-bottom: 15px;
57
+ border-left: 4px solid #ffb300;
58
  }
59
 
60
  .intro-purpose {
61
+ color: #5d6d7e;
62
  }
63
 
64
  .intro-alert {
65
+ color: #d32f2f;
66
+ font-size: 1.2em;
67
+ font-weight: 600;
68
  }
69
 
70
  @keyframes fadeIn {
71
+ 0% { opacity: 0; transform: translateY(-15px); }
72
  100% { opacity: 1; transform: translateY(0); }
73
  }
74