merb-ui 0.2 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -1
- data/app/views/styles/index.css.erb +9 -2
- data/public/javascripts/desktop.js +1 -1
- metadata +1 -1
data/Rakefile
CHANGED
@@ -15,15 +15,22 @@ b, em, h1, label, strong {
|
|
15
15
|
font-family: "Lucida Grande", "Lucida Sans", "Lucida Sans Unicode", sans-serif;
|
16
16
|
font-weight: bold;
|
17
17
|
}
|
18
|
+
code, em {
|
19
|
+
font-family: "Bitstream Vera Sans Mono", "Monaco", "Andale Mono", "Courier New", "Courier", fixed;
|
20
|
+
font-style: normal;
|
21
|
+
font-weight: normal;
|
22
|
+
}
|
18
23
|
code {
|
19
24
|
background-color: <%= color(0.1, 0.1, 0.1) %>;
|
20
25
|
color: <%= color(1, 1, 1) %>;
|
21
26
|
display: block;
|
22
|
-
font-family: "Bitstream Vera Sans Mono", "Monaco", "Andale Mono", "Courier New", "Courier", fixed;
|
23
27
|
font-size: 0.85em;
|
24
28
|
overflow: auto;
|
25
29
|
padding: 1em;
|
26
|
-
white-space:
|
30
|
+
white-space: pre;
|
31
|
+
}
|
32
|
+
code em {
|
33
|
+
color: <%= color(0, 1, 0) %>;
|
27
34
|
}
|
28
35
|
kbd {
|
29
36
|
background-color: <%= color(0.9, 0.9, 0.9) %>;
|