Files
nlnieuws/www/style.css
2026-04-03 17:57:55 +02:00

110 lines
1.5 KiB
CSS

/* */
* {
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
}
html {
font-family: 'IBM Plex Serif', serif;
font-size: 18px;
}
body {
border: 0px;
margin: 0px;
padding: 0px;
color: black;
background-color: #fcfffc;
}
.main {
margin: 4em 0px 8em 0px;
padding: 0.4em 0.2em;
column-count: 4;
column-width: 22em;
-webkit-column-gap: 0px;
-moz-column-gap: 0px;
column-gap: 0px;
column-rule: 1px solid lightgrey;
}
.main > div {
-webkit-column-break-inside: avoid;
-moz-column-break-inside: avoid;
-o-column-break-inside: avoid;
-ms-column-break-inside: avoid;
column-break-inside: avoid;
page-break-inside: avoid;
/* zo moet het */
break-inside: avoid;
padding: 0px 1em;
margin: 0px 0.2em 4em 0.2em;
overflow-x: hidden;
}
.footer {
text-align: center;
font-size: small;
margin-bottom: 2em;
}
.title {
text-align: center;
}
h1 {
margin-top: 4em;
}
h1,
h2 {
color: #62757f;
letter-spacing: 0.1em;
margin-top: 2em;
}
h1 {
font-size: xx-large;
font-weight: 200;
}
h2 {
margin-top: 0px;
font-size: large;
font-weight: 400;
}
a {
text-decoration: none;
color: #0000ee;
}
a:hover {
text-decoration: underline;
}
table {
border-collapse: collapse;
border-spacing: 2em;
}
td {
padding: 0.2em 0.5em 0.2em 0px;
vertical-align: center;
white-space: nowrap;
}
tr > td:first-child {
width: 100px;
}
td > div {
height: 10px;
margin-top: auto;
background-color: #62757f;
}