Skip to content

Instantly share code, notes, and snippets.

View skycaptain's full-sized avatar

Manuel Leonhardt skycaptain

  • ARRI AG
  • Munich, Germany
View GitHub Profile
FROM ubuntu:16.10
RUN apt-get update --fix-missing && apt-get install \
cmake \
g++ \
gdb \
git \
software-properties-common \
libtiff5-dev \
libboost-all-dev \
@skycaptain
skycaptain / type.scss
Last active August 29, 2015 14:05
CSS Responsive Hanging List Indents
// Creates hanging indents for unordered list, without the need of defining a width or negative margin for the li:marker
.list-hanging {
margin: 0;
padding: 0;
list-style: none;
display: table;
> li {
display: table-row;
}
> li:before {