25 lines
292 B
CSS
25 lines
292 B
CSS
body {
|
|
font-family: sans-serif;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
color: #333;
|
|
}
|
|
|
|
ul {
|
|
list-style-type: disc;
|
|
margin-left: 1.5em;
|
|
}
|
|
|
|
code {
|
|
background-color: #f0f0f0;
|
|
padding: 2px 5px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
} |