jekyll-bulma-feather 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/COPYING.md +88 -0
- data/README.md +125 -0
- data/_includes/feather.html +3 -0
- data/_includes/footer.html +14 -0
- data/_includes/head.html +12 -0
- data/_includes/header.html +8 -0
- data/_includes/nav.html +38 -0
- data/_layouts/default.html +7 -0
- data/_layouts/empty.html +9 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +5 -0
- data/_sass/bulma.scss +1 -0
- data/_sass/bulma/bulma-rtl.sass +3 -0
- data/_sass/bulma/bulma.sass +10 -0
- data/_sass/bulma/sass/base/_all.sass +6 -0
- data/_sass/bulma/sass/base/animations.sass +5 -0
- data/_sass/bulma/sass/base/generic.sass +145 -0
- data/_sass/bulma/sass/base/helpers.sass +1 -0
- data/_sass/bulma/sass/base/minireset.sass +79 -0
- data/_sass/bulma/sass/components/_all.sass +15 -0
- data/_sass/bulma/sass/components/breadcrumb.sass +77 -0
- data/_sass/bulma/sass/components/card.sass +102 -0
- data/_sass/bulma/sass/components/dropdown.sass +83 -0
- data/_sass/bulma/sass/components/level.sass +79 -0
- data/_sass/bulma/sass/components/media.sass +59 -0
- data/_sass/bulma/sass/components/menu.sass +59 -0
- data/_sass/bulma/sass/components/message.sass +101 -0
- data/_sass/bulma/sass/components/modal.sass +117 -0
- data/_sass/bulma/sass/components/navbar.sass +445 -0
- data/_sass/bulma/sass/components/pagination.sass +153 -0
- data/_sass/bulma/sass/components/panel.sass +121 -0
- data/_sass/bulma/sass/components/tabs.sass +176 -0
- data/_sass/bulma/sass/elements/_all.sass +16 -0
- data/_sass/bulma/sass/elements/box.sass +26 -0
- data/_sass/bulma/sass/elements/button.sass +344 -0
- data/_sass/bulma/sass/elements/container.sass +29 -0
- data/_sass/bulma/sass/elements/content.sass +157 -0
- data/_sass/bulma/sass/elements/form.sass +1 -0
- data/_sass/bulma/sass/elements/icon.sass +21 -0
- data/_sass/bulma/sass/elements/image.sass +73 -0
- data/_sass/bulma/sass/elements/notification.sass +52 -0
- data/_sass/bulma/sass/elements/other.sass +41 -0
- data/_sass/bulma/sass/elements/progress.sass +73 -0
- data/_sass/bulma/sass/elements/table.sass +133 -0
- data/_sass/bulma/sass/elements/tag.sass +140 -0
- data/_sass/bulma/sass/elements/title.sass +72 -0
- data/_sass/bulma/sass/form/_all.sass +9 -0
- data/_sass/bulma/sass/form/checkbox-radio.sass +24 -0
- data/_sass/bulma/sass/form/file.sass +184 -0
- data/_sass/bulma/sass/form/input-textarea.sass +68 -0
- data/_sass/bulma/sass/form/select.sass +89 -0
- data/_sass/bulma/sass/form/shared.sass +60 -0
- data/_sass/bulma/sass/form/tools.sass +217 -0
- data/_sass/bulma/sass/grid/_all.sass +5 -0
- data/_sass/bulma/sass/grid/columns.sass +513 -0
- data/_sass/bulma/sass/grid/tiles.sass +36 -0
- data/_sass/bulma/sass/helpers/_all.sass +12 -0
- data/_sass/bulma/sass/helpers/color.sass +39 -0
- data/_sass/bulma/sass/helpers/flexbox.sass +35 -0
- data/_sass/bulma/sass/helpers/float.sass +10 -0
- data/_sass/bulma/sass/helpers/other.sass +14 -0
- data/_sass/bulma/sass/helpers/overflow.sass +2 -0
- data/_sass/bulma/sass/helpers/position.sass +7 -0
- data/_sass/bulma/sass/helpers/spacing.sass +31 -0
- data/_sass/bulma/sass/helpers/typography.sass +100 -0
- data/_sass/bulma/sass/helpers/visibility.sass +122 -0
- data/_sass/bulma/sass/layout/_all.sass +6 -0
- data/_sass/bulma/sass/layout/footer.sass +11 -0
- data/_sass/bulma/sass/layout/hero.sass +149 -0
- data/_sass/bulma/sass/layout/section.sass +15 -0
- data/_sass/bulma/sass/utilities/_all.sass +8 -0
- data/_sass/bulma/sass/utilities/animations.sass +1 -0
- data/_sass/bulma/sass/utilities/controls.sass +52 -0
- data/_sass/bulma/sass/utilities/derived-variables.sass +110 -0
- data/_sass/bulma/sass/utilities/functions.sass +115 -0
- data/_sass/bulma/sass/utilities/initial-variables.sass +78 -0
- data/_sass/bulma/sass/utilities/mixins.sass +285 -0
- data/_sass/jekyll-bulma-feather.scss +213 -0
- data/assets/feather-sprite.svg +1 -0
- data/assets/jekyll-bulma-feather.svg +125 -0
- data/assets/style.scss +5 -0
- metadata +166 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 0c38d8aef74550a7cadecb71b10f1d76514a6fd80c313de6f4987f3cbe2f003b
|
4
|
+
data.tar.gz: c7a4a4fcd8b01b19d439a72beaff4c4a41d0bbac733d6b80c45bd0e88b00b30e
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 075e0fae558cb4d7cc20ba5e11795acf1dff03f62f788bbe07cd786286c821d537c0df94bd89014001dbcf2be4964f47c0cb70499dfeb6e4317588c4cb3dab11
|
7
|
+
data.tar.gz: e240dac3135434a3b7dd8bb4a64b81608730a320bf1c688bc907a2669e565494120c8c028c71ddb6a28ca4f4f7d8b96e4c004da3f70c8f4c165405b60e966a82
|
data/COPYING.md
ADDED
@@ -0,0 +1,88 @@
|
|
1
|
+
---
|
2
|
+
title: License
|
3
|
+
---
|
4
|
+
|
5
|
+
# [This theme](https://github.com/YellowApple/jekyll-bulma-feather)
|
6
|
+
|
7
|
+
Copyright (c) 2020 Ryan S. Northrup ("RyNo")
|
8
|
+
|
9
|
+
Permission to use, copy, modify, and distribute this software for any purpose
|
10
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
11
|
+
and this permission notice appear in all copies.
|
12
|
+
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
14
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
15
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
16
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
17
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
18
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
19
|
+
THIS SOFTWARE.
|
20
|
+
|
21
|
+
# [Feather](https://feathericons.com)
|
22
|
+
|
23
|
+
The MIT License (MIT)
|
24
|
+
|
25
|
+
Copyright (c) 2013-2017 Cole Bemis
|
26
|
+
|
27
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
28
|
+
this software and associated documentation files (the "Software"), to deal in
|
29
|
+
the Software without restriction, including without limitation the rights to
|
30
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
31
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
32
|
+
subject to the following conditions:
|
33
|
+
|
34
|
+
The above copyright notice and this permission notice shall be included in all
|
35
|
+
copies or substantial portions of the Software.
|
36
|
+
|
37
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
38
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
39
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
40
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
41
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
42
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
43
|
+
|
44
|
+
# [Bulma](https://bulma.io)
|
45
|
+
|
46
|
+
The MIT License (MIT)
|
47
|
+
|
48
|
+
Copyright (c) 2020 Jeremy Thomas
|
49
|
+
|
50
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
51
|
+
this software and associated documentation files (the "Software"), to deal in
|
52
|
+
the Software without restriction, including without limitation the rights to
|
53
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
54
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
55
|
+
subject to the following conditions:
|
56
|
+
|
57
|
+
The above copyright notice and this permission notice shall be included in all
|
58
|
+
copies or substantial portions of the Software.
|
59
|
+
|
60
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
61
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
62
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
63
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
64
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
65
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
66
|
+
|
67
|
+
# [Jekyll](https://jekyllrb.com)
|
68
|
+
|
69
|
+
The MIT License (MIT)
|
70
|
+
|
71
|
+
Copyright (c) 2008-present Tom Preston-Werner and Jekyll contributors
|
72
|
+
|
73
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
74
|
+
this software and associated documentation files (the "Software"), to deal in
|
75
|
+
the Software without restriction, including without limitation the rights to
|
76
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
77
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
78
|
+
subject to the following conditions:
|
79
|
+
|
80
|
+
The above copyright notice and this permission notice shall be included in all
|
81
|
+
copies or substantial portions of the Software.
|
82
|
+
|
83
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
84
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
85
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
86
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
87
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
88
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,125 @@
|
|
1
|
+
---
|
2
|
+
title: jekyll-bulma-feather
|
3
|
+
---
|
4
|
+
|
5
|
+
# What?
|
6
|
+
|
7
|
+
It's a barebones Jekyll theme that includes Bulma and Feather, with some default
|
8
|
+
layouts and a few SCSS tweaks to provide a half-decent batteries-included
|
9
|
+
experience.
|
10
|
+
|
11
|
+
# Why?
|
12
|
+
|
13
|
+
I originally created this for [the website of one of my
|
14
|
+
projects](https://base32h.github.io), and decided it looks nice enough that I
|
15
|
+
might as well make it reusable so I could use it for other things, too.
|
16
|
+
|
17
|
+
# How?
|
18
|
+
|
19
|
+
## Install it
|
20
|
+
|
21
|
+
### Normal Jekyll
|
22
|
+
|
23
|
+
Add this line to your Jekyll site's `Gemfile`:
|
24
|
+
|
25
|
+
```ruby
|
26
|
+
gem "jekyll-bulma-feather"
|
27
|
+
```
|
28
|
+
|
29
|
+
And add this line to your Jekyll site's `_config.yml`:
|
30
|
+
|
31
|
+
```yaml
|
32
|
+
theme: jekyll-bulma-feather
|
33
|
+
```
|
34
|
+
|
35
|
+
And then execute:
|
36
|
+
|
37
|
+
$ bundle
|
38
|
+
|
39
|
+
Or install it yourself as:
|
40
|
+
|
41
|
+
$ gem install jekyll-bulma-feather
|
42
|
+
|
43
|
+
### GitHub Pages
|
44
|
+
|
45
|
+
Add this line to your site's `_config.yml`:
|
46
|
+
|
47
|
+
```yaml
|
48
|
+
remote_theme: YellowApple/jekyll-bulma-feather
|
49
|
+
```
|
50
|
+
|
51
|
+
## Use it
|
52
|
+
|
53
|
+
This theme's already pretty batteries-included with some sensible-ish defaults.
|
54
|
+
|
55
|
+
You might want to consider some customizations, in which case you can define
|
56
|
+
your own `assets/style.scss` with the following:
|
57
|
+
|
58
|
+
```scss
|
59
|
+
---
|
60
|
+
# frontmatter is required
|
61
|
+
---
|
62
|
+
|
63
|
+
// If you want to override any Bulma variables, do it here.
|
64
|
+
|
65
|
+
@import "jekyll-bulma-feather";
|
66
|
+
|
67
|
+
// Start full-blown customizing here.
|
68
|
+
```
|
69
|
+
|
70
|
+
If you want a clean slate, you can do `@import "bulma"` instead. You'll likely
|
71
|
+
want to define your own `_layouts/default.html` if you do so (since it relies
|
72
|
+
heavily on the theme's "battiers-included" tweaks).
|
73
|
+
|
74
|
+
### Navbar
|
75
|
+
|
76
|
+
The default templates include a nav bar that you can configure in your
|
77
|
+
`_config.yml`:
|
78
|
+
|
79
|
+
```yaml
|
80
|
+
navbar:
|
81
|
+
title: Blog
|
82
|
+
logo: /my-logo.svg
|
83
|
+
start:
|
84
|
+
- title: Home
|
85
|
+
url: /
|
86
|
+
icon: home
|
87
|
+
end:
|
88
|
+
- title: GitHub
|
89
|
+
url: https://github.com
|
90
|
+
icon: github
|
91
|
+
```
|
92
|
+
|
93
|
+
`site.navbar.title` and `site.navbar.logo` both fall back to `site.title` and
|
94
|
+
`site.logo`, respectively (that way, if your site's own title/logo ain't
|
95
|
+
well-suited for use in the nav bar, you can freely override them).
|
96
|
+
|
97
|
+
### Feather icons
|
98
|
+
|
99
|
+
You can use a Feather icon by name, like so:
|
100
|
+
|
101
|
+
```html
|
102
|
+
{% include feather.html icon="github" %}
|
103
|
+
```
|
104
|
+
|
105
|
+
The default Feather styling is through the `.feather-icon` class, which you can
|
106
|
+
modify in your site's SCSS files as needed (e.g. to make it bigger or smaller
|
107
|
+
than 1em for different text sizes, or to re-include this outright if you went
|
108
|
+
with the clean-slate Bulma approach per above).
|
109
|
+
|
110
|
+
```scss
|
111
|
+
.feather-icon {
|
112
|
+
@extend .icon;
|
113
|
+
margin-right: 0 !important;
|
114
|
+
|
115
|
+
>svg {
|
116
|
+
width: 1em;
|
117
|
+
height: 1em;
|
118
|
+
stroke: currentColor;
|
119
|
+
stroke-width: 2;
|
120
|
+
stroke-linecap: round;
|
121
|
+
stroke-linejoin: round;
|
122
|
+
fill: none;
|
123
|
+
}
|
124
|
+
}
|
125
|
+
```
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<footer>
|
2
|
+
<p>
|
3
|
+
Copyright © 2020 Ryan S. Northrup ("RyNo"). This website is free
|
4
|
+
software under the <a href="/COPYING.txt">ISC License</a>.
|
5
|
+
</p>
|
6
|
+
|
7
|
+
<p>
|
8
|
+
Built w/ <a href="https://bulma.io">Bulma</a>,
|
9
|
+
<a href="https://feathericons.com">Feather</a>,
|
10
|
+
and <a href="https://jekyllrb.com">Jekyll</a>, and hosted
|
11
|
+
on <a href="https://github.com/Base32H/base32h.github.io">GitHub
|
12
|
+
Pages</a>. Pull requests welcome.
|
13
|
+
</p>
|
14
|
+
</footer>
|
data/_includes/head.html
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
<head>
|
2
|
+
<meta charset="UTF-8">
|
3
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
4
|
+
|
5
|
+
{% if page.title %}
|
6
|
+
<title>{{page.title}} | {{site.title}}</title>
|
7
|
+
{% else %}
|
8
|
+
<title>{{site.title}}</title>
|
9
|
+
{% endif %}
|
10
|
+
|
11
|
+
<link href="/assets/style.css" rel="stylesheet" type="text/css">
|
12
|
+
</head>
|
data/_includes/nav.html
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
{% assign nav-logo = site.navbar.logo %}
|
2
|
+
{% unless nav-logo %}{% assign nav-logo = site.logo %}{% endunless %}
|
3
|
+
|
4
|
+
{% assign nav-title = site.navbar.title %}
|
5
|
+
{% unless nav-title %}{% assign nav-title = site.title %}{% endunless %}
|
6
|
+
|
7
|
+
<nav>
|
8
|
+
<ul class="navbar-brand">
|
9
|
+
{% if nav-logo %}
|
10
|
+
<li><a href="/"><img src="{{nav-logo}}"
|
11
|
+
alt="{{nav-title}}"></a></li>
|
12
|
+
{% endif %}
|
13
|
+
<li><a href="/">{{nav-title}}</a></li>
|
14
|
+
</ul>
|
15
|
+
|
16
|
+
<div class="navbar-menu">
|
17
|
+
<ul class="navbar-start">
|
18
|
+
{% for n in site.navbar.start %}
|
19
|
+
<li><a href="{{n.url}}">
|
20
|
+
{% if n.icon %}
|
21
|
+
{% include feather.html icon=n.icon %}
|
22
|
+
{% endif %}
|
23
|
+
<span>{{n.title}}</span>
|
24
|
+
</a></li>
|
25
|
+
{% endfor %}
|
26
|
+
</ul>
|
27
|
+
<ul class="navbar-end">
|
28
|
+
{% for n in site.navbar.end %}
|
29
|
+
<li><a href="{{n.url}}">
|
30
|
+
{% if n.icon %}
|
31
|
+
{% include feather.html icon=n.icon %}
|
32
|
+
{% endif %}
|
33
|
+
<span>{{n.title}}</span>
|
34
|
+
</a></li>
|
35
|
+
{% endfor %}
|
36
|
+
</ul>
|
37
|
+
</div>
|
38
|
+
</nav>
|
data/_layouts/empty.html
ADDED
data/_layouts/page.html
ADDED
data/_layouts/post.html
ADDED
data/_sass/bulma.scss
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
@import "bulma/bulma";
|
@@ -0,0 +1,10 @@
|
|
1
|
+
@charset "utf-8"
|
2
|
+
/*! bulma.io v0.9.1 | MIT License | github.com/jgthms/bulma */
|
3
|
+
@import "sass/utilities/_all"
|
4
|
+
@import "sass/base/_all"
|
5
|
+
@import "sass/elements/_all"
|
6
|
+
@import "sass/form/_all"
|
7
|
+
@import "sass/components/_all"
|
8
|
+
@import "sass/grid/_all"
|
9
|
+
@import "sass/helpers/_all"
|
10
|
+
@import "sass/layout/_all"
|
@@ -0,0 +1,145 @@
|
|
1
|
+
@import "../utilities/mixins"
|
2
|
+
|
3
|
+
$body-background-color: $scheme-main !default
|
4
|
+
$body-size: 16px !default
|
5
|
+
$body-min-width: 300px !default
|
6
|
+
$body-rendering: optimizeLegibility !default
|
7
|
+
$body-family: $family-primary !default
|
8
|
+
$body-overflow-x: hidden !default
|
9
|
+
$body-overflow-y: scroll !default
|
10
|
+
|
11
|
+
$body-color: $text !default
|
12
|
+
$body-font-size: 1em !default
|
13
|
+
$body-weight: $weight-normal !default
|
14
|
+
$body-line-height: 1.5 !default
|
15
|
+
|
16
|
+
$code-family: $family-code !default
|
17
|
+
$code-padding: 0.25em 0.5em 0.25em !default
|
18
|
+
$code-weight: normal !default
|
19
|
+
$code-size: 0.875em !default
|
20
|
+
|
21
|
+
$small-font-size: 0.875em !default
|
22
|
+
|
23
|
+
$hr-background-color: $background !default
|
24
|
+
$hr-height: 2px !default
|
25
|
+
$hr-margin: 1.5rem 0 !default
|
26
|
+
|
27
|
+
$strong-color: $text-strong !default
|
28
|
+
$strong-weight: $weight-bold !default
|
29
|
+
|
30
|
+
$pre-font-size: 0.875em !default
|
31
|
+
$pre-padding: 1.25rem 1.5rem !default
|
32
|
+
$pre-code-font-size: 1em !default
|
33
|
+
|
34
|
+
html
|
35
|
+
background-color: $body-background-color
|
36
|
+
font-size: $body-size
|
37
|
+
-moz-osx-font-smoothing: grayscale
|
38
|
+
-webkit-font-smoothing: antialiased
|
39
|
+
min-width: $body-min-width
|
40
|
+
overflow-x: $body-overflow-x
|
41
|
+
overflow-y: $body-overflow-y
|
42
|
+
text-rendering: $body-rendering
|
43
|
+
text-size-adjust: 100%
|
44
|
+
|
45
|
+
article,
|
46
|
+
aside,
|
47
|
+
figure,
|
48
|
+
footer,
|
49
|
+
header,
|
50
|
+
hgroup,
|
51
|
+
section
|
52
|
+
display: block
|
53
|
+
|
54
|
+
body,
|
55
|
+
button,
|
56
|
+
input,
|
57
|
+
optgroup,
|
58
|
+
select,
|
59
|
+
textarea
|
60
|
+
font-family: $body-family
|
61
|
+
|
62
|
+
code,
|
63
|
+
pre
|
64
|
+
-moz-osx-font-smoothing: auto
|
65
|
+
-webkit-font-smoothing: auto
|
66
|
+
font-family: $code-family
|
67
|
+
|
68
|
+
body
|
69
|
+
color: $body-color
|
70
|
+
font-size: $body-font-size
|
71
|
+
font-weight: $body-weight
|
72
|
+
line-height: $body-line-height
|
73
|
+
|
74
|
+
// Inline
|
75
|
+
|
76
|
+
a
|
77
|
+
color: $link
|
78
|
+
cursor: pointer
|
79
|
+
text-decoration: none
|
80
|
+
strong
|
81
|
+
color: currentColor
|
82
|
+
&:hover
|
83
|
+
color: $link-hover
|
84
|
+
|
85
|
+
code
|
86
|
+
background-color: $code-background
|
87
|
+
color: $code
|
88
|
+
font-size: $code-size
|
89
|
+
font-weight: $code-weight
|
90
|
+
padding: $code-padding
|
91
|
+
|
92
|
+
hr
|
93
|
+
background-color: $hr-background-color
|
94
|
+
border: none
|
95
|
+
display: block
|
96
|
+
height: $hr-height
|
97
|
+
margin: $hr-margin
|
98
|
+
|
99
|
+
img
|
100
|
+
height: auto
|
101
|
+
max-width: 100%
|
102
|
+
|
103
|
+
input[type="checkbox"],
|
104
|
+
input[type="radio"]
|
105
|
+
vertical-align: baseline
|
106
|
+
|
107
|
+
small
|
108
|
+
font-size: $small-font-size
|
109
|
+
|
110
|
+
span
|
111
|
+
font-style: inherit
|
112
|
+
font-weight: inherit
|
113
|
+
|
114
|
+
strong
|
115
|
+
color: $strong-color
|
116
|
+
font-weight: $strong-weight
|
117
|
+
|
118
|
+
// Block
|
119
|
+
|
120
|
+
fieldset
|
121
|
+
border: none
|
122
|
+
|
123
|
+
pre
|
124
|
+
+overflow-touch
|
125
|
+
background-color: $pre-background
|
126
|
+
color: $pre
|
127
|
+
font-size: $pre-font-size
|
128
|
+
overflow-x: auto
|
129
|
+
padding: $pre-padding
|
130
|
+
white-space: pre
|
131
|
+
word-wrap: normal
|
132
|
+
code
|
133
|
+
background-color: transparent
|
134
|
+
color: currentColor
|
135
|
+
font-size: $pre-code-font-size
|
136
|
+
padding: 0
|
137
|
+
|
138
|
+
table
|
139
|
+
td,
|
140
|
+
th
|
141
|
+
vertical-align: top
|
142
|
+
&:not([align])
|
143
|
+
text-align: inherit
|
144
|
+
th
|
145
|
+
color: $text-strong
|