From db647804cb4c6e789c0658245d6a3f7ecebfd436 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Mon, 27 Feb 2012 00:53:04 -0500 Subject: [PATCH] Initial mobile style: * Create mobile.css and add it to the fe build. * Set viewport. --- build.py | 1 + web_frontend/index.html | 2 ++ web_frontend/mobile.css | 12 ++++++++++++ 3 files changed, 15 insertions(+) create mode 100644 web_frontend/mobile.css diff --git a/build.py b/build.py index 74acfd3..3875c36 100755 --- a/build.py +++ b/build.py @@ -46,6 +46,7 @@ SOURCES_FE = [ RESOURCES_FE = [ 'index.html', 'screen.css', + 'mobile.css', 'reset.css' ] PRODUCT_NAME = 'armadillo' diff --git a/web_frontend/index.html b/web_frontend/index.html index f2485a4..00b7c86 100644 --- a/web_frontend/index.html +++ b/web_frontend/index.html @@ -3,8 +3,10 @@ Armadillo File Manager + +
diff --git a/web_frontend/mobile.css b/web_frontend/mobile.css new file mode 100644 index 0000000..da38eae --- /dev/null +++ b/web_frontend/mobile.css @@ -0,0 +1,12 @@ +/* + * Armadillo File Manager + * Copyright (c) 2012, Robert Sesek + * + * This program is free software: you can redistribute it and/or modify it under + * the terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or any later version. + */ + +body { + padding: 0; +} -- 2.22.5