// CSS heavily borrowed from https://github.com/denysvitali/thebestmotherfuckingwebsite $bodybgColor: #f2f2f2; $bodyTextColor: #444444; $linkColor: #07A; $linkVisitedColor: #941352; html { background-color: $bodybgColor; } body{ font-family: "Open Sans", "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: $bodyTextColor; font-size: 16px; margin: 2em auto; max-width: 800px; padding: 1em; line-height: 1.4; text-align: justify; } a{ color: $linkColor; &:visited{ color: $linkVisitedColor; } } .noselect{ -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } small{ font-size: 0.4em; } ul{ li{ img{ height: 1em; } } } footer { margin-top: 4em; font-size: 12px; } @media screen and (max-width: 500px) { body{ text-align: left; } }