Spaces:
Runtime error
Runtime error
osanseviero
commited on
Commit
·
253db97
1
Parent(s):
5d82e47
Create app.css
Browse files
app.css
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
.infoPoint h1 {
|
3 |
+
font-size: 30px;
|
4 |
+
text-decoration: bold;
|
5 |
+
|
6 |
+
}
|
7 |
+
|
8 |
+
a {
|
9 |
+
text-decoration: underline;
|
10 |
+
color: #1f3b54 ;
|
11 |
+
}
|
12 |
+
|
13 |
+
table {
|
14 |
+
|
15 |
+
margin: 25px 0;
|
16 |
+
font-size: 0.9em;
|
17 |
+
font-family: sans-serif;
|
18 |
+
min-width: 400px;
|
19 |
+
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
|
20 |
+
}
|
21 |
+
|
22 |
+
table th,
|
23 |
+
table td {
|
24 |
+
padding: 12px 15px;
|
25 |
+
}
|
26 |
+
|
27 |
+
tr {
|
28 |
+
text-align: left;
|
29 |
+
}
|
30 |
+
thead tr {
|
31 |
+
text-align: left;
|
32 |
+
}
|
33 |
+
|