40 lines
612 B
CSS
40 lines
612 B
CSS
|
/*
|
||
|
* This file is licensed under the CC-0 license.
|
||
|
*/
|
||
|
html, body {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
background-color: #333;
|
||
|
color: #eaeaea; }
|
||
|
|
||
|
h1, p {
|
||
|
font-family: helvetica; }
|
||
|
|
||
|
.terminal-area {
|
||
|
text-align: center;
|
||
|
position: fixed;
|
||
|
top: 40%;
|
||
|
left: 50%;
|
||
|
/* bring your own prefixes */
|
||
|
transform: translate(-50%, -50%);
|
||
|
font-size: 15px; }
|
||
|
.terminal-area .js-terminal {
|
||
|
background-color: #202020;
|
||
|
color: #cecece; }
|
||
|
|
||
|
.red {
|
||
|
color: #f88; }
|
||
|
|
||
|
.blue {
|
||
|
color: #88f; }
|
||
|
|
||
|
.green {
|
||
|
color: #8f8; }
|
||
|
|
||
|
.yellow {
|
||
|
color: #ff8; }
|
||
|
|
||
|
/*# sourceMappingURL=custom.css.map */
|