intake/web/html/intake.css

107 lines
1.6 KiB
CSS
Raw Normal View History

2025-01-24 15:15:54 +00:00
main {
max-width: 700px;
margin: 0 auto;
}
2025-02-10 21:51:55 +00:00
article, nav {
2025-01-24 15:15:54 +00:00
border: 1px solid black; border-radius: 6px;
padding: 5px;
margin-bottom: 20px;
word-break: break-word;
display: flow-root;
2025-01-24 15:15:54 +00:00
}
2025-02-06 15:49:27 +00:00
.feed-controls {
font-size: 1.2em;
2025-02-07 22:37:36 +00:00
}
.flex-between {
2025-02-07 22:08:54 +00:00
display: flex;
justify-content: space-between;
2025-02-06 15:49:27 +00:00
}
2025-01-24 15:15:54 +00:00
.item-title {
font-size: 1.4em;
}
2025-02-06 16:00:57 +00:00
.item-title::before, details[open] summary .item-title::before {
content: "= ";
opacity: 0.3;
}
summary .item-title::before {
content: "> ";
}
2025-01-24 15:15:54 +00:00
.item-button {
font-size: 1em;
float:right;
margin-left: 2px;
}
.item-link {
text-decoration: none;
float:right;
font-size: 1em;
padding: 2px 7px;
border: 1px solid;
border-radius: 2px;
}
.item-info {
2025-01-28 05:04:21 +00:00
opacity: 0.7;
2025-01-24 15:15:54 +00:00
}
details[open] > summary > .item-button, details[open] > summary > .item-link {
display: none;
}
details ~ .item-button, details ~ .item-link {
display: none;
}
details[open] ~ .item-button, details[open] ~ .item-link {
display: inline;
}
2025-01-24 15:15:54 +00:00
article img {
max-width: 100%;
height: auto;
}
button, summary {
cursor: pointer;
}
summary {
display: block;
}
summary:focus {
outline: 1px dotted gray;
}
.strikethru span, .strikethru p {
text-decoration: line-through;
}
.wide {
width: 100%;
resize: vertical;
2025-02-07 23:49:22 +00:00
box-sizing: border-box;
2025-01-24 15:15:54 +00:00
}
2025-01-28 05:04:21 +00:00
.fade > * {
opacity: 0.2;
2025-01-24 15:15:54 +00:00
}
pre {
white-space: pre-wrap;
}
table.feed-control td {
font-family: monospace; padding: 5px 10px;
}
.intake-sources td {
padding-block: 0.4em;
}
.intake-sources form {
margin: 0
}
2025-02-10 21:51:55 +00:00
.center {
2025-01-24 15:15:54 +00:00
text-align: center;
}
article textarea {
width: 100%;
resize: vertical;
}
span.error-message {
color: red;
}
2025-02-12 18:04:58 +00:00
#envvars input {
font-family: monospace;
}
2025-02-21 05:31:51 +00:00
footer {
opacity: 0.5
}