Skip to content

Commit e26c5a3

Browse files
committed
working version
1 parent cea7d09 commit e26c5a3

File tree

10 files changed

+17
-19
lines changed

10 files changed

+17
-19
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules
22
npm-debug.log
3+
notes.md

lib/atom/subscriptions.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/components/theme/colors.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/reducers/console-log/console-log.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/reducers/run-tests/concat-tests.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/reducers/run-tests/test-result.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/reducers/tasks/tasks.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

menus/cr.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
"submenu": [{
55
"label": "CodeRoad",
66
"submenu": [{
7-
"label": "Start",
8-
"command": "cr-viewer:start"
9-
}, {
107
"label": "Toggle",
118
"command": "cr-viewer:toggle"
129
}]

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"main": "./lib/atom/main",
44
"version": "0.4.0",
55
"description": "Interactive tutorial plugin for Atom",
6-
"author": "Shawn McKay <shawn.j.mckay@gmail.com",
6+
"author": "Shawn McKay <shawn.j.mckay@gmail.com>",
77
"keywords": [
88
"atom",
99
"coderoad"

styles/styles.less

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@
22
width: 400px;
33
height: 100%;
44
overflow: scroll;
5+
font-family: @font-family;
6+
font-size: @font-size;
57
}
8+
69
pre {
710
margin-bottom: 10px !important;
11+
padding-bottom: 0;
812
}
9-
.cr {
10-
&-account {}
11-
}
12-
.cr-alert.success {
13+
14+
.cr-alert.pass {
1315
button {
1416
span {
1517
color: rgb(115, 201, 144);
@@ -23,11 +25,13 @@ pre {
2325
}
2426
}
2527
}
28+
2629
.cr {
2730
.cr-menu-bar {
2831
z-index: 999 !important;
2932
}
3033
}
34+
3135
.cr {
3236
&-chapter {
3337
border: 2px solid red; // testing
@@ -41,6 +45,7 @@ pre {
4145
text-align: center;
4246
}
4347
}
48+
4449
.cr-page {
4550
position: relative;
4651
width: 400px;
@@ -62,7 +67,7 @@ pre {
6267
}
6368
}
6469
.cr-tasks {
65-
margin-bottom: 50px;
70+
margin-bottom: 100px;
6671
.cr-task {
6772
padding: 10px;
6873
position: relative;
@@ -76,14 +81,15 @@ pre {
7681
left: 45px;
7782
}
7883
&-description {
79-
display: inline-block;
84+
background-color: inherit;
8085
padding-top: -10px;
8186
padding-left: 55px;
8287
font-size: 14px;
8388
line-height: 1.6;
8489
}
8590
}
8691
}
92+
8793
.cr {
8894
&-progress {
8995
.chapter {
@@ -105,6 +111,7 @@ pre {
105111
}
106112
}
107113
}
114+
108115
.cr {
109116
&-projects {
110117
height: 100%;
@@ -132,6 +139,3 @@ pre {
132139
padding: 10px;
133140
}
134141
}
135-
.cr {
136-
&--downloads {}
137-
}

0 commit comments

Comments
 (0)