Create static/style.css
Browse files- static/style.css +77 -0
static/style.css
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
font-family: Arial, sans-serif;
|
| 3 |
+
margin: 40px;
|
| 4 |
+
background: #fff;
|
| 5 |
+
color: #333;
|
| 6 |
+
line-height: 1.6;
|
| 7 |
+
}
|
| 8 |
+
|
| 9 |
+
h1, h2 {
|
| 10 |
+
color: #007cf0;
|
| 11 |
+
margin-bottom: 10px;
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
+
.grafico {
|
| 15 |
+
text-align: center;
|
| 16 |
+
margin: 30px 0;
|
| 17 |
+
page-break-before: always;
|
| 18 |
+
page-break-inside: avoid;
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
+
.grafico img {
|
| 22 |
+
max-width: 90%;
|
| 23 |
+
height: auto;
|
| 24 |
+
display: block;
|
| 25 |
+
margin: 0 auto;
|
| 26 |
+
page-break-inside: avoid;
|
| 27 |
+
border: 1px solid #ccc;
|
| 28 |
+
padding: 10px;
|
| 29 |
+
background-color: #fafafa;
|
| 30 |
+
}
|
| 31 |
+
|
| 32 |
+
table {
|
| 33 |
+
border-collapse: collapse;
|
| 34 |
+
font-size: 0.95em;
|
| 35 |
+
border: 1px solid #ccc;
|
| 36 |
+
}
|
| 37 |
+
|
| 38 |
+
th, td {
|
| 39 |
+
border: 1px solid #ccc;
|
| 40 |
+
padding: 8px 12px;
|
| 41 |
+
text-align: right;
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
th {
|
| 45 |
+
background-color: #f0f0f0;
|
| 46 |
+
text-align: center;
|
| 47 |
+
}
|
| 48 |
+
|
| 49 |
+
.parametros {
|
| 50 |
+
margin-bottom: 30px;
|
| 51 |
+
padding: 15px;
|
| 52 |
+
background: #f9fbff;
|
| 53 |
+
border-left: 5px solid #007cf0;
|
| 54 |
+
}
|
| 55 |
+
|
| 56 |
+
.parametros p {
|
| 57 |
+
margin: 6px 0;
|
| 58 |
+
}
|
| 59 |
+
|
| 60 |
+
.destaque {
|
| 61 |
+
font-weight: bold;
|
| 62 |
+
font-size: 1.05em;
|
| 63 |
+
margin-top: 30px;
|
| 64 |
+
padding: 15px;
|
| 65 |
+
background-color: #f7f9fc;
|
| 66 |
+
border-left: 6px solid #007cf0;
|
| 67 |
+
box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
|
| 68 |
+
}
|
| 69 |
+
|
| 70 |
+
.tabela {
|
| 71 |
+
margin: 30px auto; /* centraliza horizontalmente */
|
| 72 |
+
width: fit-content; /* largura do conteúdo da tabela */
|
| 73 |
+
}
|
| 74 |
+
|
| 75 |
+
.tabela table {
|
| 76 |
+
margin: 0 auto;
|
| 77 |
+
}
|