mirror of
https://github.com/atom/atom.git
synced 2026-01-23 13:58:08 -05:00
20 lines
228 B
HTML
20 lines
228 B
HTML
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#editor {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
font: 18px Inconsolada, Monaco, Courier;
|
|
}
|
|
</style>
|
|
|
|
<div id="editor"></div>
|
|
|
|
<script>
|
|
require('atomicity');
|
|
</script>
|