wbzyl-rails3-tutorial 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. data/README.markdown +14 -0
  2. data/Rakefile +34 -0
  3. data/TODO +6 -0
  4. data/VERSION.yml +4 -0
  5. data/config.ru +15 -0
  6. data/lib/config.ru +12 -0
  7. data/lib/public/images/bradypus.jpg +0 -0
  8. data/lib/public/images/leniwce_controller.png +0 -0
  9. data/lib/public/images/leniwce_controller.svg +284 -0
  10. data/lib/public/images/leniwiec.png +0 -0
  11. data/lib/public/images/leniwiec.svg +284 -0
  12. data/lib/public/images/mvc.png +0 -0
  13. data/lib/public/images/mvc.svg +243 -0
  14. data/lib/public/images/pablo_picasso.jpg +0 -0
  15. data/lib/public/images/pastie.png +0 -0
  16. data/lib/public/images/rails3.png +0 -0
  17. data/lib/public/images/rails3.svg +125 -0
  18. data/lib/public/images/the_thinker.jpg +0 -0
  19. data/lib/public/javascripts/ruby3.js +1 -0
  20. data/lib/public/stylesheets/icons/doc.png +0 -0
  21. data/lib/public/stylesheets/icons/email.png +0 -0
  22. data/lib/public/stylesheets/icons/external.png +0 -0
  23. data/lib/public/stylesheets/icons/feed.png +0 -0
  24. data/lib/public/stylesheets/icons/im.png +0 -0
  25. data/lib/public/stylesheets/icons/pdf.png +0 -0
  26. data/lib/public/stylesheets/icons/visited.png +0 -0
  27. data/lib/public/stylesheets/icons/xls.png +0 -0
  28. data/lib/public/stylesheets/ie.css +27 -0
  29. data/lib/public/stylesheets/print.css +30 -0
  30. data/lib/public/stylesheets/rails3.css +139 -0
  31. data/lib/public/stylesheets/screen.css +249 -0
  32. data/lib/public/stylesheets/src/grid.png +0 -0
  33. data/lib/public/stylesheets/uv.css +121 -0
  34. data/lib/rails3-tutorial.rb +72 -0
  35. data/lib/views/answers.rdiscount +0 -0
  36. data/lib/views/authentication.rdiscount +10 -0
  37. data/lib/views/blog.rdiscount +365 -0
  38. data/lib/views/caching.rdiscount +4 -0
  39. data/lib/views/exercises.rdiscount +67 -0
  40. data/lib/views/fortune.rdiscount +592 -0
  41. data/lib/views/intro.rdiscount +68 -0
  42. data/lib/views/layout.rdiscount +38 -0
  43. data/lib/views/main.rdiscount +32 -0
  44. data/lib/views/pastie.rdiscount +371 -0
  45. data/lib/views/store.rdiscount +99 -0
  46. data/lib/views/todo.rdiscount +245 -0
  47. data/rails3-tutorial.gemspec +101 -0
  48. metadata +168 -0
@@ -0,0 +1,139 @@
1
+ /* hack for RDiscount comments */
2
+
3
+ h4 {
4
+ display: none;
5
+ }
6
+
7
+ html {
8
+ /* http://www.hicksdesign.co.uk/journal/forcing-scrollbars-now-even-better */
9
+ height: 100%;
10
+ margin-bottom: 1px;
11
+
12
+ background-color: #E3E6F7;
13
+ margin: 24px auto 24px 44px;
14
+ }
15
+
16
+ body {
17
+ font-family: "DejaVu Sans", "PakTypeNaqsh", "Trebuchet MS", sans-serif ;
18
+ line-height: 28px;
19
+ }
20
+
21
+ #header {
22
+ padding-top: 24px;
23
+ padding-bottom: 0px;
24
+ background-color: #FCE5C0;
25
+ border: solid #888;
26
+ border-width: 1px 1px 0px 1px;
27
+ }
28
+
29
+ #links {
30
+ float: right;
31
+ }
32
+
33
+ #links a {
34
+ text-decoration: none;
35
+ color: #A00;
36
+ }
37
+
38
+ .container {
39
+ border: 1px solid #888;
40
+ background-color: #FEF9F0;
41
+ }
42
+
43
+ a[href^="http:"], a[href^="mailto:"], a[href^="http:"]:visited,
44
+ a[href$=".pdf"], a[href$=".doc"], a[href$=".xls"], a[href$=".rss"],
45
+ a[href$=".rdf"], a[href^="aim:"] {
46
+ padding:2px 16px 2px 0;
47
+ }
48
+
49
+ h1 {
50
+ font-weight: bold;
51
+ font-size: 160%;
52
+ font-family: "DejaVu Sans", "PakTypeNaqsh", serif;
53
+ color: #A00;
54
+ padding-top: 16px;
55
+ padding-bottom: 16px;
56
+ background-color: #FFE9FD;
57
+ width: 869px;
58
+ margin-left: -44px;
59
+ padding-left: 44px;
60
+ }
61
+
62
+ blockquote {
63
+ font: normal 14/1.5 "DejaVu Sans", PakTypeNaqsh, sans-serif;
64
+ width: 297px;
65
+ margin-top: 6px;
66
+ margin-left: 528px;
67
+ padding: 18px 22px 18px 22px;
68
+ position: absolute;
69
+ background: rgb(252, 229, 192);
70
+ -moz-border-radius: 4px;
71
+ color: #800;
72
+ }
73
+
74
+ blockquote img {
75
+ margin: 0 auto 12px auto;
76
+ display: block;
77
+ }
78
+
79
+ blockquote p.author {
80
+ margin-top: -1em;
81
+ padding-right: 44px;
82
+ color: #800;
83
+ font-style: italic;
84
+ text-align: right;
85
+ }
86
+
87
+ h2 {
88
+ font-size: 140%;
89
+ padding-bottom: 6px;
90
+ border-bottom: 2px dotted #A00;
91
+ color: #A00;
92
+ }
93
+
94
+ h3 {
95
+ color: #A00;
96
+ }
97
+
98
+ pre.dawn {
99
+ margin-left: -50px;
100
+ padding: 8px 0 8px 39px;
101
+ border-left: 11px solid rgb(237,0,86);
102
+ }
103
+
104
+ pre code, li pre {
105
+ margin: 0;
106
+ padding: 0;
107
+ border: none;
108
+ }
109
+
110
+ code {
111
+ margin: 0 2px;
112
+ padding: 0.06em 0.125em;
113
+ border: 1px solid #403B33;
114
+ }
115
+
116
+ caption {
117
+ text-align: right;
118
+ }
119
+
120
+ pre, code {
121
+ font-family: "DejaVu Sans Mono", PakTypeNaqsh, monospace;
122
+ }
123
+
124
+ /* tabele */
125
+
126
+ thead th {
127
+ background-color: #ADD8C7;
128
+ }
129
+ li ul {
130
+ margin-bottom: 1.5em;
131
+ }
132
+
133
+ .table1 {
134
+ background-color: #EB7C7C;
135
+ }
136
+
137
+ .table2 {
138
+ background-color: #ECB39F;
139
+ }
@@ -0,0 +1,249 @@
1
+ /* -----------------------------------------------------------------------
2
+
3
+
4
+ Blueprint CSS Framework 0.8
5
+ http://blueprintcss.org
6
+
7
+ * Copyright (c) 2007-Present. See LICENSE for more info.
8
+ * See README for instructions on how to use Blueprint.
9
+ * For credits and origins, see AUTHORS.
10
+ * This is a compressed file. See the sources in the 'src' directory.
11
+
12
+ ----------------------------------------------------------------------- */
13
+
14
+ /* reset.css */
15
+ html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {margin:0;padding:0;border:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline;}
16
+ body {line-height:1.5;}
17
+ table {border-collapse:separate;border-spacing:0;}
18
+ caption, th, td {text-align:left;font-weight:normal;}
19
+ table, td, th {vertical-align:middle;}
20
+ blockquote:before, blockquote:after, q:before, q:after {content:"";}
21
+ blockquote, q {quotes:"" "";}
22
+ a img {border:none;}
23
+
24
+ /* typography.css */
25
+ body {font-size:75%;color:#222;background:#fff;font-family:"Helvetica Neue", Arial, Helvetica, sans-serif;}
26
+ h1, h2, h3, h4, h5, h6 {font-weight:normal;color:#111;}
27
+ h1 {font-size:3em;line-height:1;margin-bottom:0.5em;}
28
+ h2 {font-size:2em;margin-bottom:0.75em;}
29
+ h3 {font-size:1.5em;line-height:1;margin-bottom:1em;}
30
+ h4 {font-size:1.2em;line-height:1.25;margin-bottom:1.25em;}
31
+ h5 {font-size:1em;font-weight:bold;margin-bottom:1.5em;}
32
+ h6 {font-size:1em;font-weight:bold;}
33
+ h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {margin:0;}
34
+ p {margin:0 0 1.5em;}
35
+ p img.left {float:left;margin:1.5em 1.5em 1.5em 0;padding:0;}
36
+ p img.right {float:right;margin:1.5em 0 1.5em 1.5em;}
37
+ a:focus, a:hover {color:#000;}
38
+ a {color:#009;text-decoration:underline;}
39
+ blockquote {margin:1.5em;color:#666;font-style:italic;}
40
+ strong {font-weight:bold;}
41
+ em, dfn {font-style:italic;}
42
+ dfn {font-weight:bold;}
43
+ sup, sub {line-height:0;}
44
+ abbr, acronym {border-bottom:1px dotted #666;}
45
+ address {margin:0 0 1.5em;font-style:italic;}
46
+ del {color:#666;}
47
+ pre {margin:1.5em 0;white-space:pre;}
48
+ pre, code, tt {font:1em 'andale mono', 'lucida console', monospace;line-height:1.5;}
49
+ li ul, li ol {margin:0 1.5em;}
50
+ ul, ol {margin:0 1.5em 1.5em 1.5em;}
51
+ ul {list-style-type:disc;}
52
+ ol {list-style-type:decimal;}
53
+ dl {margin:0 0 1.5em 0;}
54
+ dl dt {font-weight:bold;}
55
+ dd {margin-left:1.5em;}
56
+ table {margin-bottom:1.4em;width:100%;}
57
+ th {font-weight:bold;}
58
+ thead th {background:#c3d9ff;}
59
+ th, td, caption {padding:4px 10px 4px 5px;}
60
+ tr.even td {background:#e5ecf9;}
61
+ tfoot {font-style:italic;}
62
+ caption {background:#eee;}
63
+ .small {font-size:.8em;margin-bottom:1.875em;line-height:1.875em;}
64
+ .large {font-size:1.2em;line-height:2.5em;margin-bottom:1.25em;}
65
+ .hide {display:none;}
66
+ .quiet {color:#666;}
67
+ .loud {color:#000;}
68
+ .highlight {background:#ff0;}
69
+ .added {background:#060;color:#fff;}
70
+ .removed {background:#900;color:#fff;}
71
+ .first {margin-left:0;padding-left:0;}
72
+ .last {margin-right:0;padding-right:0;}
73
+ .top {margin-top:0;padding-top:0;}
74
+ .bottom {margin-bottom:0;padding-bottom:0;}
75
+
76
+ /* forms.css */
77
+ label {font-weight:bold;}
78
+ fieldset {padding:1.4em;margin:0 0 1.5em 0;border:1px solid #ccc;}
79
+ legend {font-weight:bold;font-size:1.2em;}
80
+ input.text, input.title, textarea, select {margin:0.5em 0;border:1px solid #bbb;}
81
+ input.text:focus, input.title:focus, textarea:focus, select:focus {border:1px solid #666;}
82
+ input.text, input.title {width:300px;padding:5px;}
83
+ input.title {font-size:1.5em;}
84
+ textarea {width:390px;height:250px;padding:5px;}
85
+ .error, .notice, .success {padding:.8em;margin-bottom:1em;border:2px solid #ddd;}
86
+ .error {background:#FBE3E4;color:#8a1f11;border-color:#FBC2C4;}
87
+ .notice {background:#FFF6BF;color:#514721;border-color:#FFD324;}
88
+ .success {background:#E6EFC2;color:#264409;border-color:#C6D880;}
89
+ .error a {color:#8a1f11;}
90
+ .notice a {color:#514721;}
91
+ .success a {color:#264409;}
92
+
93
+ /* grid.css */
94
+ .container {width:913px;margin:0 auto;}
95
+ .showgrid {background:url(src/grid.png);}
96
+ .column, div.span-1, div.span-2, div.span-3, div.span-4, div.span-5, div.span-6, div.span-7, div.span-8, div.span-9, div.span-10, div.span-11, div.span-12, div.span-13, div.span-14, div.span-15, div.span-16, div.span-17, div.span-18, div.span-19, div.span-20, div.span-21 {float:left;margin-right:11px;}
97
+ .last, div.last {margin-right:0;}
98
+ .span-1 {width:33px;}
99
+ .span-2 {width:77px;}
100
+ .span-3 {width:121px;}
101
+ .span-4 {width:165px;}
102
+ .span-5 {width:209px;}
103
+ .span-6 {width:253px;}
104
+ .span-7 {width:297px;}
105
+ .span-8 {width:341px;}
106
+ .span-9 {width:385px;}
107
+ .span-10 {width:429px;}
108
+ .span-11 {width:473px;}
109
+ .span-12 {width:517px;}
110
+ .span-13 {width:561px;}
111
+ .span-14 {width:605px;}
112
+ .span-15 {width:649px;}
113
+ .span-16 {width:693px;}
114
+ .span-17 {width:737px;}
115
+ .span-18 {width:781px;}
116
+ .span-19 {width:825px;}
117
+ .span-20 {width:869px;}
118
+ .span-21, div.span-21 {width:913px;margin:0;}
119
+ input.span-1, textarea.span-1, input.span-2, textarea.span-2, input.span-3, textarea.span-3, input.span-4, textarea.span-4, input.span-5, textarea.span-5, input.span-6, textarea.span-6, input.span-7, textarea.span-7, input.span-8, textarea.span-8, input.span-9, textarea.span-9, input.span-10, textarea.span-10, input.span-11, textarea.span-11, input.span-12, textarea.span-12, input.span-13, textarea.span-13, input.span-14, textarea.span-14, input.span-15, textarea.span-15, input.span-16, textarea.span-16, input.span-17, textarea.span-17, input.span-18, textarea.span-18, input.span-19, textarea.span-19, input.span-20, textarea.span-20, input.span-21, textarea.span-21 {border-left-width:1px!important;border-right-width:1px!important;padding-left:5px!important;padding-right:5px!important;}
120
+ input.span-1, textarea.span-1 {width:21px!important;}
121
+ input.span-2, textarea.span-2 {width:65px!important;}
122
+ input.span-3, textarea.span-3 {width:109px!important;}
123
+ input.span-4, textarea.span-4 {width:153px!important;}
124
+ input.span-5, textarea.span-5 {width:197px!important;}
125
+ input.span-6, textarea.span-6 {width:241px!important;}
126
+ input.span-7, textarea.span-7 {width:285px!important;}
127
+ input.span-8, textarea.span-8 {width:329px!important;}
128
+ input.span-9, textarea.span-9 {width:373px!important;}
129
+ input.span-10, textarea.span-10 {width:417px!important;}
130
+ input.span-11, textarea.span-11 {width:461px!important;}
131
+ input.span-12, textarea.span-12 {width:505px!important;}
132
+ input.span-13, textarea.span-13 {width:549px!important;}
133
+ input.span-14, textarea.span-14 {width:593px!important;}
134
+ input.span-15, textarea.span-15 {width:637px!important;}
135
+ input.span-16, textarea.span-16 {width:681px!important;}
136
+ input.span-17, textarea.span-17 {width:725px!important;}
137
+ input.span-18, textarea.span-18 {width:769px!important;}
138
+ input.span-19, textarea.span-19 {width:813px!important;}
139
+ input.span-20, textarea.span-20 {width:857px!important;}
140
+ input.span-21, textarea.span-21 {width:901px!important;}
141
+ .append-1 {padding-right:44px;}
142
+ .append-2 {padding-right:88px;}
143
+ .append-3 {padding-right:132px;}
144
+ .append-4 {padding-right:176px;}
145
+ .append-5 {padding-right:220px;}
146
+ .append-6 {padding-right:264px;}
147
+ .append-7 {padding-right:308px;}
148
+ .append-8 {padding-right:352px;}
149
+ .append-9 {padding-right:396px;}
150
+ .append-10 {padding-right:440px;}
151
+ .append-11 {padding-right:484px;}
152
+ .append-12 {padding-right:528px;}
153
+ .append-13 {padding-right:572px;}
154
+ .append-14 {padding-right:616px;}
155
+ .append-15 {padding-right:660px;}
156
+ .append-16 {padding-right:704px;}
157
+ .append-17 {padding-right:748px;}
158
+ .append-18 {padding-right:792px;}
159
+ .append-19 {padding-right:836px;}
160
+ .append-20 {padding-right:880px;}
161
+ .prepend-1 {padding-left:44px;}
162
+ .prepend-2 {padding-left:88px;}
163
+ .prepend-3 {padding-left:132px;}
164
+ .prepend-4 {padding-left:176px;}
165
+ .prepend-5 {padding-left:220px;}
166
+ .prepend-6 {padding-left:264px;}
167
+ .prepend-7 {padding-left:308px;}
168
+ .prepend-8 {padding-left:352px;}
169
+ .prepend-9 {padding-left:396px;}
170
+ .prepend-10 {padding-left:440px;}
171
+ .prepend-11 {padding-left:484px;}
172
+ .prepend-12 {padding-left:528px;}
173
+ .prepend-13 {padding-left:572px;}
174
+ .prepend-14 {padding-left:616px;}
175
+ .prepend-15 {padding-left:660px;}
176
+ .prepend-16 {padding-left:704px;}
177
+ .prepend-17 {padding-left:748px;}
178
+ .prepend-18 {padding-left:792px;}
179
+ .prepend-19 {padding-left:836px;}
180
+ .prepend-20 {padding-left:880px;}
181
+ div.border {padding-right:4px;margin-right:5px;border-right:1px solid #eee;}
182
+ div.colborder {padding-right:27px;margin-right:27px;border-right:1px solid #eee;}
183
+ .pull-1 {margin-left:-44px;}
184
+ .pull-2 {margin-left:-88px;}
185
+ .pull-3 {margin-left:-132px;}
186
+ .pull-4 {margin-left:-176px;}
187
+ .pull-5 {margin-left:-220px;}
188
+ .pull-6 {margin-left:-264px;}
189
+ .pull-7 {margin-left:-308px;}
190
+ .pull-8 {margin-left:-352px;}
191
+ .pull-9 {margin-left:-396px;}
192
+ .pull-10 {margin-left:-440px;}
193
+ .pull-11 {margin-left:-484px;}
194
+ .pull-12 {margin-left:-528px;}
195
+ .pull-13 {margin-left:-572px;}
196
+ .pull-14 {margin-left:-616px;}
197
+ .pull-15 {margin-left:-660px;}
198
+ .pull-16 {margin-left:-704px;}
199
+ .pull-17 {margin-left:-748px;}
200
+ .pull-18 {margin-left:-792px;}
201
+ .pull-19 {margin-left:-836px;}
202
+ .pull-20 {margin-left:-880px;}
203
+ .pull-21 {margin-left:-924px;}
204
+ .pull-1, .pull-2, .pull-3, .pull-4, .pull-5, .pull-6, .pull-7, .pull-8, .pull-9, .pull-10, .pull-11, .pull-12, .pull-13, .pull-14, .pull-15, .pull-16, .pull-17, .pull-18, .pull-19, .pull-20, .pull-21 {float:left;position:relative;}
205
+ .push-1 {margin:0 -44px 1.5em 44px;}
206
+ .push-2 {margin:0 -88px 1.5em 88px;}
207
+ .push-3 {margin:0 -132px 1.5em 132px;}
208
+ .push-4 {margin:0 -176px 1.5em 176px;}
209
+ .push-5 {margin:0 -220px 1.5em 220px;}
210
+ .push-6 {margin:0 -264px 1.5em 264px;}
211
+ .push-7 {margin:0 -308px 1.5em 308px;}
212
+ .push-8 {margin:0 -352px 1.5em 352px;}
213
+ .push-9 {margin:0 -396px 1.5em 396px;}
214
+ .push-10 {margin:0 -440px 1.5em 440px;}
215
+ .push-11 {margin:0 -484px 1.5em 484px;}
216
+ .push-12 {margin:0 -528px 1.5em 528px;}
217
+ .push-13 {margin:0 -572px 1.5em 572px;}
218
+ .push-14 {margin:0 -616px 1.5em 616px;}
219
+ .push-15 {margin:0 -660px 1.5em 660px;}
220
+ .push-16 {margin:0 -704px 1.5em 704px;}
221
+ .push-17 {margin:0 -748px 1.5em 748px;}
222
+ .push-18 {margin:0 -792px 1.5em 792px;}
223
+ .push-19 {margin:0 -836px 1.5em 836px;}
224
+ .push-20 {margin:0 -880px 1.5em 880px;}
225
+ .push-21 {margin:0 -924px 1.5em 924px;}
226
+ .push-1, .push-2, .push-3, .push-4, .push-5, .push-6, .push-7, .push-8, .push-9, .push-10, .push-11, .push-12, .push-13, .push-14, .push-15, .push-16, .push-17, .push-18, .push-19, .push-20, .push-21 {float:right;position:relative;}
227
+ .prepend-top {margin-top:1.5em;}
228
+ .append-bottom {margin-bottom:1.5em;}
229
+ .box {padding:1.5em;margin-bottom:1.5em;background:#E5ECF9;}
230
+ hr {background:#ddd;color:#ddd;clear:both;float:none;width:100%;height:.1em;margin:0 0 1.45em;border:none;}
231
+ hr.space {background:#fff;color:#fff;}
232
+ .clearfix:after, .container:after {content:"\0020";display:block;height:0;clear:both;visibility:hidden;overflow:hidden;}
233
+ .clearfix, .container {display:block;}
234
+ .clear {clear:both;}
235
+
236
+ /* link-icons */
237
+ body a.noicon {background:transparent none !important;padding:0 !important;margin:0 !important;}
238
+ a[href^="http:"], a[href^="mailto:"], a[href^="http:"]:visited, a[href$=".pdf"], a[href$=".doc"], a[href$=".xls"], a[href$=".rss"], a[href$=".rdf"], a[href^="aim:"] {padding:2px 22px 2px 0;margin:-2px 0;background-repeat:no-repeat;background-position:right center;}
239
+ a[href^="http:"] {background-image:url(icons/external.png);}
240
+ a[href^="mailto:"] {background-image:url(icons/email.png);}
241
+ a[href^="http:"]:visited {background-image:url(icons/visited.png);}
242
+ a[href$=".pdf"] {background-image:url(icons/pdf.png);}
243
+ a[href$=".doc"] {background-image:url(icons/doc.png);}
244
+ a[href$=".xls"] {background-image:url(icons/xls.png);}
245
+ a[href$=".rss"], a[href$=".rdf"] {background-image:url(icons/feed.png);}
246
+ a[href^="aim:"] {background-image:url(icons/im.png);}
247
+
248
+ /* tutorials */
249
+ body {font-size:16px;font-family:"Helvetica Neue", Arial, Helvetica, sans-serif;}
@@ -0,0 +1,121 @@
1
+ pre.dawn .MetaSeparator {
2
+ font-weight: bold;
3
+ background-color: #DCDCDC;
4
+ color: #19356D;
5
+ }
6
+ pre.dawn .SupportVariable {
7
+ color: #234A97;
8
+ }
9
+ pre.dawn .Constant {
10
+ font-weight: bold;
11
+ color: #811F24;
12
+ }
13
+ pre.dawn .EmbeddedSource {
14
+ background-color: #829AC2;
15
+ }
16
+ pre.dawn .StringRegexpConstantCharacterEscape {
17
+ font-weight: bold;
18
+ color: #811F24;
19
+ }
20
+ pre.dawn .Support {
21
+ color: #691C97;
22
+ }
23
+ pre.dawn .MarkupList {
24
+ color: #693A17;
25
+ }
26
+ pre.dawn .Storage {
27
+ color: #A71D5D;
28
+ font-style: italic;
29
+ }
30
+ pre.dawn .line-numbers {
31
+ background-color: #7496CF;
32
+ color: #000000;
33
+ }
34
+ pre.dawn .StringConstant {
35
+ font-weight: bold;
36
+ color: #696969;
37
+ }
38
+ pre.dawn .MarkupUnderline {
39
+ text-decoration: underline;
40
+ color: #080808;
41
+ }
42
+ pre.dawn .MarkupHeading {
43
+ font-weight: bold;
44
+ color: #19356D;
45
+ }
46
+ pre.dawn .SupportConstant {
47
+ color: #B4371F;
48
+ }
49
+ pre.dawn .MarkupQuote {
50
+ background-color: #C5C5C5;
51
+ color: #0B6125;
52
+ font-style: italic;
53
+ }
54
+ pre.dawn .StringRegexpSpecial {
55
+ font-weight: bold;
56
+ color: #CF5628;
57
+ }
58
+ pre.dawn .InvalidIllegal {
59
+ background-color: #B52A1D;
60
+ color: #F8F8F8;
61
+ font-style: italic;
62
+ }
63
+ pre.dawn .MarkupDeleted {
64
+ color: #B52A1D;
65
+ }
66
+ pre.dawn .MarkupRaw {
67
+ background-color: #C5C5C5;
68
+ color: #234A97;
69
+ }
70
+ pre.dawn .SupportFunction {
71
+ color: #693A17;
72
+ }
73
+ pre.dawn .PunctuationSeparator {
74
+ color: #794938;
75
+ }
76
+ pre.dawn .StringRegexp {
77
+ color: #CF5628;
78
+ }
79
+ pre.dawn .StringEmbeddedSource {
80
+ background-color: #829AC2;
81
+ color: #080808;
82
+ }
83
+ pre.dawn .MarkupLink {
84
+ color: #234A97;
85
+ font-style: italic;
86
+ }
87
+ pre.dawn .MarkupBold {
88
+ font-weight: bold;
89
+ color: #080808;
90
+ }
91
+ pre.dawn .StringVariable {
92
+ color: #234A97;
93
+ }
94
+ pre.dawn .String {
95
+ color: #0B6125;
96
+ }
97
+ pre.dawn .Keyword {
98
+ color: #794938;
99
+ }
100
+ pre.dawn {
101
+ /* background-color: #F5F5F5; */
102
+ color: #080808;
103
+ }
104
+ pre.dawn .MarkupItalic {
105
+ color: #080808;
106
+ font-style: italic;
107
+ }
108
+ pre.dawn .InvalidDeprecated {
109
+ font-weight: bold;
110
+ color: #B52A1D;
111
+ }
112
+ pre.dawn .Variable {
113
+ color: #234A97;
114
+ }
115
+ pre.dawn .Entity {
116
+ color: #BF4F24;
117
+ }
118
+ pre.dawn .Comment {
119
+ color: #5A525F;
120
+ font-style: italic;
121
+ }