47 lines
749 B
CSS
47 lines
749 B
CSS
.caution {
|
|
background-color: #fff3cd;
|
|
border-color: #ffeeba;
|
|
color: #856404;
|
|
border: 1px solid transparent;
|
|
border-radius: 4px;
|
|
padding: 1rem;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.caution::before {
|
|
content: "⚠ ";
|
|
Cautio
|
|
margin-right: 8px;
|
|
}
|
|
|
|
body {
|
|
font-family: system-ui, -apple-system, sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
}
|
|
|
|
code {
|
|
background-color: #f5f5f5;
|
|
border-radius: 4px;
|
|
overflow-x: auto;
|
|
font-family: monospace;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
color: #222;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
img {
|
|
width: 100%;
|
|
max-width: 30em;
|
|
}
|
|
|
|
p {
|
|
margin-bottom: 1rem;
|
|
}
|