guychuk commited on
Commit
afbcfcf
1 Parent(s): 1738d2c

Create style.css

Browse files
Files changed (1) hide show
  1. style.css +45 -0
style.css ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* style.css */
2
+ body {
3
+ background-color: #f5f5f5;
4
+ font-family: Arial, sans-serif;
5
+ }
6
+
7
+ #title {
8
+ color: #333;
9
+ text-align: center;
10
+ font-size: 2em;
11
+ margin-top: 20px;
12
+ }
13
+
14
+ #description {
15
+ color: #555;
16
+ text-align: center;
17
+ font-size: 1.2em;
18
+ margin-bottom: 20px;
19
+ }
20
+
21
+ .gradio-container {
22
+ border-radius: 10px;
23
+ border: 1px solid #ccc;
24
+ box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
25
+ padding: 20px;
26
+ background-color: #fff;
27
+ }
28
+
29
+ .gradio-button {
30
+ background-color: #4CAF50;
31
+ color: white;
32
+ border: none;
33
+ padding: 10px 20px;
34
+ text-align: center;
35
+ text-decoration: none;
36
+ display: inline-block;
37
+ font-size: 16px;
38
+ margin: 4px 2px;
39
+ cursor: pointer;
40
+ border-radius: 5px;
41
+ }
42
+
43
+ .gradio-button:hover {
44
+ background-color: #45a049;
45
+ }