-
Notifications
You must be signed in to change notification settings - Fork 1
/
editor.css
175 lines (151 loc) · 2.72 KB
/
editor.css
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
body{
margin:0;
padding:0;
line-height: 1.5em;
background-color: #AAA;
}
#maincontainer{
width: 840px; /*Width of main container*/
margin: 0 auto; /*Center container on page*/
background-color: #CCC;
}
#topsection{
background: #EAEAEA;
height: 30px; /*Height of top section*/
}
#topsection h1{
margin: 0;
padding-top: 15px;
}
#contentwrapper{
float: left;
width: 100%;
}
#contentcolumn{
margin: 0 190px 0 180px; /*Margins for content column. Should be "0 RightColumnWidth 0 LeftColumnWidth*/
}
#leftcolumn{
float: left;
width: 180px; /*Width of left column in pixel*/
margin-left: -840px; /*Set margin to that of -(MainContainerWidth)*/
}
#rightcolumn{
float: left;
width: 190px; /*Width of right column*/
margin-left: -190px; /*Set left margin to -(RightColumnWidth)*/
}
#footer{
clear: left;
width: 100%;
text-align: center;
padding: 4px 0;
}
.innertube{
margin: 10px; /*Margins for inner DIV inside each column (to provide padding)*/
margin-top: 0;
}
/******************************************************************************/
#myCanvas {
}
#Center{
margin: 0 190px 0 180px;
background-color: #AAA;
padding: 4px;
}
#Environment{
width: 130px;
background-color:#999;
font-size: 10px;
}
#Environment table{
width: 100%;
}
#Environment td{
padding: 0px;
}
#Environment input{
margin: 2px;
}
#Properties{
background-color:#FFF;
font-family: Arial, Helvetica, sans-serif;
right: 0;
width: 150px;
border: 1px solid;
}
#StatusBar{
font-family: Arial, Helvetica, sans-serif;
background-color: #FFF;
text-align: right;
}
table {
border-collapse: collapse;
}
table, th, td {
border: 1px solid #AAA;
}
td {
height: 12px;
vertical-align: bottom;
padding-left: 2px;
padding-right: 2px;
}
td input{
width: 100%;
border: 0px;
text-align: right;
}
td input[type=button]{
text-align: center;
}
#Environment input{
padding: 0px;
}
#SelectedColor, #SelectedBGColor{
background-color: #000;
}
#SelectedColor {
color: #FFF;
}
#Color{
display: inline-block;
}
div.color-palete{
display: inline-block;
width: 10px;
height: 10px;
}
/* Old on page style sheet */
html, body{
min-height: 100% !important;
}
#thisCanvas canvas {
position: absolute;
display: block;
height: 100%;
width: 100%;
}
#canvas_options {
background-color: #FAFAFA;
}
.mdl-layout__header {
color: #000;
}
.mdl-layout__header a {
color: rgb(63,81,181);
}
.mdl-layout__header-row .mdl-navigation__link {
color: #000;
}
.mdl-checkbox {
width: initial;
}
.mdl-menu {
padding: 0px;
}
.mdl-layout__header .mdl-layout__drawer-button {
color: #000;
}
.mdl-layout__drawer-button .material-icons {
padding: 12px 0px;
}