Skip to content
This repository was archived by the owner on Jul 28, 2020. It is now read-only.

Commit 04ef1c2

Browse files
authored
Initial commit
1 parent a65ea76 commit 04ef1c2

27 files changed

+12423
-0
lines changed

assets/icon.png

1.69 KB
Loading

css/code-mirror-customized.css

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
/* Copyright 2017 Yuri Faria
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License. */
14+
15+
.CodeMirror {
16+
color: white;
17+
background: #191919;
18+
height: 100%;
19+
font-family: Consolas;
20+
}
21+
22+
.CodeMirror-cursor {
23+
border-left: 1px solid white;
24+
border-right: none;
25+
width: 0;
26+
}
27+
28+
.CodeMirror-gutters {
29+
border-right: 0;
30+
background-color: #191919;
31+
white-space: nowrap;
32+
}
33+
34+
.cm-s-default .cm-comment { color: #a8a8a8; }
35+
.cm-atom { color: #a16a94; }
36+
.cm-s-default .cm-number { color: white; }
37+
38+
.cm-s-default .cm-property, .cm-s-default .cm-attribute { color: #85d61b; }
39+
.cm-s-default .cm-keyword { color: #51b8ba; }
40+
.cm-s-default .cm-string { color: #dbe84e; }
41+
42+
.cm-s-default .cm-variable { color: white; }
43+
.cm-s-default .cm-variable-2 { color: white; }
44+
.cm-s-default .cm-def { color: white; }
45+
.cm-bracket { color: #d6d5d4; }
46+
.cm-tag { color: #db2d20; }
47+
.cm-link { color: #a16a94; }
48+
.cm-error { background: #db2d20; color: #807d7c; }
49+
50+
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar{ width: 0px; }

css/mdl-customized.css

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
/* Copyright 2017 Yuri Faria
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License. */
14+
15+
/* Header */
16+
17+
.mdl-layout__header{
18+
background: white;
19+
z-index: 0;
20+
}
21+
22+
.mdl-layout-title{
23+
color: black;
24+
}
25+
26+
/* MDL Inputs */
27+
28+
.mdl-textfield__input {
29+
border-bottom: 1px solid black;
30+
}
31+
32+
.mdl-textfield__input.is-focused{
33+
border-bottom: 3px solid black;
34+
}
35+
36+
.mdl-textfield__label {
37+
color: black;
38+
}
39+
40+
/* MDL Icons */
41+
42+
i.material-icons{
43+
color: black;
44+
}
45+
46+
/* Others */
47+
48+
h4{
49+
line-height: 0px;
50+
margin: 0px 0 16px;
51+
}

css/start.css

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
/* Copyright 2017 Yuri Faria
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License. */
14+
15+
body{
16+
background-color: #363636;
17+
}
18+
19+
.data-main{
20+
color: white;
21+
width: 100%;
22+
height: 100%;
23+
24+
display: flex;
25+
align-items: center;
26+
justify-content: center;
27+
overflow: auto;
28+
}
29+
30+
#start--background{
31+
width: 100%;
32+
height: 100%;
33+
position: absolute;
34+
background-color: rgba(0, 0, 0, 0.7);
35+
36+
display: none;
37+
align-items: center;
38+
justify-content: center;
39+
}
40+
41+
#start--menu{
42+
width: 75%;
43+
height: 75%;
44+
background-color: white;
45+
46+
display: flex;
47+
align-items: center;
48+
justify-content: center;
49+
}

css/style.css

+90
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
/* Copyright 2017 Yuri Faria
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License. */
14+
15+
body{
16+
background-color: #363636;
17+
}
18+
19+
.data-main{
20+
height: 100%;
21+
padding: 16px;
22+
overflow: hidden;
23+
}
24+
25+
/* Menu */
26+
27+
.menu{
28+
background-color: #262626;
29+
width: 100%;
30+
height: 30px;
31+
color: white;
32+
33+
display: flex;
34+
align-items: center;
35+
}
36+
37+
.menu-item{
38+
padding-left: 8px;
39+
padding-right: 8px;
40+
}
41+
42+
.menu-item:active{
43+
color: gray;
44+
-webkit-animation-delay: 2s;
45+
animation-delay: 2s;
46+
}
47+
48+
/* Screen */
49+
50+
.screen-part{
51+
color: white;
52+
53+
height: calc(100% - 16px);
54+
float: left;
55+
width: 31%;
56+
background-color: #262626;
57+
58+
display: flex;
59+
justify-content: center;
60+
overflow: auto;
61+
}
62+
63+
.view-list--view{
64+
background-color: #424242;
65+
padding: 4px;
66+
}
67+
68+
.tool-list--tool{
69+
background-color: #424242;
70+
padding: 8px;
71+
}
72+
73+
/* Code */
74+
75+
.code-part{
76+
height: calc(100% - 16px);
77+
float: right;
78+
width: 60%;
79+
background: #262626;
80+
overflow: auto;
81+
}
82+
83+
.code-part--code{
84+
height: 100%;
85+
}
86+
87+
.style-col{
88+
padding: 8px;
89+
box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.3);
90+
}

editor/editor.css

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/* Copyright 2017 Yuri Faria
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License. */
14+
15+
#screen{
16+
display: table;
17+
background-color: white;
18+
border: 1px solid black;
19+
}
20+
21+
.screen-row{
22+
display: table-row;
23+
}
24+
25+
.screen-pixel{
26+
display: table-cell;
27+
background-color: black;
28+
width: 6px;
29+
height: 6px;
30+
}

0 commit comments

Comments
 (0)