From 504002b5e543a6298f2100629adc491ee077b447 Mon Sep 17 00:00:00 2001 From: Neale Pickett Date: Mon, 13 Apr 2015 16:34:22 -0600 Subject: [PATCH] Scale images --- html/css/style.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/html/css/style.css b/html/css/style.css index e8abe7e..654caf0 100644 --- a/html/css/style.css +++ b/html/css/style.css @@ -12,6 +12,7 @@ html { background: #35170c url(../images/brown-circles.jpg) repeat left bottom; min-height: 100%; font-family: "Maven Pro", Ubuntu, sans-serif; + overflow-y: scroll; } @@ -106,6 +107,14 @@ hr { padding: 0.1em 0.1em; } +img { + max-width: 100%; + transition: all .2s ease; +} + +img:hover { + transform: scale(1.5); +} /**** Section ****/