pyc-website

main website for pyc inc.

git clone https://9o.is/git/pyc-website.git

commit 9da7c6a54bb11d36c4b7ed624f50d64b845e6eec
parent b05b042e03316882bce11e0a7324973fdfe14926
Author: Jul <jul@9o.is>
Date:   Mon, 25 Aug 2014 15:04:14 -0400

removed an off-by-5 overlay mistake in front page

Diffstat:
Msrc/main/webapp/less/pages/index.less | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/webapp/less/pages/index.less b/src/main/webapp/less/pages/index.less @@ -8,7 +8,7 @@ min-height: 100%; display: table; z-index: -200; - padding-top: @navbar-height + 5; + padding-top: @navbar-height; .overlay { @@ -17,14 +17,14 @@ background: rgba(0,0,0,0.3); display: table-cell; position: absolute; - top: 0; + top: 5px; left: 0; z-index: 0; #fake-bar { position: absolute; left: 0; - top: 0; + top: -5px; width: 100%; height: @navbar-height + 5; background-color: @body-bg;