2023-08-16 21:57:31 +02:00
|
|
|
/* Global */
|
|
|
|
|
2023-08-16 19:41:55 +02:00
|
|
|
:root {
|
2023-08-16 21:57:31 +02:00
|
|
|
--border-color: hsl(0 0% 80% / 60%);
|
2023-08-17 10:50:02 +02:00
|
|
|
--accent-color: hsl(225 90% 50%);
|
|
|
|
--accent-color-pressed: hsl(225 90% 35%);
|
2023-08-16 21:09:18 +02:00
|
|
|
--color-muted: hsl(0 0% 50%);
|
2023-08-16 21:57:31 +02:00
|
|
|
--radius-s: 0.25em;
|
2023-08-16 21:09:18 +02:00
|
|
|
--radius-m: 0.5em;
|
|
|
|
--font-size-m: 1rem;
|
|
|
|
--font-size-s: 0.85rem;
|
|
|
|
--font-size-xs: 0.75rem;
|
|
|
|
--font-size-l: 1.25rem;
|
2023-08-16 21:57:31 +02:00
|
|
|
--box-shadow: 0 2px 0 hsl(0 0% 50% / 20%);
|
2023-08-16 19:41:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
box-sizing: border-box;
|
2023-08-17 12:42:28 +02:00
|
|
|
font-family: system-ui, sans-serif;
|
2023-08-16 19:41:55 +02:00
|
|
|
}
|
|
|
|
|
2023-08-17 00:06:57 +02:00
|
|
|
body {
|
|
|
|
min-height: 100vh;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: stretch;
|
|
|
|
line-height: 1.5;
|
2023-08-17 10:50:02 +02:00
|
|
|
background-color: hsl(0 0% 98%);
|
2023-08-17 00:06:57 +02:00
|
|
|
}
|
|
|
|
|
2023-08-16 19:41:55 +02:00
|
|
|
*,
|
|
|
|
*::before,
|
|
|
|
*::after {
|
|
|
|
box-sizing: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
img,
|
|
|
|
picture,
|
|
|
|
video,
|
|
|
|
canvas,
|
|
|
|
svg {
|
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
input,
|
|
|
|
button,
|
|
|
|
textarea,
|
|
|
|
select {
|
|
|
|
font: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
p,
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
|
|
|
overflow-wrap: break-word;
|
2023-08-17 00:06:57 +02:00
|
|
|
font-size: inherit;
|
|
|
|
font-weight: inherit;
|
2023-08-16 19:41:55 +02:00
|
|
|
}
|
|
|
|
|
2023-08-17 00:06:57 +02:00
|
|
|
table,
|
|
|
|
th,
|
|
|
|
tr,
|
|
|
|
td {
|
|
|
|
text-align: inherit;
|
2023-08-17 11:03:34 +02:00
|
|
|
border-collapse: collapse;
|
2023-08-17 00:06:57 +02:00
|
|
|
}
|
|
|
|
|
2023-08-17 10:50:02 +02:00
|
|
|
a {
|
|
|
|
color: var(--accent-color);
|
|
|
|
font-weight: 500;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
color: var(--accent-color-pressed);
|
|
|
|
}
|
|
|
|
|
2023-08-17 10:14:33 +02:00
|
|
|
ins {
|
2023-08-17 10:50:02 +02:00
|
|
|
background-color: hsl(120 100% 95%);
|
2023-08-17 10:14:33 +02:00
|
|
|
text-decoration-color: hsl(120 50% 75% / 50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
del {
|
2023-08-17 10:50:02 +02:00
|
|
|
background-color: hsl(0 100% 95%);
|
2023-08-17 10:14:33 +02:00
|
|
|
text-decoration-color: hsl(0 50% 40% / 50%);
|
|
|
|
}
|
|
|
|
|
2023-08-17 11:03:34 +02:00
|
|
|
code {
|
|
|
|
font-size: inherit;
|
|
|
|
}
|
|
|
|
|
2023-08-17 00:06:57 +02:00
|
|
|
summary {
|
|
|
|
cursor: pointer;
|
|
|
|
list-style: none;
|
2023-08-16 19:41:55 +02:00
|
|
|
display: flex;
|
2023-08-17 12:19:54 +02:00
|
|
|
align-items: flex-start;
|
2023-08-17 00:06:57 +02:00
|
|
|
gap: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
summary::-webkit-details-marker {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
summary::before {
|
2023-08-17 12:19:54 +02:00
|
|
|
content: url('data:image/svg+xml,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.1714 12.0007L8.22168 7.05093L9.63589 5.63672L15.9999 12.0007L9.63589 18.3646L8.22168 16.9504L13.1714 12.0007Z"></path></svg>');
|
2023-08-17 00:06:57 +02:00
|
|
|
display: grid;
|
|
|
|
place-content: center;
|
|
|
|
transition: transform 120ms;
|
2023-08-17 12:19:54 +02:00
|
|
|
margin-left: -0.25rem;
|
|
|
|
margin-top: 0.25rem;
|
2023-08-17 00:06:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
details[open] summary::before {
|
|
|
|
transform: rotate(90deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
2023-08-17 10:50:02 +02:00
|
|
|
padding-top: 1rem;
|
|
|
|
padding-bottom: 1rem;
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header:not(.header-extended) {
|
|
|
|
border-bottom: 1px solid var(--border-color);
|
|
|
|
margin-bottom: 2rem;
|
2023-08-17 00:06:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.header .container {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header nav {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 1rem;
|
|
|
|
}
|
|
|
|
|
2023-08-17 10:50:02 +02:00
|
|
|
.header-link-home {
|
2023-08-17 00:06:57 +02:00
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header h1 {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header h1 .del {
|
|
|
|
text-decoration: line-through;
|
|
|
|
text-decoration-thickness: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header h1 .ins {
|
|
|
|
text-decoration: underline;
|
|
|
|
text-decoration-thickness: 1px;
|
|
|
|
text-decoration-style: wavy;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main {
|
|
|
|
margin-bottom: auto;
|
2023-08-16 19:41:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
2023-08-17 00:06:57 +02:00
|
|
|
margin-top: 4rem;
|
2023-08-16 19:41:55 +02:00
|
|
|
padding: 1.5rem 0;
|
2023-08-17 00:06:57 +02:00
|
|
|
color: hsl(0 0% 60%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer a {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-container {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-nologo {
|
|
|
|
display: inline-block;
|
2023-08-17 10:50:02 +02:00
|
|
|
fill: hsl(0 0% 60%);
|
|
|
|
transition: fill 120ms;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-nologo:hover {
|
|
|
|
fill: hsl(0 0% 40%);
|
2023-08-16 19:41:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
max-width: 1200px;
|
|
|
|
margin: 0 auto;
|
2023-08-17 12:19:54 +02:00
|
|
|
padding: 0 1rem;
|
2023-08-16 19:41:55 +02:00
|
|
|
}
|
|
|
|
|
2023-08-16 21:57:31 +02:00
|
|
|
.input {
|
|
|
|
border-radius: var(--radius-s);
|
|
|
|
border: 1px solid var(--border-color);
|
|
|
|
padding: 0.375rem 0.75rem;
|
|
|
|
font-size: var(--font-size-m);
|
|
|
|
transition: border-color 120ms, box-shadow 120ms;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input:focus {
|
|
|
|
border-color: var(--accent-color);
|
|
|
|
box-shadow: 0 0 0 2px hsl(225 90% 40% / 50%);
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
2023-08-17 12:19:54 +02:00
|
|
|
flex-shrink: 0;
|
2023-08-16 21:57:31 +02:00
|
|
|
gap: 0.5em;
|
|
|
|
border-radius: var(--radius-s);
|
|
|
|
border: 1px solid var(--border-color);
|
|
|
|
padding: 0.375rem 0.75rem;
|
|
|
|
background: hsl(0 0% 95%);
|
|
|
|
font-size: var(--font-size-m);
|
|
|
|
transition: background-color 120ms;
|
|
|
|
color: hsl(0 0% 40%);
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 0.9em;
|
|
|
|
line-height: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button:not(:disabled) {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button:hover {
|
|
|
|
background: hsl(0 0% 90%);
|
2023-08-16 21:09:18 +02:00
|
|
|
}
|
|
|
|
|
2023-08-17 10:50:02 +02:00
|
|
|
.card {
|
|
|
|
border: 1px solid var(--border-color);
|
|
|
|
border-radius: var(--radius-m);
|
|
|
|
background-color: white;
|
|
|
|
box-shadow: 0 2px 0 hsl(0 0% 50% / 20%);
|
2023-08-17 11:03:34 +02:00
|
|
|
overflow: hidden;
|
2023-08-17 10:50:02 +02:00
|
|
|
}
|
|
|
|
|
2023-08-17 12:19:54 +02:00
|
|
|
.pagination-container {
|
|
|
|
overflow-x: auto;
|
|
|
|
}
|
|
|
|
|
2023-08-16 19:41:55 +02:00
|
|
|
.pagination {
|
|
|
|
list-style-type: none;
|
|
|
|
padding: 0;
|
|
|
|
display: flex;
|
2023-08-16 21:57:31 +02:00
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-link {
|
|
|
|
display: block;
|
|
|
|
padding: 0.5em 1em;
|
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-item {
|
|
|
|
border: 1px solid var(--border-color);
|
2023-08-17 10:14:33 +02:00
|
|
|
background: hsl(0 0% 95%);
|
|
|
|
transition: background-color 120ms;
|
|
|
|
color: hsl(0 0% 40%);
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 0.85em;
|
|
|
|
line-height: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-item:not(.active):hover {
|
|
|
|
background: hsl(0 0% 90%);
|
2023-08-16 21:57:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.page-item:first-of-type {
|
|
|
|
border-radius: var(--radius-s) 0 0 var(--radius-s);
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-item:last-of-type {
|
|
|
|
border-radius: 0 var(--radius-s) var(--radius-s) 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-item:not(:last-of-type) {
|
|
|
|
border-right-width: 0px;
|
|
|
|
}
|
|
|
|
|
2023-08-17 10:14:33 +02:00
|
|
|
.page-item.active {
|
2023-08-16 21:57:31 +02:00
|
|
|
background-color: var(--accent-color);
|
|
|
|
color: white;
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
2023-08-16 21:09:18 +02:00
|
|
|
|
2023-08-17 10:50:02 +02:00
|
|
|
.pagination-page-info {
|
|
|
|
color: var(--color-muted);
|
|
|
|
}
|
|
|
|
|
|
|
|
.prose p:not(:last-of-type) {
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
2023-08-16 21:57:31 +02:00
|
|
|
/* Index */
|
2023-08-16 21:09:18 +02:00
|
|
|
|
2023-08-16 21:57:31 +02:00
|
|
|
.filters {
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
background-color: white;
|
|
|
|
padding: 0.75rem 0;
|
2023-08-17 00:06:57 +02:00
|
|
|
border-bottom: 1px solid var(--border-color);
|
2023-08-16 19:41:55 +02:00
|
|
|
}
|
|
|
|
|
2023-08-17 12:19:54 +02:00
|
|
|
.filters form {
|
|
|
|
display: flex;
|
|
|
|
gap: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filters [name="search"] {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 20rem;
|
|
|
|
}
|
|
|
|
|
2023-08-17 10:50:02 +02:00
|
|
|
.changesets {
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
}
|
|
|
|
|
2023-08-16 21:09:18 +02:00
|
|
|
.changeset {
|
|
|
|
padding: 1rem 1.5rem;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.changeset-actions {
|
|
|
|
display: flex;
|
2023-08-17 12:19:54 +02:00
|
|
|
column-gap: 1rem;
|
|
|
|
row-gap: 0.5rem;
|
2023-08-16 21:09:18 +02:00
|
|
|
margin-bottom: 0.75rem;
|
2023-08-17 12:19:54 +02:00
|
|
|
flex-wrap: wrap;
|
2023-08-16 21:09:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.changeset-feed-name,
|
|
|
|
.changeset-time,
|
|
|
|
.changeset-action {
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: var(--font-size-s);
|
2023-08-17 12:19:54 +02:00
|
|
|
flex-shrink: 0;
|
2023-08-16 21:09:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.changeset-action {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 0.5em;
|
|
|
|
font-weight: 500;
|
|
|
|
color: var(--color-muted);
|
|
|
|
text-decoration: none;
|
|
|
|
transition: color 200ms;
|
|
|
|
}
|
|
|
|
|
|
|
|
.changeset-title {
|
|
|
|
font-size: var(--font-size-l);
|
|
|
|
}
|
|
|
|
|
2023-08-16 21:57:31 +02:00
|
|
|
.inline-icon {
|
2023-08-16 21:09:18 +02:00
|
|
|
display: inline-block;
|
|
|
|
fill: currentColor;
|
|
|
|
width: 1.25em;
|
2023-08-16 19:41:55 +02:00
|
|
|
}
|
|
|
|
|
2023-08-16 21:09:18 +02:00
|
|
|
.changeset details[open] summary {
|
|
|
|
margin-bottom: 1rem;
|
2023-08-16 19:41:55 +02:00
|
|
|
}
|
2023-08-16 23:01:45 +02:00
|
|
|
|
2023-08-17 00:06:57 +02:00
|
|
|
.changeset table th {
|
2023-08-17 12:42:28 +02:00
|
|
|
font-size: var(--font-size-s);
|
|
|
|
font-weight: 500;
|
|
|
|
color: var(--color-muted);
|
2023-08-17 00:06:57 +02:00
|
|
|
padding-right: 1rem;
|
2023-08-17 12:42:28 +02:00
|
|
|
vertical-align: top;
|
2023-08-17 00:06:57 +02:00
|
|
|
}
|