2019-02-01 20:48:06 -08:00
|
|
|
@import url('https://fonts.googleapis.com/css?family=Raleway|Source+Code+Pro');
|
2019-02-01 20:39:34 -08:00
|
|
|
$default-shadow: 0px 0px 5px rgba(0, 0, 0, .25);
|
|
|
|
|
|
|
|
body {
|
|
|
|
background-color: rgb(247, 248, 249);
|
|
|
|
font-family: Raleway, sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2 {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.logo-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.logo-pane {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-basis: 50%;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 500px;
|
|
|
|
height: 500px;
|
|
|
|
border: none;
|
|
|
|
padding: 10px;
|
2019-02-01 20:48:06 -08:00
|
|
|
font-family: "Source Code Pro", monospace;
|
2019-02-01 20:39:34 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
textarea, canvas {
|
|
|
|
display: block;
|
|
|
|
margin: auto;
|
|
|
|
box-shadow: $default-shadow;
|
|
|
|
}
|