aboutsummaryrefslogtreecommitdiff
path: root/_scss/imports/scss/_Stage.scss
blob: bed29d9859e7e45b6a6b5638a4f824318252e77c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
// <copyright>
// This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
// No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
// (c) Copyright 2011 Motorola Mobility, Inc.  All Rights Reserved.
// </copyright>

#middleDocArea {
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;

    -moz-box-flex: 1;
    -webkit-box-flex: 1;
    box-flex: 1;

    margin: 1px;
    margin-bottom:3px;

    border-style: solid;
    border-width: 1px;
}

#stageBG {
    width:100%;
    height:100%;
    background-color: red;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    top: 150px;

    z-index: 0;
}

#stageUserContent {
    width:100%;
    height:100%;
    background-color: transparent;
    border : 1px solid $color-body-border;

    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    top: 150px;

    z-index: 1;
}

.global3DSettings {
    -webkit-transform-style: preserve-3d;
    -webkit-transform:perspective(1400) matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1);
}

.perspective3D {
    -webkit-perspective: 1400;
}

#iframeContainer {
    position: absolute;
    top: 0px;
    left: 0px;
    margin: 0px;
    padding: 0px;
    width:100%;
    height:100%;
    overflow:scroll;
    background:$color-stage;
}

#drawingCanvas {
    position: absolute;
    margin: 0px;
    border: none;
    padding: 0px;
    top: 0px;
    left: 0px;
    z-index: 6;
}


#stageCanvas {
    position: absolute;
    margin: 0px;
    border: none;
    padding: 0px;
    top: 0px;
    left: 0px;
    z-index: 5;
}

#layoutCanvas {
    position: absolute;
    margin: 0px;
    border: none;
    padding: 0px;
    top: 0px;
    left: 0px;
    z-index: 4;
}