Skip to content

Commit 8e6f154

Browse files
author
Rafael Staib
committed
Add more text
1 parent 78112a4 commit 8e6f154

File tree

31 files changed

+651
-339
lines changed

31 files changed

+651
-339
lines changed

JSteps.v11.suo

22 KB
Binary file not shown.

JSteps/App_Start/BundleConfig.cs

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,34 @@ public class BundleConfig
88
// For more information on Bundling, visit http://go.microsoft.com/fwlink/?LinkId=254725
99
public static void RegisterBundles(BundleCollection bundles)
1010
{
11-
bundles.Add(new ScriptBundle("~/Scripts/Base")
11+
bundles.Add(new ScriptBundle("~/Scripts/html5shiv")
12+
.Include("~/Scripts/html5shiv.js"));
13+
14+
bundles.Add(GetBaseScripts("~/Scripts/Base"));
15+
bundles.Add(GetBaseScripts("~/Scripts/Extended")
16+
.Include("~/Scripts/prettify.js"));
17+
18+
bundles.Add(GetBaseStyles("~/Content/Base"));
19+
bundles.Add(GetBaseStyles("~/Content/Extended")
20+
.Include("~/Content/prettify.css"));
21+
}
22+
23+
private static Bundle GetBaseScripts(string virtualPath)
24+
{
25+
return new ScriptBundle(virtualPath)
1226
.Include("~/Scripts/jquery-{version}.js")
1327
.Include("~/Scripts/bootstrap.js")
1428
.Include("~/Scripts/viewport-fix-mobile-ie10.js")
1529
.Include("~/Scripts/social.js")
16-
.Include("~/Scripts/tracking.js")
17-
.Include("~/Scripts/prettify.js"));
18-
19-
bundles.Add(new ScriptBundle("~/Scripts/html5shiv")
20-
.Include("~/Scripts/html5shiv.js"));
30+
.Include("~/Scripts/tracking.js");
31+
}
2132

22-
bundles.Add(new StyleBundle("~/Content/Base")
33+
private static Bundle GetBaseStyles(string virtualPath)
34+
{
35+
return new StyleBundle(virtualPath)
2336
.Include("~/Content/bootstrap.css")
2437
.Include("~/Content/viewport-fix-mobile-ie10.css")
25-
.Include("~/Content/custom.css")
26-
.Include("~/Content/prettify.css"));
38+
.Include("~/Content/custom.css");
2739
}
2840
}
2941
}

JSteps/Content/custom.css

Lines changed: 75 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,18 @@ body
4141
line-height: 1.5em;
4242
}
4343

44+
a
45+
{
46+
color: #2184be;
47+
}
48+
49+
a:hover,
50+
a:active
51+
{
52+
color: #193954;
53+
text-decoration: none;
54+
}
55+
4456
h1, h2, h3, h4, h5, h6
4557
{
4658
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
@@ -185,62 +197,69 @@ ol > li, ul > li
185197

186198
.sitewrapper > .content
187199
{
188-
padding: 2.857em 0 1.429em;
189200
}
190201

191-
.sitewrapper > .content #lefthand-nav
192-
{
193-
padding: 0;
194-
}
195-
196-
.sitewrapper > .content #lefthand-nav.affix
202+
.sitewrapper > .content #lefthand
197203
{
198-
top: 7.143em;
199-
width: 270px;
204+
padding: 2.857em 0 0;
200205
}
201206

202-
.sitewrapper > .content #lefthand-nav > li > a
207+
.sitewrapper > .content #lefthand-nav
203208
{
204-
background: #eee;
205-
color: #2184be;
206-
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
207-
margin: 0;
208-
padding: 0.741em 1.429em;
209-
210-
-webkit-text-shadow: none;
211-
text-shadow: none;
209+
padding: 0;
212210
}
213-
214-
.sitewrapper > .content #lefthand-nav > li > a:hover,
215-
.sitewrapper > .content #lefthand-nav > li > a:active,
216-
.sitewrapper > .content #lefthand-nav > li.active > a,
217-
.sitewrapper > .content #lefthand-nav > li.active > a:hover,
218-
.sitewrapper > .content #lefthand-nav > li.active > a:active
211+
212+
.sitewrapper > .content #lefthand-nav.affix
219213
{
220-
background: #2184be;
221-
color: #fff;
214+
top: 7.143em;
215+
width: 270px;
222216
}
223217

224-
.sitewrapper > .content #lefthand-nav > li.active > a
225-
{
226-
font-weight: 700;
227-
}
218+
.sitewrapper > .content #lefthand-nav > li > a
219+
{
220+
background: #eee;
221+
color: #2184be;
222+
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
223+
margin: 0;
224+
padding: 0.741em 1.429em;
225+
226+
-webkit-text-shadow: none;
227+
text-shadow: none;
228+
}
229+
230+
.sitewrapper > .content #lefthand-nav > li > a:hover,
231+
.sitewrapper > .content #lefthand-nav > li > a:active,
232+
.sitewrapper > .content #lefthand-nav > li.active > a,
233+
.sitewrapper > .content #lefthand-nav > li.active > a:hover,
234+
.sitewrapper > .content #lefthand-nav > li.active > a:active
235+
{
236+
background: #2184be;
237+
color: #fff;
238+
}
239+
240+
.sitewrapper > .content #lefthand-nav > li.active > a
241+
{
242+
font-weight: 700;
243+
}
228244

229245
.sitewrapper > .content .main
230246
{
231-
padding-right: 2.857em;
247+
padding-bottom: 2.857em;
232248
}
233249

234250
.sitewrapper > .content .main > section
235251
{
236-
padding-bottom: 2.857em;
252+
margin-top: -1.429em;
253+
padding: 2.857em 2.857em 0 0;
237254
}
238255

239256
.sitewrapper > .content .main > section > h2.page-header
240257
{
241258
font-size: 2.857em;
242259
font-weight: 700;
243260
line-height: 1.5em;
261+
margin: 0.5em 0 0.75em;
262+
padding: 0 0 0.25em;
244263
}
245264

246265
.sitewrapper > .content .main > section > p.lead
@@ -254,10 +273,18 @@ ol > li, ul > li
254273
font-weight: 700;
255274
line-height: 1.5em;
256275
}
276+
277+
.sitewrapper > .content .main > section h4
278+
{
279+
font-size: 1.429em;
280+
font-weight: 700;
281+
line-height: 1.5em;
282+
}
257283

258284

259285
.sitewrapper > .content.startpage
260286
{
287+
padding-top: 2.857em;
261288
text-align: center;
262289
}
263290

@@ -337,6 +364,7 @@ body > footer
337364
.navbar > .navbar-inner nav
338365
{
339366
float: right;
367+
line-height: 1em;
340368
margin: 0 0.714em;
341369
}
342370

@@ -348,14 +376,15 @@ body > footer
348376
.navbar > .navbar-inner nav li
349377
{
350378
display: inline-block;
379+
line-height: 1em;
351380
}
352381

353382
.navbar > .navbar-inner nav a
354383
{
355384
color: #fff;
356385
display: block;
357386
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
358-
padding: 1.429em 1.071em;
387+
padding: 1.643em 1.071em;
359388
text-decoration: none;
360389
}
361390

@@ -441,15 +470,10 @@ body > footer
441470
padding-right: 1.429em;
442471
}
443472

444-
.sitewrapper > .content.startpage .box > h2
445-
{
446-
font-size: 2em;
447-
}
448-
449473
.sitewrapper > .content #lefthand-nav
450474
{
451475
width: auto;
452-
margin: 0 20% 1.429em;
476+
margin: 0 20%;
453477
}
454478

455479
.sitewrapper > .content #lefthand-nav.affix
@@ -459,6 +483,16 @@ body > footer
459483
top: 0;
460484
}
461485

486+
.sitewrapper > .content .main > section
487+
{
488+
padding-right: 0;
489+
}
490+
491+
.sitewrapper > .content.startpage .box > h2
492+
{
493+
font-size: 2em;
494+
}
495+
462496
.navbar
463497
{
464498
margin: 0;
@@ -491,10 +525,10 @@ body > footer
491525
}
492526
}
493527

494-
@media (max-width: 479px)
528+
@media (max-width: 480px)
495529
{
496530
.sitewrapper > .content #lefthand-nav
497531
{
498-
margin: 0 10% 1.429em;
532+
margin: 0 10%;
499533
}
500534
}

JSteps/Content/prettify.css

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,30 @@
1-
.pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee}
1+
.com { color: #93a1a1; }
2+
.lit { color: #195f91; }
3+
.pun, .opn, .clo { color: #93a1a1; }
4+
.fun { color: #dc322f; }
5+
.str, .atv { color: #D14; }
6+
.kwd, .prettyprint .tag { color: #1e347b; }
7+
.typ, .atn, .dec, .var { color: teal; }
8+
.pln { color: #48484c; }
9+
10+
.prettyprint {
11+
padding: 8px;
12+
background-color: #f7f7f9;
13+
border: 1px solid #e1e1e8;
14+
}
15+
.prettyprint.linenums {
16+
-webkit-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;
17+
-moz-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;
18+
box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0;
19+
}
20+
21+
/* Specify class=linenums on a pre to get line numbering */
22+
ol.linenums {
23+
margin: 0 0 0 33px; /* IE indents via margin-left */
24+
}
25+
ol.linenums li {
26+
padding-left: 12px;
27+
color: #bebec5;
28+
line-height: 20px;
29+
text-shadow: 0 1px 0 #fff;
30+
}

JSteps/Properties/PublishProfiles/FTP Cloud.pubxml.user

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ by editing this MSBuild file. In order to learn more about this please visit htt
1414
<publishTime>08/12/2013 09:58:21</publishTime>
1515
</File>
1616
<File Include="bin/App_global.asax.compiled">
17-
<publishTime>08/12/2013 10:06:29</publishTime>
17+
<publishTime>08/12/2013 15:50:25</publishTime>
1818
</File>
1919
<File Include="bin/App_global.asax.dll">
20-
<publishTime>08/12/2013 10:06:29</publishTime>
20+
<publishTime>08/12/2013 15:50:25</publishTime>
2121
</File>
2222
<File Include="bin/EntityFramework.dll">
2323
<publishTime>08/12/2013 09:58:20</publishTime>
2424
</File>
2525
<File Include="bin/JSteps.dll">
26-
<publishTime>08/12/2013 10:05:38</publishTime>
26+
<publishTime>08/12/2013 15:23:53</publishTime>
2727
</File>
2828
<File Include="bin/Microsoft.Web.Infrastructure.dll">
2929
<publishTime>08/12/2013 09:58:20</publishTime>
@@ -80,7 +80,7 @@ by editing this MSBuild file. In order to learn more about this please visit htt
8080
<publishTime>08/12/2013 09:58:17</publishTime>
8181
</File>
8282
<File Include="Content/custom.css">
83-
<publishTime>08/12/2013 10:04:56</publishTime>
83+
<publishTime>08/12/2013 15:47:55</publishTime>
8484
</File>
8585
<File Include="Content/images/bg.jpg">
8686
<publishTime>08/12/2013 09:58:17</publishTime>
@@ -107,7 +107,7 @@ by editing this MSBuild file. In order to learn more about this please visit htt
107107
<publishTime>08/12/2013 09:58:17</publishTime>
108108
</File>
109109
<File Include="Content/prettify.css">
110-
<publishTime>08/12/2013 09:58:17</publishTime>
110+
<publishTime>08/12/2013 13:19:17</publishTime>
111111
</File>
112112
<File Include="Content/viewport-fix-mobile-ie10.css">
113113
<publishTime>08/12/2013 09:58:17</publishTime>
@@ -119,7 +119,7 @@ by editing this MSBuild file. In order to learn more about this please visit htt
119119
<publishTime>08/12/2013 09:58:20</publishTime>
120120
</File>
121121
<File Include="PrecompiledApp.config">
122-
<publishTime>08/12/2013 10:06:27</publishTime>
122+
<publishTime>08/12/2013 15:50:22</publishTime>
123123
</File>
124124
<File Include="Scripts/bootstrap.js">
125125
<publishTime>08/12/2013 09:58:17</publishTime>
@@ -137,7 +137,7 @@ by editing this MSBuild file. In order to learn more about this please visit htt
137137
<publishTime>08/12/2013 09:58:17</publishTime>
138138
</File>
139139
<File Include="Scripts/prettify.js">
140-
<publishTime>08/12/2013 09:58:17</publishTime>
140+
<publishTime>08/12/2013 13:19:33</publishTime>
141141
</File>
142142
<File Include="Scripts/social.js">
143143
<publishTime>08/12/2013 09:58:17</publishTime>
@@ -152,7 +152,7 @@ by editing this MSBuild file. In order to learn more about this please visit htt
152152
<publishTime>08/12/2013 09:58:17</publishTime>
153153
</File>
154154
<File Include="Views/GettingStarted/Index.cshtml">
155-
<publishTime>08/12/2013 10:01:52</publishTime>
155+
<publishTime>08/12/2013 15:19:21</publishTime>
156156
</File>
157157
<File Include="Views/Home/Index.cshtml">
158158
<publishTime>08/12/2013 09:58:17</publishTime>
@@ -161,7 +161,7 @@ by editing this MSBuild file. In order to learn more about this please visit htt
161161
<publishTime>08/12/2013 09:58:17</publishTime>
162162
</File>
163163
<File Include="Views/Shared/_Layout.cshtml">
164-
<publishTime>08/12/2013 09:58:17</publishTime>
164+
<publishTime>08/12/2013 14:39:49</publishTime>
165165
</File>
166166
<File Include="Views/Web.config">
167167
<publishTime>08/12/2013 09:58:17</publishTime>

0 commit comments

Comments
 (0)