tables
This commit is contained in:
parent
3a3655b587
commit
d7e5df2a95
|
@ -65,6 +65,12 @@ input[type='submit'].secondary:focus {
|
||||||
background-color: rgba(93, 107, 137, 0.25);
|
background-color: rgba(93, 107, 137, 0.25);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* for checkboxes */
|
||||||
|
label > input {
|
||||||
|
display: inherit;
|
||||||
|
width: initial;
|
||||||
|
}
|
||||||
|
|
||||||
/* from pico.css */
|
/* from pico.css */
|
||||||
mark {
|
mark {
|
||||||
padding: 0.125rem 0.25rem;
|
padding: 0.125rem 0.25rem;
|
||||||
|
@ -128,6 +134,18 @@ pre {
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
border-bottom: solid #888 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr:nth-child(2n) {
|
||||||
|
background: #f0f0f1;
|
||||||
|
}
|
||||||
|
|
||||||
.header {
|
.header {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: row;
|
flex-flow: row;
|
||||||
|
|
Loading…
Reference in New Issue