61 lines
819 B
CSS
61 lines
819 B
CSS
body {
|
|
max-width: 980px;
|
|
margin: 32px auto;
|
|
padding: 0 20px;
|
|
font-family: system-ui, sans-serif;
|
|
background: #f6f4ef;
|
|
color: #191919;
|
|
}
|
|
|
|
nav {
|
|
display: flex;
|
|
gap: 12px;
|
|
align-items: center;
|
|
margin-bottom: 28px;
|
|
}
|
|
|
|
nav form {
|
|
margin: 0;
|
|
}
|
|
|
|
main, article, section {
|
|
background: #fff;
|
|
border: 1px solid #ddd5c7;
|
|
border-radius: 14px;
|
|
padding: 18px;
|
|
margin-bottom: 18px;
|
|
}
|
|
|
|
article.private, article.draft {
|
|
border-style: dashed;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
input, textarea, select, button {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
padding: 10px;
|
|
border: 1px solid #c9c1b5;
|
|
border-radius: 10px;
|
|
font: inherit;
|
|
}
|
|
|
|
button {
|
|
cursor: pointer;
|
|
background: #191919;
|
|
color: #fff;
|
|
}
|
|
|
|
.meta {
|
|
color: #666;
|
|
font-size: 14px;
|
|
}
|
|
|
|
pre {
|
|
white-space: pre-wrap;
|
|
}
|