Skip to content

Commit

Permalink
Laatste stlyling vanuit algemene respec-repos
Browse files Browse the repository at this point in the history
  • Loading branch information
MarinusVonhof committed Aug 12, 2024
1 parent 43df07c commit d21186d
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion assets/w3c_rioned_base.css
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@

/* Layout */
max-width: 60em; /* mv: was 50em - limit line length to 50em for readability */
/* schakel deze helemaal uit voor preview inclusief css (20230523) */
margin: 0 auto; /* center text within page */
padding: 1.6em 1.5em 2em 50px; /* assume 16px font size for downlevel clients */
padding: 1.6em 1.5em 2em calc(26px + 1.5em); /* leave space for status flag */
Expand Down Expand Up @@ -756,8 +757,23 @@ table.simp {
table.simp th, table.simp td { /** mv: eenvoudige basistabel */
padding: 0.3em 0 0.3em 0.5em;
}
/* mv: preformatted text (20200927) */

/* mv: markdown - vertaling naar html-tabel (20230516) */
table {
border-collapse: collapse; /* enkele border-line tussen de cellen */
}
table thead {
background: #DEF; /* lichtblauw - zie example */
}
table th, table td {
padding: 0.3em 0.5em 0.3em 0.5em;
border: 1px solid lightgray;
}
tr:nth-child(even) { /* kleur elke "even" rij */
background: rgb(245, 247, 255);
}

/* mv: preformatted text (20200927) */
pre.simp {
color: black;
background-color: rgb(245, 247, 255);
Expand Down

0 comments on commit d21186d

Please sign in to comment.