Update style.css
Browse files
style.css
CHANGED
@@ -1,34 +1,60 @@
|
|
1 |
-
|
2 |
-
|
|
|
3 |
margin: 0;
|
4 |
padding: 0;
|
|
|
5 |
}
|
6 |
|
7 |
-
|
8 |
-
|
9 |
-
|
|
|
|
|
|
|
|
|
|
|
10 |
display: flex;
|
11 |
-
justify-content: center;
|
12 |
align-items: center;
|
13 |
-
height: 100vh;
|
14 |
}
|
15 |
|
16 |
-
|
17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
background-color: #fff;
|
19 |
padding: 20px;
|
20 |
border-radius: 10px;
|
21 |
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
|
22 |
-
|
23 |
}
|
24 |
|
25 |
-
|
26 |
-
|
27 |
color: #333;
|
28 |
-
|
29 |
}
|
30 |
|
31 |
-
/* Style the embedded space container */
|
32 |
.gradio-app {
|
33 |
margin-top: 20px;
|
34 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
font-family: 'Bellota', cursive;
|
3 |
+
font-size: 18px;
|
4 |
margin: 0;
|
5 |
padding: 0;
|
6 |
+
background-color: #f2f2f2;
|
7 |
}
|
8 |
|
9 |
+
header {
|
10 |
+
background-color: #333;
|
11 |
+
color: #fff;
|
12 |
+
padding: 20px;
|
13 |
+
text-align: center;
|
14 |
+
}
|
15 |
+
|
16 |
+
.header-content {
|
17 |
display: flex;
|
|
|
18 |
align-items: center;
|
|
|
19 |
}
|
20 |
|
21 |
+
.logo {
|
22 |
+
width: 80px;
|
23 |
+
height: 80px;
|
24 |
+
margin-right: 20px;
|
25 |
+
}
|
26 |
+
|
27 |
+
header h1 {
|
28 |
+
font-size: 24px;
|
29 |
+
}
|
30 |
+
|
31 |
+
main {
|
32 |
+
padding: 20px;
|
33 |
+
text-align: center;
|
34 |
+
}
|
35 |
+
|
36 |
+
section {
|
37 |
background-color: #fff;
|
38 |
padding: 20px;
|
39 |
border-radius: 10px;
|
40 |
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
|
41 |
+
margin-bottom: 20px;
|
42 |
}
|
43 |
|
44 |
+
h2 {
|
45 |
+
font-size: 24px;
|
46 |
color: #333;
|
47 |
+
margin-bottom: 10px;
|
48 |
}
|
49 |
|
|
|
50 |
.gradio-app {
|
51 |
margin-top: 20px;
|
52 |
}
|
53 |
+
|
54 |
+
footer {
|
55 |
+
background-color: #333;
|
56 |
+
color: #fff;
|
57 |
+
text-align: center;
|
58 |
+
padding: 10px 0;
|
59 |
+
font-size: 14px;
|
60 |
+
}
|