Author
|
zPlus <-->
2016-12-25 08:46:34
|
Committer
|
zPlus <-->
2016-12-25 08:46:34
|
Commit
|
46671ee
(patch)
|
Tree
|
43e7555
|
Parent(s)
|
|
Add CSS rules for tag <code>
commits diff:
1cda236..46671ee
1 file changed,
35 insertions,
1 deletion
—
download
Diffstat
Diff options
+35/-1
M css/reset.styl
121
|
121
|
|
line-height 1em
|
122
|
122
|
|
margin 0
|
123
|
123
|
|
padding 0
|
124
|
|
- |
width 100% |
124
|
|
> |
\ No newline at end of file
|
|
124
|
+ |
width 100%
|
|
125
|
+ |
|
|
126
|
+ |
pre
|
|
127
|
+ |
background-color #f9f9f9
|
|
128
|
+ |
font-family "Courier 10 Pitch", Courier, monospace
|
|
129
|
+ |
font-size 95%
|
|
130
|
+ |
line-height 140%
|
|
131
|
+ |
white-space pre
|
|
132
|
+ |
white-space pre-wrap
|
|
133
|
+ |
white-space -moz-pre-wrap
|
|
134
|
+ |
white-space -o-pre-wrap
|
|
135
|
+ |
|
|
136
|
+ |
code
|
|
137
|
+ |
font-family Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace
|
|
138
|
+ |
font-size 95%
|
|
139
|
+ |
line-height 140%
|
|
140
|
+ |
white-space pre
|
|
141
|
+ |
white-space pre-wrap
|
|
142
|
+ |
white-space -moz-pre-wrap
|
|
143
|
+ |
white-space -o-pre-wrap
|
|
144
|
+ |
|
|
145
|
+ |
/* Inline code */
|
|
146
|
+ |
p > code
|
|
147
|
+ |
background-color #f5f5f5
|
|
148
|
+ |
border-radius 3px
|
|
149
|
+ |
display inline-block
|
|
150
|
+ |
font-family Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace
|
|
151
|
+ |
font-size 85%
|
|
152
|
+ |
line-height 140%
|
|
153
|
+ |
margin 0 .2em
|
|
154
|
+ |
padding .2em
|
|
155
|
+ |
white-space pre
|
|
156
|
+ |
white-space pre-wrap
|
|
157
|
+ |
white-space -moz-pre-wrap
|
|
158
|
+ |
white-space -o-pre-wrap
|