creature 0.0.4 → 0.0.5
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.
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.5
|
data/creature.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{creature}
|
8
|
-
s.version = "0.0.
|
8
|
+
s.version = "0.0.5"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Travis"]
|
12
|
-
s.date = %q{2010-12-
|
12
|
+
s.date = %q{2010-12-31}
|
13
13
|
s.description = %q{Creature.}
|
14
14
|
s.email = %q{travis@impossiblecreature.com}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -31,7 +31,7 @@ class PagesGenerator < Rails::Generators::Base
|
|
31
31
|
|
32
32
|
def add_routes
|
33
33
|
route "root :to => 'page#show#index', :page => 'index'"
|
34
|
-
route "match ':page/' => 'page#show#:page', :as => :
|
34
|
+
route "match ':page/' => 'page#show#:page', :as => :link"
|
35
35
|
route "resources :pages, :module => 'admin'"
|
36
36
|
route "resources :messages, :module => 'admin'"
|
37
37
|
end
|
@@ -1,24 +1,253 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
1
|
+
html
|
2
|
+
color: #222
|
3
|
+
font-size: 13px
|
4
|
+
font-family: arial, "Helvetica Neue", "Lucida Grande", Helvetica, Arial, Verdana, sans-serif
|
5
|
+
body
|
6
|
+
background-color: #ccc
|
7
|
+
#container
|
8
|
+
width: 1024px
|
9
|
+
margin: 0 auto
|
10
|
+
padding: 0
|
11
|
+
#header
|
12
|
+
background-color: #09275e
|
13
|
+
color: #fff
|
14
|
+
padding: 10px 20px
|
15
|
+
height: 20px
|
16
|
+
.user_nav
|
17
|
+
float: right
|
18
|
+
font-size: 15px
|
19
|
+
#navigation
|
20
|
+
background-color: #999
|
21
|
+
padding: 0 0 0 10px
|
22
|
+
margin: 0
|
23
|
+
height: 30px
|
24
|
+
font-size: 110%
|
25
|
+
#flash
|
26
|
+
background-color: #000000
|
27
|
+
#content
|
28
|
+
background-color: #fff
|
29
|
+
padding: 10px 20px 25px 20px
|
30
|
+
margin: 0
|
31
|
+
a, a:visited
|
32
|
+
color: #09275e
|
33
|
+
text-decoration: none
|
34
|
+
font-weight: bold
|
35
|
+
ol.main
|
36
|
+
float: left
|
37
|
+
width: 640px
|
38
|
+
ul
|
39
|
+
li
|
40
|
+
line-height: 17px
|
41
|
+
letter-spacing: .2px
|
42
|
+
.sidebar
|
43
|
+
border-left: 1px solid #c8c8c8
|
44
|
+
width: 290px
|
45
|
+
margin: 0 0 0 10px
|
46
|
+
padding: 0 0 0 10px
|
47
|
+
float: right
|
48
|
+
#footer
|
49
|
+
background-color: #09275e
|
50
|
+
color: #fff
|
51
|
+
padding: 10px 20px
|
52
|
+
|
53
|
+
h1
|
54
|
+
font-size: 140%
|
55
|
+
margin: 15px 0
|
56
|
+
|
57
|
+
|
58
|
+
table
|
59
|
+
margin-bottom: 2em
|
60
|
+
width: 100%
|
61
|
+
|
62
|
+
th
|
63
|
+
border-bottom: 2px solid #ccc
|
64
|
+
font-weight: bold
|
65
|
+
text-align: left
|
66
|
+
|
67
|
+
td
|
68
|
+
border-bottom: 1px solid #ddd
|
69
|
+
|
70
|
+
caption, th, td
|
71
|
+
padding: 4px 10px 4px 0
|
72
|
+
|
73
|
+
caption
|
74
|
+
background: #f1f1f1
|
75
|
+
padding: 10px 0
|
76
|
+
margin-bottom: 1em
|
77
|
+
|
78
|
+
tr, td, th
|
79
|
+
vertical-align: middle
|
80
|
+
|
81
|
+
|
82
|
+
/* Forms
|
83
|
+
|
84
|
+
input[type="submit"]::-moz-focus-inner
|
85
|
+
border: none
|
86
|
+
|
87
|
+
/*removes dotted outline on submit buttons when clicking in firefox
|
88
|
+
|
89
|
+
form ol.main
|
90
|
+
list-style: none
|
91
|
+
margin: 0 0 1em 0
|
92
|
+
ol
|
93
|
+
margin-left: 0
|
94
|
+
li
|
95
|
+
margin: 0 0 1em 0
|
96
|
+
list-style-position: outside
|
97
|
+
ol li
|
98
|
+
margin: 0 0 .25em 0
|
99
|
+
list-style-position: outside
|
100
|
+
li.error input
|
101
|
+
background: #FBE3E4
|
102
|
+
|
103
|
+
form ol
|
104
|
+
list-style: none
|
105
|
+
margin: 0 0 1em 0
|
106
|
+
ol
|
107
|
+
margin-left: 0
|
108
|
+
li
|
109
|
+
margin: 0 0 1em 0
|
110
|
+
list-style-position: outside
|
111
|
+
ol li
|
112
|
+
margin: 0 0 .25em 0
|
113
|
+
list-style-position: outside
|
114
|
+
li.error input
|
115
|
+
background: #FBE3E4
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
/*list-style-position fixes IE label margin bug
|
120
|
+
|
121
|
+
p.inline-errors
|
122
|
+
color: #D12F19
|
123
|
+
|
124
|
+
form
|
125
|
+
ol li.file
|
126
|
+
background: #e1e1e1
|
127
|
+
border: 1px solid #c8c8c8
|
128
|
+
padding: 10px
|
129
|
+
abbr
|
130
|
+
border-bottom: 0
|
131
|
+
|
132
|
+
label
|
133
|
+
display: block
|
134
|
+
|
135
|
+
.required label
|
136
|
+
font-weight: bold
|
137
|
+
|
138
|
+
.checkbox_field label, .radio_field label
|
139
|
+
font-weight: normal
|
140
|
+
|
141
|
+
a.cancel
|
142
|
+
color: #7d0d0d
|
143
|
+
|
144
|
+
.inline-hints
|
145
|
+
font-size: 0.8em
|
146
|
+
color: #666
|
147
|
+
margin-bottom: 0.25em
|
148
|
+
|
149
|
+
/* Fieldsets
|
150
|
+
|
151
|
+
fieldset
|
152
|
+
margin: 0 0 1.5em 0
|
153
|
+
background: #f1f1f1
|
154
|
+
padding: 1.5em 1.5em 1em 1.5em
|
155
|
+
border: 1px solid #e3e3e3
|
156
|
+
fieldset
|
157
|
+
padding: 0
|
158
|
+
border: 0
|
159
|
+
fieldset
|
160
|
+
padding: 0
|
161
|
+
border: 0
|
162
|
+
|
163
|
+
legend
|
164
|
+
font-weight: bold
|
165
|
+
|
166
|
+
fieldset.buttons
|
167
|
+
background: inherit
|
168
|
+
border: 0
|
169
|
+
padding: 0
|
170
|
+
li
|
171
|
+
display: inline
|
172
|
+
|
173
|
+
.radio fieldset
|
174
|
+
padding: 0
|
175
|
+
margin: 0
|
176
|
+
|
177
|
+
/* Text fields
|
178
|
+
|
179
|
+
input
|
180
|
+
&[type="text"], &[type="password"]
|
181
|
+
width: 300px
|
182
|
+
padding: 3px 2px
|
183
|
+
font-size: inherit
|
184
|
+
&[disabled='disabled']
|
185
|
+
background-color: #fcfcfc
|
186
|
+
cursor: default
|
187
|
+
&[type="checkbox"], &[type="radio"]
|
188
|
+
margin: 0 3px 0 0
|
189
|
+
vertical-align: middle
|
190
|
+
position: relative
|
191
|
+
top: -2px
|
192
|
+
|
193
|
+
.check_boxes
|
194
|
+
label
|
195
|
+
vertical-align: middle
|
196
|
+
padding: 0
|
197
|
+
display: inline
|
198
|
+
font-weight: bold
|
199
|
+
margin: 0
|
200
|
+
padding: 0
|
201
|
+
li
|
202
|
+
list-style: none
|
203
|
+
|
204
|
+
.check
|
205
|
+
input
|
206
|
+
vertical-align: top
|
207
|
+
|
208
|
+
|
209
|
+
.radio label
|
210
|
+
padding: 0
|
211
|
+
|
212
|
+
/* Textareas
|
213
|
+
|
214
|
+
textarea
|
215
|
+
width: 90%
|
216
|
+
height: 200px
|
217
|
+
margin: 0 0.5em 0.5em 0
|
218
|
+
padding: 5px
|
219
|
+
font-size: inherit
|
220
|
+
|
221
|
+
textarea.wide
|
222
|
+
width: 840px
|
223
|
+
height: 200px
|
224
|
+
margin: 0 0.5em 0.5em 0
|
225
|
+
padding: 5px
|
226
|
+
font-size: inherit
|
227
|
+
|
228
|
+
|
229
|
+
/* Select fields
|
230
|
+
|
231
|
+
fieldset .select select
|
232
|
+
width: 200px
|
233
|
+
font-size: 0.9em
|
234
|
+
|
235
|
+
optgroup
|
236
|
+
margin: 0 0 .5em 0
|
237
|
+
|
238
|
+
/* Date & Time
|
239
|
+
|
240
|
+
form ol li
|
241
|
+
&.date ol li, &.time ol li
|
242
|
+
display: inline
|
243
|
+
&.datetime
|
244
|
+
ol li
|
245
|
+
display: inline-block
|
246
|
+
select
|
247
|
+
display: inline
|
248
|
+
width: auto
|
249
|
+
&.date select, &.time select
|
250
|
+
display: inline
|
251
|
+
width: auto
|
252
|
+
&.date label, &.time label
|
253
|
+
display: none
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: creature
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 21
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 5
|
10
|
+
version: 0.0.5
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Travis
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-12-
|
18
|
+
date: 2010-12-31 00:00:00 -06:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|