You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
670 B
HTML

{% macro shared_style() %}
<style>
table tr th, table tr td {
margin: 0;
padding: .2em;
border: solid black 1px;
}
a:link {
text-decoration: none;
color: blue;
}
a:visited {
text-decoration: none;
color: blue;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
.button {
padding: .1rem .2rem;
margin: 0 .1rem;
background-color: lightcoral;
border-radius: .3rem;
}
</style>
{% endmacro %}