* 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.
This commit is contained in:
parent
b578f6c623
commit
615ba9f3ab
2 changed files with 6 additions and 2 deletions
2
Makefile
2
Makefile
|
|
@ -15,8 +15,8 @@ ddir:
|
||||||
mkdir -p $(DESTDIR)
|
mkdir -p $(DESTDIR)
|
||||||
|
|
||||||
deploy: ddir build
|
deploy: ddir build
|
||||||
|
rm -rf $(DESTDIR)
|
||||||
xbuild /p:Configuration=$(CONFIG) /p:SkipCopyUnchangedFiles=$(COPYUNCHANGED) /p:DeployDir=../$(DESTDIR) /t:Deploy web/Web.csproj
|
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
|
mv $(DESTDIR)/Web.config $(DESTDIR)/Web.config.new
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -195,7 +195,7 @@ padding-left: 20px;
|
||||||
.bshd:hover > .bsh {
|
.bshd:hover > .bsh {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
footer img {
|
footer {
|
||||||
max-height: 1em;
|
max-height: 1em;
|
||||||
}
|
}
|
||||||
footer a {
|
footer a {
|
||||||
|
|
@ -204,5 +204,9 @@ padding-left: 20px;
|
||||||
body { margin-bottom:1em; font-size: smaller; }
|
body { margin-bottom:1em; font-size: smaller; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media all and (max-width: 350px) {
|
||||||
|
footer img { max-height: 0.7em; }
|
||||||
|
footer { font-size: xx-small; }
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue