spiffy 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/bin/spiffy +1 -1
  3. data/defaults/style.css +90 -0
  4. metadata +2 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ec8721cbadac1d569eaa758648f0bdaba43d193f
4
- data.tar.gz: acbc94744db89f5bb52b870e354e17c894c64219
3
+ metadata.gz: 43fd5e5b92456e74b9d97b8dac1096be1914455b
4
+ data.tar.gz: 66efb37287de1218a89d5e38d13f480a1820cb7d
5
5
  SHA512:
6
- metadata.gz: 561426c0182f25c2fd91de895170183f936554b79529d7b62a738b84bf86b430c052ea315c9179a7e4da032898a537f372c80f277a86807b18f2485a8c43f10f
7
- data.tar.gz: aca20914e40a1015c98ea5f04839619c01ce49e613ea70d920e0e51365e16b91ab13a1a484e5116d05b9147d4f74d91ce4e3a915e3aa10dede3b4fa40f4cc00b
6
+ metadata.gz: 2a9b543c47a36190edef4c171ed28db21fb74783d06740ffe24b2926af25bd0a510f6558ce0f9f87e89b016c2f9508147f127b115e3d68d6c5fcce21470fa22f
7
+ data.tar.gz: 1fc0976eff9dba1ae7f371116d9cd177d7e80d4814e2fd4aeb13530606bca7cd2332f46978b51ddbd77265460ec5ec44813d8339ba30d34b66ae5cccecfecce5
data/bin/spiffy CHANGED
@@ -15,7 +15,7 @@ options = {
15
15
 
16
16
  opt_parser = OptionParser.new do |opt|
17
17
  opt.banner = "Usage: spiffy [options] [file] [file] ..."
18
- opt.separator("Version: 0.0.2")
18
+ opt.separator("Version: 0.0.3")
19
19
  opt.separator("")
20
20
  opt.separator("Options")
21
21
 
@@ -0,0 +1,90 @@
1
+ *{margin:0;padding:0;}
2
+ body {
3
+ font:13.34px helvetica,arial,freesans,clean,sans-serif;
4
+ color:black;
5
+ line-height:1.4em;
6
+ background-color: #fff;
7
+ padding: 0.7em;
8
+ }
9
+ p {
10
+ margin:1em 0;
11
+ line-height:1.5em;
12
+ }
13
+ table {
14
+ font-size:inherit;
15
+ font:100%;
16
+ margin:1em;
17
+ }
18
+ table th{border-bottom:1px solid #bbb;padding:.2em 1em;}
19
+ table td{border-bottom:1px solid #ddd;padding:.2em 1em;}
20
+ input[type=text],input[type=password],input[type=image],textarea{font:99% helvetica,arial,freesans,sans-serif;}
21
+ select,option{padding:0 .25em;}
22
+ optgroup{margin-top:.5em;}
23
+ pre,code{font:12px Monaco,"Courier New","DejaVu Sans Mono","Bitstream Vera Sans Mono",monospace;}
24
+ pre {
25
+ margin:1em 0;
26
+ font-size:12px;
27
+ background-color:#eee;
28
+ border:1px solid #ddd;
29
+ padding:5px;
30
+ line-height:1.5em;
31
+ color:#444;
32
+ overflow:auto;
33
+ -webkit-box-shadow:rgba(0,0,0,0.07) 0 1px 2px inset;
34
+ -webkit-border-radius:3px;
35
+ -moz-border-radius:3px;border-radius:3px;
36
+ }
37
+ pre code {
38
+ padding:0;
39
+ font-size:12px;
40
+ background-color:#eee;
41
+ border:none;
42
+ }
43
+ code {
44
+ font-size:12px;
45
+ background-color:#f8f8ff;
46
+ color:#444;
47
+ padding:0 .2em;
48
+ border:1px solid #dedede;
49
+ }
50
+ img{border:0;max-width:100%;}
51
+ abbr{border-bottom:none;}
52
+ a{color:#4183c4;text-decoration:none;}
53
+ a:hover{text-decoration:underline;}
54
+ a code,a:link code,a:visited code{color:#4183c4;}
55
+ h2,h3{margin:1em 0;}
56
+ h1,h2,h3,h4,h5,h6{border:0;}
57
+ h1{font-size:170%;border-top:4px solid #aaa;padding-top:.5em;margin-top:1.5em;}
58
+ h1:first-child{margin-top:0;padding-top:.25em;border-top:none;}
59
+ h2{font-size:150%;margin-top:1.5em;border-top:4px solid #e0e0e0;padding-top:.5em;}
60
+ h3{margin-top:1em;}
61
+ hr{border:1px solid #ddd;}
62
+ ul{margin:1em 0 1em 2em;}
63
+ ol{margin:1em 0 1em 2em;}
64
+ ul li,ol li{margin-top:.5em;margin-bottom:.5em;}
65
+ ul ul,ul ol,ol ol,ol ul{margin-top:0;margin-bottom:0;}
66
+ blockquote{margin:1em 0;border-left:5px solid #ddd;padding-left:.6em;color:#555;}
67
+ dt{font-weight:bold;margin-left:1em;}
68
+ dd{margin-left:2em;margin-bottom:1em;}
69
+ sup {
70
+ font-size: 0.83em;
71
+ vertical-align: super;
72
+ line-height: 0;
73
+ }
74
+ * {
75
+ -webkit-print-color-adjust: exact;
76
+ }
77
+ @media screen and (min-width: 914px) {
78
+ body {
79
+ width: 854px;
80
+ margin:0 auto;
81
+ }
82
+ }
83
+ @media print {
84
+ table, pre {
85
+ page-break-inside: avoid;
86
+ }
87
+ pre {
88
+ word-wrap: break-word;
89
+ }
90
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spiffy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leigh McCulloch
@@ -193,6 +193,7 @@ extensions: []
193
193
  extra_rdoc_files: []
194
194
  files:
195
195
  - bin/spiffy
196
+ - defaults/style.css
196
197
  - defaults/template.haml
197
198
  - lib/spiffy.rb
198
199
  homepage: http://rubygems.org/gems/hola