53 lines
884 B
SCSS
53 lines
884 B
SCSS
@import url('https://fonts.googleapis.com/css?family=Raleway|Source+Code+Pro');
|
|
$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;
|
|
font-family: "Source Code Pro", monospace;
|
|
}
|
|
|
|
.centered {
|
|
max-width: 500px;
|
|
display: block;
|
|
margin: auto;
|
|
}
|
|
|
|
.shadow {
|
|
box-shadow: $default-shadow;
|
|
}
|
|
|
|
.error {
|
|
padding: 10px;
|
|
color: white;
|
|
background-color: tomato;
|
|
border-radius: 2px;
|
|
box-sizing: border-box;
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
}
|