From bdf72598979590e621181a8a5b83bcd82f5eef25 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Mon, 9 Mar 2015 19:16:21 +0300 Subject: [PATCH] fix carousel task li space --- .../6-carousel/solution.view/index.html | 20 ++++++++-------- .../6-carousel/solution.view/style.css | 4 ++++ .../6-carousel/source.view/index.html | 24 +++++++++---------- .../6-carousel/source.view/style.css | 4 ++++ .../1-modal-dialog/solution.view/index.html | 4 ++-- 5 files changed, 32 insertions(+), 24 deletions(-) diff --git a/2-ui/2-events-and-interfaces/1-introduction-browser-events/6-carousel/solution.view/index.html b/2-ui/2-events-and-interfaces/1-introduction-browser-events/6-carousel/solution.view/index.html index 4da04229..5059dcaf 100755 --- a/2-ui/2-events-and-interfaces/1-introduction-browser-events/6-carousel/solution.view/index.html +++ b/2-ui/2-events-and-interfaces/1-introduction-browser-events/6-carousel/solution.view/index.html @@ -11,16 +11,16 @@ diff --git a/2-ui/2-events-and-interfaces/1-introduction-browser-events/6-carousel/solution.view/style.css b/2-ui/2-events-and-interfaces/1-introduction-browser-events/6-carousel/solution.view/style.css index 73997cdb..9ff8a831 100755 --- a/2-ui/2-events-and-interfaces/1-introduction-browser-events/6-carousel/solution.view/style.css +++ b/2-ui/2-events-and-interfaces/1-introduction-browser-events/6-carousel/solution.view/style.css @@ -61,6 +61,10 @@ body { padding: 0; list-style: none; transition: margin-left 250ms; + /* remove white-space between inline-block'ed li */ + /* http://davidwalsh.name/remove-whitespace-inline-block */ + + font-size: 0; } .gallery li { diff --git a/2-ui/2-events-and-interfaces/1-introduction-browser-events/6-carousel/source.view/index.html b/2-ui/2-events-and-interfaces/1-introduction-browser-events/6-carousel/source.view/index.html index 6de9e7eb..59e72f15 100755 --- a/2-ui/2-events-and-interfaces/1-introduction-browser-events/6-carousel/source.view/index.html +++ b/2-ui/2-events-and-interfaces/1-introduction-browser-events/6-carousel/source.view/index.html @@ -14,22 +14,22 @@