46 lines
466 B
CSS
46 lines
466 B
CSS
* {
|
|
font-family: serif;
|
|
}
|
|
|
|
th {
|
|
text-align: left;
|
|
}
|
|
|
|
td {
|
|
text-align: left;
|
|
}
|
|
|
|
table, th, td {
|
|
border: 1px solid black;
|
|
}
|
|
|
|
body {
|
|
background-color: #d2e0ec;
|
|
margin: 10px auto;
|
|
max-width: 750px;
|
|
width: 95%;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: #114488;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flag-img {
|
|
height: 30px;
|
|
}
|
|
|
|
p.lineitem::after {
|
|
content: " ";
|
|
flex: 1;
|
|
border-bottom: 1px dotted #000;
|
|
}
|
|
|
|
.nav-link {
|
|
white-space: nowrap;
|
|
}
|