20 lines
534 B
CSS
20 lines
534 B
CSS
.ascii-wrapper {
|
|
display: flex;
|
|
justify-content: center;
|
|
overflow-x: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
padding: 1rem 0;
|
|
background-color: #000; /* Svart bakgrund på hela raden */
|
|
width: 100%; /* Viktigt */
|
|
}
|
|
|
|
.ascii-wrapper pre {
|
|
font-size: clamp(0.4rem, 1.2vw + 0.2rem, 0.75rem);
|
|
line-height: 1.2;
|
|
margin: 0;
|
|
WIDTH: 100%;
|
|
white-space: pre;
|
|
color: #0f0; /* Valfritt, men ser ofta snyggt ut */
|
|
background: transparent; /* Viktigt så du inte får en mindre bakgrund */
|
|
}
|