Spaces:
Sleeping
Sleeping
Create ui/styles.css
Browse files- ui/styles.css +28 -0
ui/styles.css
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* style.css */
|
2 |
+
#header {
|
3 |
+
text-align: center;
|
4 |
+
font-size: 2em;
|
5 |
+
margin-bottom: 20px;
|
6 |
+
color: #333;
|
7 |
+
}
|
8 |
+
#user-guidance {
|
9 |
+
font-size: 1.1em;
|
10 |
+
color: #555;
|
11 |
+
margin-bottom: 20px;
|
12 |
+
}
|
13 |
+
#main {
|
14 |
+
padding: 20px;
|
15 |
+
background-color: #f7f7f7;
|
16 |
+
margin-bottom: 20px;
|
17 |
+
border-radius: 5px;
|
18 |
+
}
|
19 |
+
#examples {
|
20 |
+
font-size: 1.1em;
|
21 |
+
color: #333;
|
22 |
+
margin-bottom: 20px;
|
23 |
+
}
|
24 |
+
#footer {
|
25 |
+
text-align: center;
|
26 |
+
color: #888;
|
27 |
+
font-size: 0.9em;
|
28 |
+
}
|