mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
51 lines
739 B
CSS
51 lines
739 B
CSS
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
|
|
line-height: 1.6;
|
|
max-width: 800px;
|
|
margin: 40px auto;
|
|
padding: 0 20px;
|
|
color: #333;
|
|
}
|
|
|
|
header {
|
|
border-bottom: 2px solid #eee;
|
|
margin-bottom: 40px;
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
header h1 {
|
|
margin: 0;
|
|
}
|
|
|
|
header nav ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
display: flex;
|
|
gap: 20px;
|
|
}
|
|
|
|
.post {
|
|
margin-bottom: 60px;
|
|
}
|
|
|
|
.post-meta {
|
|
color: #666;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.fin {
|
|
text-align: center;
|
|
color: #999;
|
|
margin: 40px 0;
|
|
}
|
|
|
|
pre {
|
|
background: #f5f5f5;
|
|
padding: 15px;
|
|
border-radius: 4px;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
code {
|
|
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
|
}
|