Files
image-editor/main.css
T
Sofie KedvikandGitHub b0888a58cd Responsive (#1) make editor responsive
* Make canvas responsive

* made the editor to appear in the middle
2017-05-16 13:06:36 +02:00

41 lines
765 B
CSS

@font-face {
font-family: breuer;
font-style: normal;
font-weight: normal;
src: url('/fonts/breuertext-regular-webfont.woff') format('woff'),
url('/fonts/breuertext-regular-webfont.ttf') format('truetype');
}
@font-face {
font-family: breuerMedium;
src: url('/fonts/breuertext-medium-webfont.woff') format('woff'),
url('/fonts/breuertext-medium-webfont.ttf') format('truetype');
}
* {
font-family: breuer;
}
#container {
background: #fff;
text-align:center;
margin: 0;
width: 100%;
}
#wrapper {
margin: 0 auto;
}
.canvas-container {
margin: 0 auto;
width: 100% !important;
}
canvas {
margin: 0 auto;
position: relative !important;
max-width: 100% !important;
height: auto !important;
}