From 615ba9f3ab8395b37a4cf65358c14fd126639eaf Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Thu, 5 Mar 2015 11:52:38 +0100 Subject: [PATCH] * style.css: Smaller minimal width, by even smaller footer bar ( for screens width below 350px ) * Makefile: clean all in the target directory before deploying to it. --- Makefile | 2 +- web/Theme/style.css | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index acf217a3..0208ed39 100644 --- a/Makefile +++ b/Makefile @@ -15,8 +15,8 @@ ddir: mkdir -p $(DESTDIR) deploy: ddir build + rm -rf $(DESTDIR) xbuild /p:Configuration=$(CONFIG) /p:SkipCopyUnchangedFiles=$(COPYUNCHANGED) /p:DeployDir=../$(DESTDIR) /t:Deploy web/Web.csproj - rm -rf $(DESTDIR)/obj mv $(DESTDIR)/Web.config $(DESTDIR)/Web.config.new diff --git a/web/Theme/style.css b/web/Theme/style.css index ec785786..6a1d0a63 100644 --- a/web/Theme/style.css +++ b/web/Theme/style.css @@ -195,7 +195,7 @@ padding-left: 20px; .bshd:hover > .bsh { display: none; } - footer img { + footer { max-height: 1em; } footer a { @@ -204,5 +204,9 @@ padding-left: 20px; body { margin-bottom:1em; font-size: smaller; } } + @media all and (max-width: 350px) { + footer img { max-height: 0.7em; } + footer { font-size: xx-small; } + } }