summaryrefslogtreecommitdiff
path: root/view.scss
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2012-05-04 09:48:27 -0700
committerLuke Shumaker <LukeShu@sbcglobal.net>2012-05-04 09:48:27 -0700
commit247f5d615539784c46b5c7c5b35b6ee348e04151 (patch)
tree6744bd1584ad1239417e4c8e148f98d1d27909eb /view.scss
initial commitHEADmaster
Diffstat (limited to 'view.scss')
-rw-r--r--view.scss41
1 files changed, 41 insertions, 0 deletions
diff --git a/view.scss b/view.scss
new file mode 100644
index 0000000..9771f22
--- /dev/null
+++ b/view.scss
@@ -0,0 +1,41 @@
+body {
+ margin: 0;
+ padding: 0;
+ background-color: #999999;
+}
+.menu {
+ position: fixed;
+ background-color: #557755;
+ width: 100%;
+ text-align: center;
+}
+table.paper {
+ width: 12.75in; /* one page width, so 50% actual size */
+ border: 0;
+ padding: 0;
+ margin: 0 auto;
+ background: transparent;
+ td {
+ border: 0;
+ padding: 0;
+ margin: 0;
+ &.pages {
+ /*display: inline;*/
+ margin: 0;
+ padding: 0;
+ padding-bottom: 1em;
+ }
+ &.pages-1 {
+ @extend .pages;
+ width: 50%;
+ }
+ &.pages-2 {
+ @extend .pages;
+ width: 100%;
+ }
+ img {
+ width: 100%;
+ height: auto;
+ }
+ }
+}