Last active
August 26, 2019 20:21
-
-
Save iambenkay/5e1333c4d20135ea98722984fd6179fc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
body, | |
html { | |
height: 100%; | |
} | |
#editor { | |
height: 100%; | |
} | |
body > div:first-child { | |
height: 70%; | |
display: flex; | |
flex-direction: column; | |
} | |
body > div:nth-child(2) { | |
height: 30%; | |
display: flex; | |
flex-direction: column; | |
} | |
nav { | |
font-family: "Ubuntu Mono", monospace; | |
display: flex; | |
justify-content: space-between; | |
align-items: center; | |
} | |
#console { | |
height: 100%; | |
margin: 0; | |
overflow-y: auto; | |
font-family: "Ubuntu Mono", monospace; | |
} | |
[action] { | |
cursor: pointer; | |
} | |
nav > span { | |
display: block; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment