17 lines
662 B
CSS
17 lines
662 B
CSS
.code-block {
|
|
display: block;
|
|
white-space: pre-wrap; /* Allows the code to wrap within the container */
|
|
word-wrap: break-word; /* Ensures long words break to fit the container */
|
|
max-width: 100%; /* Ensures the code block doesn't exceed the container's width */
|
|
padding: 10px; /* Adds padding for better readability */
|
|
background-color: #f5f5f5; /* Light gray background for contrast */
|
|
border: 1px solid #ddd; /* Subtle border to distinguish the code block */
|
|
border-radius: 5px; /* Rounded corners for aesthetics */
|
|
overflow-x: auto; /* Adds horizontal scroll if necessary */
|
|
}
|
|
|
|
.code-block .comment {
|
|
text-indent: 8em;
|
|
color: #408080;
|
|
}
|