Skip to content

Commit 20c812c

Browse files
author
Andy Chung
committed
got rid of red lists, made things work in webkit
1 parent f4aeb67 commit 20c812c

2 files changed

Lines changed: 14 additions & 6 deletions

File tree

dist/main.css

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -286,13 +286,16 @@ span.sectionMark {
286286

287287
#content ul,
288288
#content ol {
289-
border-left: 1px solid #ff5959;
290-
color: #ff5959;
289+
/* border-left: 1px solid #333; */
290+
color: #333;
291291
font-size: 14px;
292292
list-style-position: outside;
293293
margin: 7px 0 21px 0;
294-
padding: 0 0 0 28px;
295-
font-family: "Inconsolata", Andale Mono, Monaco, Monospace;
294+
/* padding: 0 0 0 28px; */
295+
}
296+
297+
#content ul {
298+
font-style: italic;
296299
}
297300

298301
#content ol {
@@ -355,6 +358,7 @@ span.sectionMark {
355358
background-repeat: no-repeat;
356359
background-position: left -437px;
357360
padding-left: 18px;
361+
font-style: normal;
358362
}
359363

360364
#content #directory h1 {
@@ -378,6 +382,8 @@ span.sectionMark {
378382
background-color: transparent;
379383
border: none;
380384
-moz-box-shadow: none;
385+
font-style: normal;
386+
font-family: "Inconsolata", Andale Mono, Monaco, Monospace;
381387
}
382388

383389
#content ul.index li {
@@ -422,9 +428,11 @@ span.sectionMark {
422428
*/
423429

424430
#content h4 a.download {
425-
-moz-border-radius: 5px 5px 5px 5px;
431+
-webkit-border-radius: 5px;
432+
-moz-border-radius: 5px;
426433
background-color: #F2F2F2;
427434
background-image: url("i/sprite.png"), -moz-linear-gradient(center top , #FAFAFA 0%, #F2F2F2 100%);
435+
background-image: url("i/sprite.png"), -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fafafa), color-stop(100%, #f2f2f2));
428436
background-position: 7px -58px, center center;
429437
background-repeat: no-repeat, no-repeat;
430438
border: 1px solid #CCCCCC;

docs/optimization.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ <h1>RequireJS Optimization Tool</h1>
1414

1515
<span class="note">Note: RequireJS comes with an optimization tool that does the following</span>
1616

17-
<ul>
17+
<ul class="serif">
1818
<li>Combines related scripts together into build layers and minifies them via Google Closure.</li>
1919
<li>Optimizes CSS by inlining CSS files referenced by @import and removing comments.</li>
2020
<li>Can add require.js and any of its plugins to any optimized build layer.</li>

0 commit comments

Comments
 (0)