MiniLogo/minilogo.scss

38 lines
615 B
SCSS
Raw Normal View History

2019-02-01 20:39:34 -08:00
@import url('https://fonts.googleapis.com/css?family=Raleway');
$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;
}
textarea, canvas {
display: block;
margin: auto;
box-shadow: $default-shadow;
}