zhangdocs 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (70) hide show
  1. package/.bin/idoc.js +65 -0
  2. package/.github/FUNDING.yml +9 -0
  3. package/README.md +108 -0
  4. package/index.js +56 -0
  5. package/lib/build.js +126 -0
  6. package/lib/clean.js +43 -0
  7. package/lib/copy.js +215 -0
  8. package/lib/deploy.js +24 -0
  9. package/lib/file.js +148 -0
  10. package/lib/imgPath.js +20 -0
  11. package/lib/init.js +166 -0
  12. package/lib/menu_json.js +36 -0
  13. package/lib/menu_update.js +73 -0
  14. package/lib/nav.js +108 -0
  15. package/lib/pdf.js +66 -0
  16. package/lib/pk.json +13 -0
  17. package/lib/stylus.js +36 -0
  18. package/lib/theme.js +57 -0
  19. package/lib/toc.js +119 -0
  20. package/lib/watch.js +76 -0
  21. package/lib/whoami.js +23 -0
  22. package/package.json +41 -0
  23. package/theme/default/footer.ejs +3 -0
  24. package/theme/default/gitignore +22 -0
  25. package/theme/default/head.ejs +17 -0
  26. package/theme/default/header.ejs +34 -0
  27. package/theme/default/layout.ejs +16 -0
  28. package/theme/default/source/css/_partial/head_nav.styl +239 -0
  29. package/theme/default/source/css/_partial/highlight.styl +103 -0
  30. package/theme/default/source/css/_partial/markdown.styl +121 -0
  31. package/theme/default/source/css/_partial/reset.styl +101 -0
  32. package/theme/default/source/css/_partial/variables.styl +10 -0
  33. package/theme/default/source/css/main.styl +156 -0
  34. package/theme/default/source/img/forkgithub.png +0 -0
  35. package/theme/doc/footer.ejs +25 -0
  36. package/theme/doc/gitignore +22 -0
  37. package/theme/doc/head.ejs +17 -0
  38. package/theme/doc/header.ejs +34 -0
  39. package/theme/doc/layout.ejs +16 -0
  40. package/theme/doc/source/css/_partial/head_nav.styl +239 -0
  41. package/theme/doc/source/css/_partial/highlight.styl +103 -0
  42. package/theme/doc/source/css/_partial/markdown.styl +121 -0
  43. package/theme/doc/source/css/_partial/reset.styl +101 -0
  44. package/theme/doc/source/css/_partial/variables.styl +10 -0
  45. package/theme/doc/source/css/main.styl +164 -0
  46. package/theme/doc/source/img/forkgithub.png +0 -0
  47. package/theme/handbook/footer.ejs +3 -0
  48. package/theme/handbook/gitignore +22 -0
  49. package/theme/handbook/head.ejs +10 -0
  50. package/theme/handbook/header.ejs +14 -0
  51. package/theme/handbook/layout.ejs +15 -0
  52. package/theme/handbook/source/css/_partial/highlight.styl +103 -0
  53. package/theme/handbook/source/css/_partial/markdown.styl +120 -0
  54. package/theme/handbook/source/css/_partial/reset.styl +101 -0
  55. package/theme/handbook/source/css/_partial/variables.styl +9 -0
  56. package/theme/handbook/source/css/main.styl +175 -0
  57. package/theme/handbook/source/img/background.png +0 -0
  58. package/theme/handbook/source/img/forkgithub.png +0 -0
  59. package/theme/resume/footer.ejs +2 -0
  60. package/theme/resume/gitignore +22 -0
  61. package/theme/resume/head.ejs +16 -0
  62. package/theme/resume/layout.ejs +27 -0
  63. package/theme/resume/source/css/_partial/highlight.styl +103 -0
  64. package/theme/resume/source/css/_partial/markdown.styl +137 -0
  65. package/theme/resume/source/css/_partial/reset.styl +101 -0
  66. package/theme/resume/source/css/_partial/variables.styl +10 -0
  67. package/theme/resume/source/css/main.styl +50 -0
  68. package/theme/resume/source/js/jquery.2.1.4.min.js +5 -0
  69. package/theme/resume/source/js/pdfmake.js +17 -0
  70. package/theme/resume/source/js/vfs_fonts.js +1 -0
@@ -0,0 +1,175 @@
1
+ @import('_partial/reset.styl');
2
+ // CSS reset
3
+ global-reset()
4
+ reset-html5()
5
+
6
+ @import('_partial/variables.styl');
7
+ @import('_partial/markdown.styl');
8
+ @import('_partial/highlight.styl');
9
+
10
+ *
11
+ box-sizing: border-box
12
+ body
13
+ background:#F6F6F6 url(../img/background.png)
14
+ body,html
15
+ height:100%
16
+ font-family:Helvetica, arial, nimbussansl, liberationsans, freesans, clean, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol"
17
+ .logo
18
+ float left
19
+ padding: 0 20px 0 0
20
+ font-size: 24px
21
+ img
22
+ vertical-align: middle
23
+ margin: -4px 0 0 0
24
+
25
+ .nav
26
+ background-image: linear-gradient(to bottom,#fff 0,#f8f8f8 100%)
27
+ z-index: 2
28
+ height: 41px
29
+ line-height: 42px
30
+ border-bottom: 1px solid #C4C4C4
31
+ padding: 0 0 0 20px
32
+ position: fixed
33
+ width: 100%
34
+ @media mq-mobile
35
+ height initial
36
+ position: initial
37
+ ul
38
+ list-style: none
39
+ position: relative
40
+ display: inline-table
41
+ @media mq-mobile
42
+ display inline-flex
43
+ ul
44
+ display: none
45
+ background: #D1D1D1
46
+ border-radius: 0px
47
+ padding: 0
48
+ position: absolute
49
+ top: 100%
50
+ z-index 9
51
+ li.active
52
+ a
53
+ background: #4b545f
54
+ color:#fff
55
+ line-height:29px
56
+ height:29px
57
+ li
58
+ float: none
59
+ border-bottom: 1px solid #C8C8C8
60
+ position: relative
61
+ a:hover
62
+ background: #4b545f
63
+ color:#fff
64
+ a
65
+ color: #fff
66
+ line-height: 29px
67
+ white-space:nowrap
68
+ word-break:keep-all
69
+ ul
70
+ position: absolute
71
+ left: 100%
72
+ top:0
73
+ li
74
+ float: left
75
+ line-height: 40px
76
+ a
77
+ display: block
78
+ color: #757575
79
+ text-decoration: none
80
+ padding: 0 15px
81
+ li:hover
82
+ background: #E1E1E1
83
+ background-image: linear-gradient(#CCCCCC 0%,#E7E7E7 40%)
84
+ a
85
+ color: #333
86
+ li.active
87
+ a
88
+ background-image: linear-gradient(#E8E8E8 0%,#e7e7e7 100%)
89
+ color:#A00000
90
+ height: 40px
91
+ ul li:hover > ul
92
+ display: block
93
+ ul:after
94
+ content: ""
95
+ clear: both
96
+ display: block
97
+ .warpper
98
+ width: 100%
99
+ padding: 41px 0 0 0
100
+ height: 100%
101
+ overflow: auto
102
+ @media mq-mobile
103
+ padding-top 0
104
+ .page-toc,.markdown-body
105
+ height:100%
106
+ .markdown-body
107
+ margin-left:tocwidth
108
+ overflow: auto
109
+ @media mq-mobile
110
+ margin-left:0
111
+ .page-toc
112
+ width:200px
113
+ height:calc(100% - 41px)
114
+ position: fixed
115
+ width:tocwidth
116
+ border-right: 1px solid #bbb
117
+ box-shadow: 0 0 20px #ccc
118
+ background:#fff
119
+ padding: 10px
120
+ overflow-y: auto
121
+ overflow-x: hidden
122
+ font-family: "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, sans-serif !important;
123
+ @media mq-mobile
124
+ display none
125
+ ul
126
+ list-style-type: none
127
+ margin: 0
128
+ a
129
+ display: block
130
+ padding: 3px 0
131
+ color: #151515
132
+ text-decoration: none
133
+ font-weight:bold
134
+ line-height: 16px
135
+ font-size: 14px
136
+ &:hover
137
+ color:red
138
+ text-decoration: underline
139
+ li
140
+ padding-left:3px
141
+ text-align:left
142
+ ul
143
+ margin:0 0 0 10px
144
+ list-style-type: square
145
+ padding: 0 0 0 9px
146
+ li
147
+ a
148
+ font-size:90%
149
+ font-weight:normal
150
+ border-bottom:0
151
+ .copyright
152
+ border-top: 1px dashed #E9E9E9
153
+ padding: 6px 0 5px 2px
154
+ margin: 32px 0 0 0
155
+ line-height: 16px
156
+ font-size: 12px
157
+ color: #dfdfdf
158
+ a
159
+ color: #D6DDF8
160
+ text-decoration: underline
161
+ &:hover
162
+ color:#333
163
+
164
+ .forkgithub
165
+ position: absolute
166
+ z-index: 2
167
+ right: 0
168
+ background:url("../img/forkgithub.png") 14px -15px no-repeat
169
+ @media mq-mobile
170
+ display none
171
+ a
172
+ display:block
173
+ width:149px
174
+ height:149px
175
+
@@ -0,0 +1,2 @@
1
+ </body>
2
+ </html>
@@ -0,0 +1,22 @@
1
+ *.iml
2
+ .idea/
3
+ .ipr
4
+ .iws
5
+ *~
6
+ ~*
7
+ *.diff
8
+ *.patch
9
+ *.bak
10
+ .DS_Store
11
+ Thumbs.db
12
+ .project
13
+ .*proj
14
+ .svn/
15
+ *.swp
16
+ *.swo
17
+ *.pyc
18
+ *.pyo
19
+ .build
20
+ node_modules
21
+ .cache
22
+ idoc-theme-*/
@@ -0,0 +1,16 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1">
6
+ <title><%=title%></title>
7
+ <%if(pkg.idoc&&pkg.idoc.logo){ var iconurl = pkg.idoc.logo %>
8
+ <%if(/\.png$/.test(iconurl)){%>
9
+ <link rel="shortcut icon" href="<%=relative_path%><%=pkg.idoc.logo%>" type="image/x-png">
10
+ <%}else if(/\.ico$/.test(iconurl)){%>
11
+ <link rel="shortcut icon" href="<%=relative_path%><%=pkg.idoc.logo%>" type="image/x-icon">
12
+ <%}%>
13
+ <%}%>
14
+ <link rel="stylesheet" type="text/css" href="<%=relative_path%>static/css/main.css">
15
+ </head>
16
+ <body>
@@ -0,0 +1,27 @@
1
+ <% include head.ejs %>
2
+
3
+ <header class="header">
4
+ <div class="container">
5
+ <div class="vertical">
6
+ <% if(pkg.idoc && pkg.idoc.name ){ %>
7
+ <h1><%=pkg.idoc.name%></h1>
8
+ <% } %>
9
+ <% if(pkg.idoc && pkg.idoc.baseinfo ){ %>
10
+ <pre><%=pkg.idoc.baseinfo%></pre>
11
+ <% } %>
12
+ </div>
13
+ </div>
14
+ </header>
15
+
16
+ <div class="container">
17
+
18
+ <div class="content markdown-body">
19
+ <%- markdown_html %>
20
+ <div class="copyright">Powered by <a href="https://github.com/jaywcjlove/idoc" target="_blank">idoc</a>. Dependence <a href="https://nodejs.org">Node.js</a> run.</div>
21
+ </div>
22
+
23
+ </div>
24
+
25
+
26
+
27
+ <% include footer.ejs %>
@@ -0,0 +1,103 @@
1
+ /*
2
+ github.com style (c) Vasily Polovnyov <vast@whiteants.net>
3
+ */
4
+ .hljs
5
+ display: block
6
+ overflow-x: auto
7
+ padding: 0.5em
8
+ color: #333
9
+ background: #f8f8f8
10
+ -webkit-text-size-adjust: none
11
+
12
+ .hljs-comment,
13
+ .diff .hljs-header
14
+ color: #969896
15
+ font-size: 90%
16
+
17
+ .hljs-keyword,
18
+ .css .rule .hljs-keyword,
19
+ .hljs-winutils,
20
+ .nginx .hljs-title,
21
+ .hljs-subst,
22
+ .hljs-request,
23
+ .hljs-status
24
+ color: #a71d5d
25
+ font-weight: bold
26
+
27
+ .hljs-number,
28
+ .hljs-hexcolor,
29
+ .ruby .hljs-constant
30
+ color: #008080
31
+
32
+ .hljs-string,
33
+ .hljs-tag .hljs-value,
34
+ .hljs-doctag,
35
+ .tex .hljs-formula
36
+ color: #183691
37
+
38
+ .hljs-title,
39
+ .hljs-id,
40
+ .scss .hljs-preprocessor
41
+ color: #900
42
+ font-weight: bold
43
+
44
+ .hljs-list .hljs-keyword,
45
+ .hljs-subst
46
+ font-weight: normal
47
+
48
+ .hljs-class .hljs-title,
49
+ .hljs-type,
50
+ .vhdl .hljs-literal,
51
+ .tex .hljs-command
52
+ color: #458
53
+ font-weight: bold
54
+
55
+ .hljs-tag,
56
+ .hljs-tag .hljs-title,
57
+ .hljs-rule .hljs-property,
58
+ .django .hljs-tag .hljs-keyword
59
+ color: #000080
60
+ font-weight: normal
61
+
62
+ .hljs-attribute,
63
+ .hljs-variable,
64
+ .lisp .hljs-body,
65
+ .hljs-name
66
+ color: #008080
67
+
68
+ .hljs-regexp
69
+ color: #009926
70
+
71
+ .hljs-symbol,
72
+ .ruby .hljs-symbol .hljs-string,
73
+ .lisp .hljs-keyword,
74
+ .clojure .hljs-keyword,
75
+ .scheme .hljs-keyword,
76
+ .tex .hljs-special,
77
+ .hljs-prompt
78
+ color: #990073
79
+
80
+ .hljs-built_in
81
+ color: #0086b3
82
+
83
+ .hljs-preprocessor,
84
+ .hljs-pragma,
85
+ .hljs-pi,
86
+ .hljs-doctype,
87
+ .hljs-shebang,
88
+ .hljs-cdata
89
+ color: #999
90
+ font-weight: bold
91
+
92
+ .hljs-deletion
93
+ background: #fdd
94
+
95
+ .hljs-addition
96
+ background: #dfd
97
+
98
+ .diff .hljs-change
99
+ background: #0086b3
100
+
101
+ .hljs-chunk
102
+ color: #aaa
103
+
@@ -0,0 +1,137 @@
1
+
2
+ .markdown-body
3
+ padding: 30px 35px 30px 0
4
+ word-wrap: break-word
5
+ font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif
6
+ font-size: 0.8em;
7
+ line-height: 1.2em;
8
+ color:#5D5D5D
9
+ @media mq-mobile
10
+ padding-right 0
11
+ &>*:first-child
12
+ margin-top: 0 !important
13
+ strong
14
+ font-weight: bold
15
+ hr
16
+ border-top: 1px solid #CACACA
17
+ border-width: 1px 0 0 0
18
+ em
19
+ font-style:italic
20
+ img
21
+ max-width 100%
22
+ h1,h2,h3,h4,h5,h6
23
+ position: relative
24
+ margin-top: 1em
25
+ margin-bottom: 1em
26
+ font-weight: bold
27
+ line-height: 1.4
28
+ a
29
+ display:none
30
+ &:hover a
31
+ display:inline
32
+ color:#000
33
+ font-size:85%
34
+ h1,h2
35
+ border-bottom: 1px solid #eee
36
+ h1
37
+ font-size: 2em
38
+ line-height: 1.2
39
+ padding-bottom: 0.3em
40
+ h2
41
+ padding-bottom: 0.3em
42
+ font-size: 1.5em
43
+ line-height: 1.225
44
+ border-bottom:1px dashed #DEDEDE
45
+ color #36444C
46
+ h3
47
+ font-size 1.3em
48
+ color: #333;
49
+ &:before,&:after
50
+ content ''
51
+ display inline-block
52
+ width 5px
53
+ background-color #7A8388
54
+ height 17px
55
+ position relative
56
+ top 3px
57
+ margin 0 7px 0 2px
58
+ h4,h5,h6
59
+ margin-bottom 0.4em
60
+ color: #333;
61
+ blockquote
62
+ padding: 0 15px
63
+ color: #777
64
+ border-left: 4px solid #ddd
65
+ margin: 0;
66
+ &>:last-child
67
+ margin-bottom: 0
68
+ &>:first-child
69
+ margin-top: 0
70
+ p,blockquote,ul,ol,dl,table,pre
71
+ margin-top: 0;
72
+ margin-bottom: 16px
73
+ ul,ol
74
+ padding-left: 2em
75
+ list-style-type: square;
76
+ ol
77
+ list-style-type: decimal
78
+ ol ol, ul ol
79
+ list-style-type: lower-roman;
80
+ ul ul ol, ul ol ol, ol ul ol, ol ol ol
81
+ list-style-type: lower-alpha;
82
+ pre
83
+ padding: 16px
84
+ overflow: auto
85
+ background-color: #f7f7f9
86
+ border-radius: 3px
87
+ word-break: break-all
88
+ word-wrap: break-word
89
+ font: 16px Consolas, "Liberation Mono", Menlo, Courier, monospace;
90
+ code
91
+ // letter-spacing: 1px
92
+ background-color:transparent
93
+ color: inherit
94
+ line-height: 16px
95
+ display: block
96
+ font-size: 14px
97
+ code:before,code:after,tt:before,tt:after
98
+ letter-spacing: 0;
99
+ content: "";
100
+ code,tt
101
+ padding: 0
102
+ padding-bottom: 2px
103
+ margin: 0 3px
104
+ vertical-align: top
105
+ background-color: #EDEDF7
106
+ border-radius: 4px
107
+ padding-left: 3px
108
+ padding-right: 3px
109
+ font-size: 14px
110
+ color: #6F5990
111
+ code:before,code:after,tt:before,tt:after
112
+ content: "\00a0"
113
+ vertical-align: text-top
114
+ table
115
+ width: 100%
116
+ border-collapse: collapse
117
+ border-spacing: 0
118
+ max-width: 100%
119
+ display: block
120
+ background-color: transparent
121
+ th,td
122
+ border: 1px solid #ddd
123
+ padding: 4px 10px
124
+ th
125
+ font-weight: bold
126
+ background: #F3F3F3
127
+ tr:nth-child(2n)
128
+ background-color: #f8f8f8
129
+ tbody
130
+ background:#fff
131
+
132
+ // markdown 增强样式
133
+ .markdown-body
134
+ .task-list-item
135
+ padding: 0;
136
+ li
137
+ list-style-type: none
@@ -0,0 +1,101 @@
1
+ // Reset
2
+
3
+
4
+ //在HTML标签在浏览器里有默认的样式,例如 p 标签有上下边距,strong标签有字体加粗样式,em标签有字体倾斜样式。不同浏览器的默认样式之间也会有差别,例如ul默认带有缩进的样式,在IE下,它的缩进是通过margin实现的,而Firefox下,它的缩进是由padding实现的。在切换页面的时候,浏览器的默认样式往往会给我们带来麻烦,影响开发效率。所以解决的方法就是一开始就将浏览器的默认样式全部去掉,更准确说就是通过重新定义标签样式。“覆盖”浏览器的CSS默认属性。最最简单的说法就是把浏览器提供的默认样式覆盖掉!这就是CSS reset。
5
+
6
+ // global-reset()
7
+ // nested-reset()
8
+ // reset-font()
9
+ // reset-box-model()
10
+ // reset-body()
11
+ // reset-table()
12
+ // reset-table-cell()
13
+ // reset-html5()
14
+
15
+ // http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/
16
+ // http://yuilibrary.com/yui/docs/cssreset/
17
+ // http://yui.yahooapis.com/3.18.1/build/cssreset/cssreset-min.css
18
+ // http://cssreset.com/
19
+
20
+ global-reset()
21
+ html, body, div, span, applet, object, iframe,
22
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
23
+ a, abbr, acronym, address, big, cite, code,
24
+ del, dfn, em, img, ins, kbd, q, s, samp,
25
+ small, strike, strong, sub, sup, tt, var,
26
+ dl, dt, dd, ol, ul, li,
27
+ fieldset, form, label, legend,
28
+ table, caption, tbody, tfoot, thead, tr, th, td
29
+ reset-box-model()
30
+ reset-font()
31
+ body
32
+ reset-body()
33
+ ol, ul
34
+ list-style: none
35
+ table
36
+ reset-table()
37
+ caption, th, td
38
+ reset-table-cell()
39
+ a
40
+ text-decoration:inherit
41
+ &:hover
42
+ text-decoration:underline
43
+ a img
44
+ border: none
45
+ *
46
+ box-sizing: border-box;
47
+
48
+ nested-reset()
49
+ div, span, object, iframe, h1, h2, h3, h4, h5, h6, p,
50
+ pre, a, abbr, acronym, address, code, del, dfn, em, img,
51
+ dl, dt, dd, ol, ul, li, fieldset, form, label,
52
+ legend, caption, tbody, tfoot, thead, tr
53
+ reset-box-model()
54
+ reset-font()
55
+ table
56
+ reset-table()
57
+ caption, th, td
58
+ reset-table-cell()
59
+ a img
60
+ border: none
61
+
62
+ reset-box-model()
63
+ margin: 0
64
+ padding: 0
65
+ border: 0
66
+ outline: 0
67
+
68
+ reset-font()
69
+ font-weight: inherit
70
+ font-style: inherit
71
+ font-family: inherit
72
+ font-size: 100%
73
+ vertical-align: baseline
74
+
75
+ reset-body()
76
+ line-height: 1
77
+ color: black
78
+ background: white
79
+
80
+ reset-table()
81
+ border-collapse: separate
82
+ border-spacing: 0
83
+ vertical-align: middle
84
+
85
+ reset-table-cell()
86
+ text-align: left
87
+ font-weight: normal
88
+ vertical-align: middle
89
+
90
+ reset-html5()
91
+ article, aside, canvas, details, figcaption,
92
+ figure, footer, header, hgroup, menu, nav,
93
+ section, summary, main
94
+ reset-box-model()
95
+ display: block
96
+ audio, canvas, video
97
+ display inline-block
98
+ *display inline
99
+ *zoom 1
100
+ audio:not([controls]),[hidden]
101
+ display none
@@ -0,0 +1,10 @@
1
+ // Media queries
2
+ mq-mobile = "screen and (max-width: 479px)"
3
+ mq-tablet = "screen and (min-width: 480px) and (max-width: 1170px)"
4
+ // mq-iPhones4 = "only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2)"
5
+ // mq-normal = "screen and (min-width: 768px)"
6
+
7
+
8
+
9
+ tocwidth = 220px
10
+ nav-height = 49px
@@ -0,0 +1,50 @@
1
+ @import('_partial/reset.styl')
2
+ // CSS reset
3
+ global-reset()
4
+ reset-html()
5
+
6
+ @import('_partial/variables.styl')
7
+ @import('_partial/markdown.styl')
8
+ @import('_partial/highlight.styl')
9
+
10
+ body
11
+ font-family Arial, Helvetica, sans-serif,'宋体',tahoma, Srial, helvetica, sans-serif
12
+
13
+
14
+ .container
15
+ // max-width 768px
16
+ margin 0 auto
17
+ padding 0 40px 0 40px
18
+ max-width 848px
19
+
20
+
21
+ .header
22
+ background #303538 no-repeat center center
23
+ .container
24
+ padding-top 50px
25
+ padding-bottom 26px
26
+ .vertical
27
+ vertical-align: middle
28
+ h1
29
+ color #fff
30
+ font-size 2.3em
31
+ font-weight bold
32
+ pre
33
+ color #939393
34
+ font-size 14px
35
+ padding 23px 0 0 0
36
+ line-height 21px
37
+
38
+
39
+ .copyright
40
+ color #E5E5E5
41
+ font-size 12px
42
+ a
43
+ color #E5E5E5
44
+ &:hover
45
+ color #333
46
+
47
+
48
+ @media print
49
+ .header
50
+ background #303538