viewport.css 699 Bytes
Newer Older
1 2 3
html,body {
    margin: 0px;
    padding: 0px;
Joel Martin's avatar
Joel Martin committed
4 5 6 7 8
    width: 100%;
    height: 100%;
}

.flex-layout {
9 10 11
    width: 100%;
    height: 100%;

Joel Martin's avatar
Joel Martin committed
12 13 14 15
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
16

Joel Martin's avatar
Joel Martin committed
17 18 19 20
    box-orient: vertical;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
21 22 23 24 25

    box-align: stretch;
    -webkit-box-align: stretch;
    -moz-box-align: stretch;
    -ms-box-align: stretch;
Joel Martin's avatar
Joel Martin committed
26 27 28 29 30 31 32 33
}
.flex-box {
    box-flex: 1;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-box-flex: 1;
}

34 35 36 37 38 39 40 41 42 43
.container {
    margin: 0px;
    padding: 0px;
}

.canvas {
    position: absolute;
    border-style: dotted;
    border-width: 1px;
}