tuvokki / tuvokki.github.io

The github pages by tuvokki

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

All highlight boxes have scrollbars

tuvokki opened this issue · comments

In style.css (line: 342 according to chrome) the highlightclass always adds scrollbars to the surrounding div:

.highlight {
  background-color: #efefef;
  padding: 7px 7px 7px 10px;
  border: 1px solid #ddd;
  -moz-box-shadow: 3px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 3px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 3px 3px rgba(0, 0, 0, 0.1);
  margin: 20px 0 20px 0;
  overflow: scroll;
}

Please fix by changing this from scroll to auto.

While we're at it, please remove the shadows too.

Also removed the border and lightenend the background(b616c11), clean style ftw