mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-28 13:39:44 +07:00
18 lines
182 B
CSS
18 lines
182 B
CSS
body {
|
|
font-family: monospace;
|
|
font-size: 10pt;
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
}
|
|
|
|
div {
|
|
padding: 8px;
|
|
flex: 1 100%;
|
|
}
|
|
|
|
#output-panel,
|
|
#input-panel {
|
|
flex: 1 0;
|
|
}
|
|
|