1
0
Fork 0
mirror of https://github.com/fuchcz/simple-apache-directory-listing-theme.git synced 2025-01-18 13:11:11 +01:00

images displayed by css

This commit is contained in:
Miroslav Pokorný 2017-02-16 21:26:27 +01:00
parent a42bd70f73
commit debbb79167
4 changed files with 22 additions and 3 deletions

View file

@ -1,6 +1,6 @@
</div>
<div class="footer">
<a href="https://miroslavpokorny.com/simple-apache-directory-listing-theme"><img src="/simple/favicons/logo28x28x.png" /></a>
<a href="https://miroslavpokorny.com/simple-apache-directory-listing-theme"></a>
</div>
</body>
</html>

View file

@ -55,7 +55,7 @@
<div class="container">
<div class="header">
<div class="header__wrapper">
<div class="header__home"><a id="homelink" href="/"><img src="/simple/icons/home.png"/></a></div>
<div class="header__home"><a id="homelink" href="/"></a></div>
<div class="header__breadcrumbs">/ </div>
<br />
</div>

View file

@ -63,6 +63,11 @@ a {
overflow: hidden; }
.header__breadcrumbs a:hover {
text-decoration: underline; }
.header #homelink {
background: url("icons/home.png") no-repeat;
display: block;
height: 16px;
width: 16px; }
.files {
margin-top: 1.3rem; }
@ -122,4 +127,8 @@ a {
padding-bottom: 1.0rem;
text-align: center; }
.footer a {
cursor: default; }
cursor: default;
background: url("favicons/logo28x28x.png") no-repeat;
display: inline-block;
height: 28px;
width: 28px; }

View file

@ -72,6 +72,12 @@ a {
text-decoration: underline;
}
}
#homelink {
background: url('icons/home.png') no-repeat;
display: block;
height: 16px;
width: 16px;
}
}
.files {
margin-top: 1.3rem;
@ -148,5 +154,9 @@ a {
text-align: center;
a {
cursor: default;
background: url('favicons/logo28x28x.png') no-repeat;
display: inline-block;
height: 28px;
width: 28px;
}
}