69 lines
835 B
CSS
69 lines
835 B
CSS
html {
|
|
background: var(--color-brand-canvas);
|
|
font-family: var(--font-sans-serif);
|
|
font-size: 14px;
|
|
}
|
|
|
|
body {
|
|
max-width: 1024px;
|
|
margin: 1rem auto;
|
|
background: var(--color-brand-text-bg);
|
|
color: var(--color-brand-text-fg);
|
|
padding: 1rem;
|
|
}
|
|
|
|
.delete-button {
|
|
height: 1rem;
|
|
line-height: 0;
|
|
padding: 0.5rem;
|
|
}
|
|
|
|
.nav-logo {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
nav {
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
justify-content: space-between;
|
|
|
|
ul {
|
|
display: flex;
|
|
gap: 8px;
|
|
padding-left: 0;
|
|
|
|
li {
|
|
list-style: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
body.jdd-editor {
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
a {
|
|
color: var(--color-brand-link-fg);
|
|
}
|
|
|
|
.sealious-list__actions {
|
|
display: flex;
|
|
gap: 16px;
|
|
}
|
|
|
|
.jdd-outer-container {
|
|
container-type: inline-size;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
text-wrap: pretty;
|
|
text-wrap: balance;
|
|
}
|