mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
51 lines
571 B
CSS
51 lines
571 B
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
button {
|
|
margin: 0;
|
|
}
|
|
|
|
.CodeMirror {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.CodeMirror-scroll {
|
|
height: auto;
|
|
overflow-y: hidden;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
#editor {
|
|
position: absolute;
|
|
top: 29px;
|
|
bottom: 24px;
|
|
left: 0;
|
|
right: 0;
|
|
background: #262626;
|
|
}
|
|
|
|
.info {
|
|
font-family: monospace;
|
|
white-space: nowrap;
|
|
position: absolute;
|
|
bottom: 0;
|
|
background: #eee;
|
|
padding: 2px;
|
|
height: 20px;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
|
|
.info label {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.buttons {
|
|
padding: 2px;
|
|
height: 25px;
|
|
}
|