File size: 798 Bytes
afbcfcf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* style.css */
body {
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
}

#title {
    color: #333;
    text-align: center;
    font-size: 2em;
    margin-top: 20px;
}

#description {
    color: #555;
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.gradio-container {
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background-color: #fff;
}

.gradio-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

.gradio-button:hover {
    background-color: #45a049;
}