copycat 0.0.5 → 0.0.6
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/app/assets/stylesheets/copycat_engine.css +6 -2
- data/lib/copycat/engine.rb +7 -0
- data/lib/copycat/version.rb +1 -1
- data/spec/dummy/log/test.log +1916 -0
- metadata +1 -3
- data/spec/dummy/tmp/pids/server.pid +0 -1
@@ -381,6 +381,10 @@ select {
|
|
381
381
|
margin: .2em;
|
382
382
|
}
|
383
383
|
|
384
|
+
textarea {
|
385
|
+
font-size: 1.2em;
|
386
|
+
}
|
387
|
+
|
384
388
|
select {
|
385
389
|
width: 4em;
|
386
390
|
}
|
@@ -407,11 +411,12 @@ body {
|
|
407
411
|
background-color: #FFFDF7;
|
408
412
|
width: 800px;
|
409
413
|
margin: 0 auto;
|
410
|
-
padding:
|
414
|
+
padding: 2em;
|
411
415
|
}
|
412
416
|
#header {
|
413
417
|
width: 100%;
|
414
418
|
height: 4em;
|
419
|
+
margin-bottom: 1em;
|
415
420
|
}
|
416
421
|
|
417
422
|
#header h1 {
|
@@ -423,7 +428,6 @@ body {
|
|
423
428
|
|
424
429
|
#header ul {
|
425
430
|
float: right;
|
426
|
-
padding-top: 2%;
|
427
431
|
list-style-type: none;
|
428
432
|
}
|
429
433
|
|
data/lib/copycat/engine.rb
CHANGED
data/lib/copycat/version.rb
CHANGED