initial commit
This commit is contained in:
commit
f743b4dfe8
16 changed files with 194 additions and 0 deletions
33
minimal-table.css
Normal file
33
minimal-table.css
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
html {
|
||||
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border: 1px dashed black;
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
td, th {
|
||||
border: 1px dashed black;;
|
||||
padding: 10px 20px;
|
||||
}
|
||||
|
||||
th {
|
||||
background-color: rgba(0,0,0,0.15);
|
||||
}
|
||||
|
||||
td {
|
||||
}
|
||||
|
||||
tr:nth-child(even) td {
|
||||
background-color: rgba(255,255,255,1);
|
||||
}
|
||||
|
||||
tr:nth-child(odd) td {
|
||||
background-color: rgba(255,255,255,1);
|
||||
}
|
||||
|
||||
caption {
|
||||
padding: 10px;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue