-
Notifications
You must be signed in to change notification settings - Fork 1
/
_base.scss
71 lines (60 loc) · 1.63 KB
/
_base.scss
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
@charset "UTF-8";
/*!
Pixyll
A simple, beautiful theme for Jekyll that emphasizes content rather than
aesthetic fluff.
Built upon BASSCSS (http://jxnblk.github.io/basscss).
Crafted with <3 by John Otander (@4lpine) - ©2015-2019 John Otander
MIT License http://opensource.org/licenses/MIT
*/
html, body {
height: auto;
min-height: 100%;
}
img {
max-width: 100%;
}
em img {
max-width: 100%;
margin-left: 0;
}
body {
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
/* ==========================================================================
NHS.Pycom
========================================================================== */
/**
/* ==========================================================================
ELEMENTS / #PAGE
========================================================================== */
/**
* High-level, page-level styling.
*
* 1. The reason for this is to prevent "centering jumps" when navigating back
* and forth between pages with enough content to have a vertical scroll bar
* and pages that do not.
* 2. Fonts on OSX will look more consistent with other systems that do not
* render text using sub-pixel anti-aliasing.
* 3. Override the user agent style margin of 8px.
* 4. Ensure the page always fills at least the entire height of the viewport.
*/
html {
background-color: #d8dde0;
overflow-y: scroll;
/* [1] */
}
body {
-moz-osx-font-smoothing: grayscale;
/* [2] */
-webkit-font-smoothing: antialiased;
/* [2] */
background-color: #f0f4f5;
color: #212b32;
margin: 0;
/* [3] */
min-height: 100%;
/* [4] */
}