summaryrefslogtreecommitdiff
path: root/view.scss
diff options
context:
space:
mode:
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;
+ }
+ }
+}