2025-09-17 16:35:11 +02:00
|
|
|
/* === Fonts === */
|
2025-09-11 16:01:32 +02:00
|
|
|
@font-face {
|
|
|
|
|
font-family: "SISTEMAS";
|
|
|
|
|
src: url("/static/fonts/SISTEMAS FONT BT.ttf") format("truetype");
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: "BauPro";
|
|
|
|
|
src: url("/static/fonts/BauPro.ttf") format("truetype");
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-17 16:35:11 +02:00
|
|
|
/* === Typography === */
|
|
|
|
|
h1,
|
|
|
|
|
h2,
|
|
|
|
|
h3,
|
|
|
|
|
h4,
|
|
|
|
|
h5,
|
|
|
|
|
h6 {
|
2025-09-11 16:01:32 +02:00
|
|
|
font-family: "SISTEMAS", sans-serif;
|
2025-09-17 16:35:11 +02:00
|
|
|
color: #001F4D;
|
|
|
|
|
/* navy blue */
|
2025-09-11 16:01:32 +02:00
|
|
|
}
|
|
|
|
|
|
2025-09-17 16:35:11 +02:00
|
|
|
body,
|
|
|
|
|
p,
|
|
|
|
|
input,
|
|
|
|
|
button,
|
|
|
|
|
label,
|
|
|
|
|
a {
|
2025-09-11 16:01:32 +02:00
|
|
|
font-family: "BauPro", sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-17 16:35:11 +02:00
|
|
|
/* === Layout === */
|
2025-09-11 16:01:32 +02:00
|
|
|
body {
|
|
|
|
|
background-color: #F9F9F9;
|
|
|
|
|
color: #333333;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
header {
|
2025-09-17 16:35:11 +02:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 1em;
|
|
|
|
|
padding: 1em;
|
|
|
|
|
background-color: #001f3f;
|
|
|
|
|
/* navy */
|
|
|
|
|
color: #fff;
|
|
|
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
|
2025-09-11 16:01:32 +02:00
|
|
|
}
|
|
|
|
|
|
2025-09-17 16:35:11 +02:00
|
|
|
.logo {
|
|
|
|
|
height: 60px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav a {
|
|
|
|
|
color: #fff;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
margin-right: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav a:hover {
|
|
|
|
|
text-decoration: underline;
|
2025-09-11 16:01:32 +02:00
|
|
|
}
|
|
|
|
|
|
2025-09-17 16:35:11 +02:00
|
|
|
/* === Links & Buttons === */
|
2025-09-11 16:01:32 +02:00
|
|
|
a.link-card {
|
|
|
|
|
display: block;
|
|
|
|
|
padding: 1.2em 1em;
|
2025-09-17 16:35:11 +02:00
|
|
|
background-color: #E6007E;
|
|
|
|
|
/* magenta */
|
|
|
|
|
color: #FFD600;
|
|
|
|
|
/* yellow text */
|
2025-09-11 16:01:32 +02:00
|
|
|
text-decoration: none;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
transition: all 0.2s ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a.link-card:hover {
|
2025-09-17 16:35:11 +02:00
|
|
|
background-color: #FFD600;
|
|
|
|
|
/* yellow hover */
|
|
|
|
|
color: #001F4D;
|
|
|
|
|
/* navy text on hover */
|
|
|
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
|
2025-09-11 16:01:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button {
|
|
|
|
|
padding: 0.7em;
|
2025-09-17 16:35:11 +02:00
|
|
|
background-color: #E6007E;
|
|
|
|
|
/* magenta */
|
|
|
|
|
color: #FFD600;
|
|
|
|
|
/* yellow text */
|
2025-09-11 16:01:32 +02:00
|
|
|
border: none;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button:hover {
|
2025-09-17 16:35:11 +02:00
|
|
|
background-color: #FFD600;
|
|
|
|
|
/* yellow hover */
|
|
|
|
|
color: #001F4D;
|
|
|
|
|
/* navy text */
|
2025-09-11 16:01:32 +02:00
|
|
|
}
|
|
|
|
|
|
2025-09-17 16:35:11 +02:00
|
|
|
/* === Result Page Table Styles === */
|
|
|
|
|
table {
|
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin-top: 1em;
|
2025-09-11 16:01:32 +02:00
|
|
|
}
|
|
|
|
|
|
2025-09-17 16:35:11 +02:00
|
|
|
th,
|
|
|
|
|
td {
|
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
padding: 0.5em;
|
|
|
|
|
text-align: center;
|
2025-09-11 16:01:32 +02:00
|
|
|
}
|
|
|
|
|
|
2025-09-17 16:35:11 +02:00
|
|
|
th {
|
|
|
|
|
background-color: #f2f2f2;
|
2025-09-11 16:01:32 +02:00
|
|
|
}
|
|
|
|
|
|
2025-09-17 16:35:11 +02:00
|
|
|
.color {
|
|
|
|
|
background-color: #ffdede;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.black {
|
|
|
|
|
background-color: #e0e0ff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.totals {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container {
|
|
|
|
|
max-width: 900px;
|
|
|
|
|
margin: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1,
|
|
|
|
|
h2 {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.alert {
|
|
|
|
|
padding: 1em;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
margin-bottom: 1em;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.alert.success {
|
|
|
|
|
background-color: #4CAF50;
|
|
|
|
|
/* green */
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.alert.error {
|
|
|
|
|
background-color: #E6007E;
|
|
|
|
|
/* magenta */
|
|
|
|
|
color: #FFD600;
|
|
|
|
|
/* yellow text */
|
2025-09-11 16:01:32 +02:00
|
|
|
}
|