From debbb79167d5696db90a6164dd7009eff1dd2f75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Pokorn=C3=BD?= Date: Thu, 16 Feb 2017 21:26:27 +0100 Subject: [PATCH] images displayed by css --- simple/footer.html | 2 +- simple/header.html | 2 +- simple/style.css | 11 ++++++++++- simple/style.scss | 10 ++++++++++ 4 files changed, 22 insertions(+), 3 deletions(-) diff --git a/simple/footer.html b/simple/footer.html index e2f200b..1961d8e 100644 --- a/simple/footer.html +++ b/simple/footer.html @@ -1,6 +1,6 @@ \ No newline at end of file diff --git a/simple/header.html b/simple/header.html index 21c68f1..f2540f0 100644 --- a/simple/header.html +++ b/simple/header.html @@ -55,7 +55,7 @@
-
+
/

diff --git a/simple/style.css b/simple/style.css index 5a91fdc..80f5122 100644 --- a/simple/style.css +++ b/simple/style.css @@ -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; } diff --git a/simple/style.scss b/simple/style.scss index cea2288..5c99e1c 100644 --- a/simple/style.scss +++ b/simple/style.scss @@ -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; } }