mirror of
https://github.com/9001/copyparty.git
synced 2026-04-12 23:32:32 -06:00
readme: add styling for tables
This commit is contained in:
parent
8508142c1b
commit
bce1d8502b
|
|
@ -81,6 +81,20 @@ article, nav.sitenav {
|
||||||
.content {
|
.content {
|
||||||
margin-left: 20rem;
|
margin-left: 20rem;
|
||||||
}
|
}
|
||||||
|
table {
|
||||||
|
table-layout: fixed;
|
||||||
|
width: 100%;
|
||||||
|
margin: 1rem auto;
|
||||||
|
border-top: 3px solid #444;
|
||||||
|
border-bottom: 3px solid #444;
|
||||||
|
border-collapse: collapse;
|
||||||
|
}
|
||||||
|
tbody td {
|
||||||
|
border: 1px solid #444;
|
||||||
|
}
|
||||||
|
tbody tr:nth-child(odd) {
|
||||||
|
background: #2b2b2b;
|
||||||
|
}
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 1.7em;
|
font-size: 1.7em;
|
||||||
line-height: 1em;
|
line-height: 1em;
|
||||||
|
|
@ -125,6 +139,16 @@ a:focus {
|
||||||
nav.sidebar, footer {
|
nav.sidebar, footer {
|
||||||
background: #e4e4e4
|
background: #e4e4e4
|
||||||
}
|
}
|
||||||
|
table {
|
||||||
|
border-top: 3px solid #ddd;
|
||||||
|
border-bottom: 3px solid #ddd;
|
||||||
|
}
|
||||||
|
tbody tr:nth-child(odd) {
|
||||||
|
background: #e4e4e4;
|
||||||
|
}
|
||||||
|
tbody td {
|
||||||
|
border: 1px solid #ddd;
|
||||||
|
}
|
||||||
a {
|
a {
|
||||||
color: #079;
|
color: #079;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue