blob: ea5512d120a4463451f1ce00a49f9963227be1e9 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
/*
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;
}
|