mirror of
https://0xacab.org/dCF/deCloudflare.git
synced 2025-01-15 03:37:00 -05:00
46 lines
551 B
CSS
46 lines
551 B
CSS
body {
|
|
font-family: sans-serif
|
|
}
|
|
|
|
a:not(:hover) {
|
|
text-decoration: none
|
|
}
|
|
|
|
thead {
|
|
background: #fafafa
|
|
}
|
|
|
|
details:not([open]) summary>h3 {
|
|
text-decoration: underline
|
|
}
|
|
|
|
details summary {
|
|
cursor: pointer
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
table>thead th {
|
|
border: 1px solid black;
|
|
border-bottom: 2px solid black;
|
|
}
|
|
|
|
td {
|
|
border: 1px solid black;
|
|
padding: 0.8em;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
}
|
|
|
|
summary>* {
|
|
/*
|
|
* Make summary display on the same line, instead of
|
|
* splitting into multiple lines
|
|
*/
|
|
|
|
display: inline-flex;
|
|
} |