28 lines
466 B
CSS
28 lines
466 B
CSS
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-content: flex-start;
|
|
justify-content: center;
|
|
height: 100%;
|
|
gap: 1rem;
|
|
width: 100%;
|
|
background: var(--font-color);
|
|
}
|
|
|
|
.content div {
|
|
background: var(--background-color);
|
|
font-size: 100%;
|
|
}
|
|
|
|
.content .code {
|
|
flex-grow: 1;
|
|
font-size: 6em;
|
|
}
|
|
.content .message {
|
|
flex-grow: 1;
|
|
font-size: 4em;
|
|
}
|
|
.content .description {
|
|
flex-grow: 1;
|
|
font-size: 2em;
|
|
} |