2022-06-20 19:48:08 +00:00
|
|
|
/* Application styles */
|
2022-06-25 12:48:46 +00:00
|
|
|
|
2022-06-25 20:27:02 +00:00
|
|
|
body {
|
2023-07-12 18:13:08 +00:00
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
main, nav, footer {
|
2022-06-25 20:27:02 +00:00
|
|
|
margin: 0 auto;
|
2023-07-12 18:13:08 +00:00
|
|
|
max-width: 1000px;
|
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
|
|
|
padding: 10px;
|
2022-06-25 20:27:02 +00:00
|
|
|
}
|
2022-06-25 12:48:46 +00:00
|
|
|
|
2023-07-12 18:13:08 +00:00
|
|
|
.banner {
|
|
|
|
width: 100%;
|
|
|
|
padding: 15px;
|
|
|
|
background-size: auto 30px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
border-top: 1px solid #aaa;
|
|
|
|
margin-top: 20px;
|
|
|
|
padding: 20px 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer div + div { margin-top: 10px; }
|
|
|
|
|
|
|
|
|
2022-06-25 20:27:02 +00:00
|
|
|
table {
|
|
|
|
border: 1px solid black;
|
|
|
|
border-collapse: collapse;
|
|
|
|
margin: 20px 0;
|
|
|
|
width: calc(100% - 42px);
|
|
|
|
}
|
2022-06-25 12:48:46 +00:00
|
|
|
|
2022-06-25 20:27:02 +00:00
|
|
|
td, th { padding: 10px; text-align: left; }
|
|
|
|
|
|
|
|
table.zebra tr:nth-child(2n) { background-color: #eee; }
|
|
|
|
table.lined tr:nth-child(n + 2) td { border-top: 1px solid #eee; }
|
|
|
|
|
|
|
|
ul {
|
|
|
|
padding-left: 5px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
li { padding: 5px 0px; }
|
2022-07-16 10:27:43 +00:00
|
|
|
|
|
|
|
table.noborder { border: 0; margin: 0; }
|
2023-02-26 13:03:36 +00:00
|
|
|
|
|
|
|
nav ul { display: flex; flex-wrap: wrap; padding: 10px; list-style-type: none; gap: 20px; }
|
|
|
|
nav ul li { margin: 0; padding: 0; }
|
2023-03-31 01:24:16 +00:00
|
|
|
|
|
|
|
.contribution-actions {
|
|
|
|
list-style-type: none;
|
|
|
|
padding: 0px;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
gap: 0 20px;
|
|
|
|
}
|
|
|
|
.contribution-actions li { padding: 0; }
|