/* SPDX-License-Identifier: LicenseRef-Yahoo-BSD-3 Copyright 2013 Yahoo! Inc. See https://git.koszko.org/koszko-org-website/tree/LICENSES/ for details. */ /* ========================================================================== Pure Base Extras ========================================================================== */ /** * Extra rules that Pure adds on top of Normalize.css */ html { font-family: sans-serif; } /** * Always hide an element when it has the `hidden` HTML attribute. */ .hidden, [hidden] { display: none !important; } /** * Add this class to an image to make it fit within it's fluid parent wrapper while maintaining * aspect ratio. */ .pure-img { max-width: 100%; height: auto; display: block; }