Packages

A minimal Elixir application that serves a real terminal in the browser using Plug and Cowboy.

Current section

Files

Jump to
exterm priv static terminal.css
Raw

priv/static/terminal.css

body {
font-family: monospace;
background-color: #1e1e1e;
color: #ffffff;
margin: 0;
padding: 0;
height: 100vh;
}
#terminal {
width: 100%;
height: 100%;
box-sizing: border-box;
overflow: hidden;
}