ampstart-blog-post 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +116 -0
- data/_includes/analytics.html +15 -0
- data/_includes/categories.html +18 -0
- data/_includes/footer.html +9 -0
- data/_includes/head.html +32 -0
- data/_includes/header.html +4 -0
- data/_includes/metadata.json +30 -0
- data/_includes/sidebar.html +44 -0
- data/_includes/social.html +16 -0
- data/_includes/styles.scss +2 -0
- data/_layouts/default.html +18 -0
- data/_layouts/page.html +17 -0
- data/_layouts/post.html +19 -0
- data/_sass/_blog.scss +2051 -0
- data/_sass/_syntax-highlighting.scss +70 -0
- data/assets/images/amp_favicon.png +0 -0
- data/assets/images/blog/ingredient1.jpg +0 -0
- data/assets/images/blog/ingredient2.jpg +0 -0
- data/assets/images/blog/ingredient3.jpg +0 -0
- data/assets/images/blog/logo.png +0 -0
- data/assets/images/blog/meetloloa.jpg +0 -0
- data/assets/images/blog/popular1.jpg +0 -0
- data/assets/images/blog/popular2.png +0 -0
- data/assets/images/blog/spritzer.jpg +0 -0
- data/assets/images/blog/want1.png +0 -0
- data/assets/images/blog/want2.png +0 -0
- data/assets/images/blog/want3.png +0 -0
- metadata +129 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: add1ce4d8bf2bf851ff08b211c0204059acf6c72
|
4
|
+
data.tar.gz: 92887cdd62d8a205b6b53755422514ef341f4730
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 1fe738321719a26addb6149e599aba91a30849db407b9a021d4af1e1504bea81fbed5c5185c4f3a05d861b1ba71f32e1c622060737c29ce2c0202dc429e78580
|
7
|
+
data.tar.gz: a2d2a8c6d21b030b803ab59743b2f597624523a745d897706dcb85e774d6606f46d619c59dfff6bdf13210cae62bea7bd3304155ff9627f6fc406c78bc0f15a4
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 Shohei Yamasaki
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,116 @@
|
|
1
|
+
# ampstart-blog-post
|
2
|
+
|
3
|
+
ampstart-blog-post is [ampstart.com](https://www.ampstart.com/) jekyll theme.
|
4
|
+
|
5
|
+
[Theme preview](https://shoyan.github.io/ampstart-blog-post/)
|
6
|
+
|
7
|
+
![ampstart-blog-post theme preview](/screenshot.png)
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
Add this line to your Jekyll site's `Gemfile`:
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
gem "ampstart-blog-post"
|
15
|
+
```
|
16
|
+
|
17
|
+
And add this line to your Jekyll site's `_config.yml`:
|
18
|
+
|
19
|
+
```yaml
|
20
|
+
theme: ampstart-blog-post
|
21
|
+
```
|
22
|
+
|
23
|
+
And then execute:
|
24
|
+
|
25
|
+
$ bundle
|
26
|
+
|
27
|
+
Or install it yourself as:
|
28
|
+
|
29
|
+
$ gem install ampstart-blog-post
|
30
|
+
|
31
|
+
## Writing Posts with AMP
|
32
|
+
|
33
|
+
Writing posts works
|
34
|
+
[just like it does normally in Jekyll](https://jekyllrb.com/docs/posts/)
|
35
|
+
except when you want to include extra resources likes pictures, videos,
|
36
|
+
embedded Twitter posts, etc.
|
37
|
+
|
38
|
+
AMP has it's own set of special html tags for including content. You
|
39
|
+
should use these instead of normal Markdown or HTML tags.
|
40
|
+
|
41
|
+
The two you are are most likely to need are `<amp-img>` and `<amp-youtube>`:
|
42
|
+
|
43
|
+
### Images in your posts
|
44
|
+
|
45
|
+
```
|
46
|
+
<amp-img width="600" height="300" layout="responsive" src="/assets/images/your_picture.jpg"></amp-img>
|
47
|
+
```
|
48
|
+
|
49
|
+
### Youtube Videos in your posts
|
50
|
+
|
51
|
+
```
|
52
|
+
<amp-youtube data-videoid="lBTCB7yLs8Y" layout="responsive" width="480" height="270"></amp-youtube>
|
53
|
+
```
|
54
|
+
|
55
|
+
### Embedding other types of content
|
56
|
+
|
57
|
+
The AMP Project provides helpers for many other types of content like audio,
|
58
|
+
ads, Google Analytics, etc.
|
59
|
+
|
60
|
+
* Built-in AMP tags:
|
61
|
+
* https://github.com/ampproject/amphtml/blob/master/builtins/README.md
|
62
|
+
|
63
|
+
* Extended AMP tags:
|
64
|
+
* https://github.com/ampproject/amphtml/blob/master/extensions/README.md
|
65
|
+
|
66
|
+
## Validating your page with AMP
|
67
|
+
|
68
|
+
AMP adds built-in validation logic to make sure your pages follow all
|
69
|
+
the rules so they render as fast as possible.
|
70
|
+
|
71
|
+
To check your page, just add `#development=1` to any url on your site and then
|
72
|
+
check the javascript console in your browser.
|
73
|
+
|
74
|
+
http://localhost:4000/#development=1
|
75
|
+
|
76
|
+
You will either see a success message:
|
77
|
+
|
78
|
+
```
|
79
|
+
Powered by AMP ⚡ HTML – Version 1457112743399
|
80
|
+
AMP validation successful.
|
81
|
+
```
|
82
|
+
|
83
|
+
Or you will see a list of errors to fix:
|
84
|
+
|
85
|
+
```
|
86
|
+
Powered by AMP ⚡ HTML – Version 1457112743399
|
87
|
+
AMP validation had errors:
|
88
|
+
The attribute 'style' may not appear in tag 'span'
|
89
|
+
The attribute 'style' may not appear in tag 'div'
|
90
|
+
```
|
91
|
+
|
92
|
+
### Enabling Google Analytics
|
93
|
+
|
94
|
+
To enable Google Anaytics, add the following lines to your Jekyll site:
|
95
|
+
|
96
|
+
```yaml
|
97
|
+
google_analytics: UA-NNNNNNNN-N
|
98
|
+
```
|
99
|
+
|
100
|
+
Google Analytics will only appear in production, i.e., `JEKYLL_ENV=production`
|
101
|
+
## Contributing
|
102
|
+
|
103
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
104
|
+
|
105
|
+
## Development
|
106
|
+
|
107
|
+
To set up your environment to develop this theme, run `bundle install`.
|
108
|
+
|
109
|
+
Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
|
110
|
+
|
111
|
+
When your theme is released, only the files in `_layouts`, `_includes`, and `_sass` tracked with Git will be released.
|
112
|
+
|
113
|
+
## License
|
114
|
+
|
115
|
+
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
116
|
+
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<amp-analytics type="googleanalytics" id="amp-analytics">
|
2
|
+
<script type="application/json">
|
3
|
+
{
|
4
|
+
"vars": {
|
5
|
+
"account": "{{ site.google_analytics }}"
|
6
|
+
},
|
7
|
+
"triggers": {
|
8
|
+
"trackPageview": {
|
9
|
+
"on": "visible",
|
10
|
+
"request": "pageview"
|
11
|
+
}
|
12
|
+
}
|
13
|
+
}
|
14
|
+
</script>
|
15
|
+
</amp-analytics>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<section>
|
2
|
+
<h2 class="mb3">Categories</h2>
|
3
|
+
<ul class="list-reset p0 m0 mb4">
|
4
|
+
<li class="mb2">
|
5
|
+
<a href="#" class="text-decoration-none h3">Fashion</a>
|
6
|
+
</li>
|
7
|
+
<li class="mb2">
|
8
|
+
<a href="#" class="text-decoration-none h3">Travel</a>
|
9
|
+
</li>
|
10
|
+
<li class="mb2">
|
11
|
+
<a href="#" class="text-decoration-none h3">Decor</a>
|
12
|
+
</li>
|
13
|
+
<li class="mb2">
|
14
|
+
<a href="#" class="text-decoration-none h3">Beauty</a>
|
15
|
+
</li>
|
16
|
+
|
17
|
+
</ul>
|
18
|
+
</section>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<footer class="ampstart-footer flex flex-column items-center p3">
|
2
|
+
|
3
|
+
<nav class="ampstart-footer-nav">
|
4
|
+
<ul class="list-reset flex flex-wrap mb3">
|
5
|
+
<li class="px1"><a class="text-decoration-none caps h5" href="{{site.baseurl}}/about/">About</a></li>
|
6
|
+
</ul>
|
7
|
+
</nav>
|
8
|
+
<small>© Your Company, 2016</small>
|
9
|
+
</footer>
|
data/_includes/head.html
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
<head>
|
2
|
+
<meta charset="utf-8">
|
3
|
+
<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
|
4
|
+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
|
5
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
6
|
+
|
7
|
+
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
|
8
|
+
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
|
9
|
+
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}">
|
10
|
+
<link rel="shortcut icon" href="{{site.baseurl}}/assets/images/amp_favicon.png">
|
11
|
+
|
12
|
+
<script type="application/ld+json">
|
13
|
+
{% include metadata.json %}
|
14
|
+
</script>
|
15
|
+
|
16
|
+
<style amp-custom>
|
17
|
+
{% capture include_to_scssify %}
|
18
|
+
{% include styles.scss %}
|
19
|
+
{% endcapture %}
|
20
|
+
{{ include_to_scssify | scssify | replace_first: '@charset "UTF-8";', '' | strip_newlines }}
|
21
|
+
</style>
|
22
|
+
|
23
|
+
<style amp-boilerplate>body{-webkit-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-moz-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-ms-animation:-amp-start 8s steps(1,end) 0s 1 normal both;animation:-amp-start 8s steps(1,end) 0s 1 normal both}@-webkit-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-moz-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-ms-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-o-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}</style><noscript><style amp-boilerplate>body{-webkit-animation:none;-moz-animation:none;-ms-animation:none;animation:none}</style></noscript>
|
24
|
+
|
25
|
+
<script custom-element="amp-carousel" src="https://cdn.ampproject.org/v0/amp-carousel-0.1.js" async=""></script>
|
26
|
+
<script custom-element="amp-sidebar" src="https://cdn.ampproject.org/v0/amp-sidebar-0.1.js" async=""></script>
|
27
|
+
<script custom-element="amp-accordion" src="https://cdn.ampproject.org/v0/amp-accordion-0.1.js" async=""></script>
|
28
|
+
<script custom-element="amp-form" src="https://cdn.ampproject.org/v0/amp-form-0.1.js" async=""></script>
|
29
|
+
<script custom-element="amp-instagram" src="https://cdn.ampproject.org/v0/amp-instagram-0.1.js" async=""></script>
|
30
|
+
<script custom-element="amp-youtube" src="https://cdn.ampproject.org/v0/amp-youtube-0.1.js" async=""></script>
|
31
|
+
<script async custom-element="amp-analytics" src="https://cdn.ampproject.org/v0/amp-analytics-0.1.js"></script>
|
32
|
+
</head>
|
@@ -0,0 +1,4 @@
|
|
1
|
+
<header class="ampstart-headerbar fixed flex justify-start items-center top-0 left-0 right-0 pl2 pr4">
|
2
|
+
<div role="button" on="tap:header-sidebar.toggle" tabindex="0" class="ampstart-navbar-trigger pr2">☰</div>
|
3
|
+
<a href="{{site.baseurl}}/" class="my0 mx-auto text-decoration-none"><h1 class="blog-title">{{ site.title }}</h1></a>
|
4
|
+
</header>
|
@@ -0,0 +1,30 @@
|
|
1
|
+
|
2
|
+
{
|
3
|
+
"@context": "http://schema.org",
|
4
|
+
"@type": "NewsArticle",
|
5
|
+
"mainEntityOfPage": "{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}",
|
6
|
+
"headline": "{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}",
|
7
|
+
"datePublished": "{% if page.date %}{{ page.date | date_to_xmlschema }}{% else %}{{ site.time | date_to_xmlschema }}{% endif %}",
|
8
|
+
"dateModified": "{% if page.date %}{{ page.date | date_to_xmlschema }}{% else %}{{ site.time | date_to_xmlschema }}{% endif %}",
|
9
|
+
"description": "{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}",
|
10
|
+
"author": {
|
11
|
+
"@type": "Person",
|
12
|
+
"name": "{{ site.name }}"
|
13
|
+
},
|
14
|
+
"publisher": {
|
15
|
+
"@type": "Organization",
|
16
|
+
"name": "{{ site.title }}",
|
17
|
+
"logo": {
|
18
|
+
"@type": "ImageObject",
|
19
|
+
"url": "{{ site.logo | prepend: site.baseurl | prepend: site.url }}",
|
20
|
+
"width": "60",
|
21
|
+
"height": "60"
|
22
|
+
}
|
23
|
+
},
|
24
|
+
"image": {
|
25
|
+
"@type": "ImageObject",
|
26
|
+
"url": "{{ site.logo | prepend: site.baseurl | prepend: site.url }}",
|
27
|
+
"height": "60",
|
28
|
+
"width": "60"
|
29
|
+
}
|
30
|
+
}
|
@@ -0,0 +1,44 @@
|
|
1
|
+
<!-- Start Sidebar -->
|
2
|
+
<amp-sidebar id="header-sidebar" class="ampstart-sidebar px3 " layout="nodisplay">
|
3
|
+
|
4
|
+
<div class="flex justify-start items-center ampstart-sidebar-header">
|
5
|
+
<div role="button" on="tap:header-sidebar.toggle" tabindex="0" class="ampstart-navbar-trigger items-start">✕</div>
|
6
|
+
</div>
|
7
|
+
|
8
|
+
<nav class="ampstart-sidebar-nav ampstart-nav">
|
9
|
+
|
10
|
+
<ul class="list-reset m0 p0 caps h5">
|
11
|
+
<li class="ampstart-nav-item"><a href="{{site.baseurl}}/about/">About</a></li>
|
12
|
+
</ul>
|
13
|
+
|
14
|
+
</nav>
|
15
|
+
|
16
|
+
<ul class="ampstart-social-follow list-reset flex justify-around items-center flex-wrap m0 mb4">
|
17
|
+
{% if site.twitter_username %}
|
18
|
+
<li>
|
19
|
+
<a href="https://twitter.com/{{ site.twitter_username }}" class="inline-block" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="22.2" viewbox="0 0 53 49"><title>Twitter</title><path d="M45 6.9c-1.6 1-3.3 1.6-5.2 2-1.5-1.6-3.6-2.6-5.9-2.6-4.5 0-8.2 3.7-8.2 8.3 0 .6.1 1.3.2 1.9-6.8-.4-12.8-3.7-16.8-8.7C8.4 9 8 10.5 8 12c0 2.8 1.4 5.4 3.6 6.9-1.3-.1-2.6-.5-3.7-1.1v.1c0 4 2.8 7.4 6.6 8.1-.7.2-1.5.3-2.2.3-.5 0-1 0-1.5-.1 1 3.3 4 5.7 7.6 5.7-2.8 2.2-6.3 3.6-10.2 3.6-.6 0-1.3-.1-1.9-.1 3.6 2.3 7.9 3.7 12.5 3.7 15.1 0 23.3-12.6 23.3-23.6 0-.3 0-.7-.1-1 1.6-1.2 3-2.7 4.1-4.3-1.4.6-3 1.1-4.7 1.3 1.7-1 3-2.7 3.6-4.6" class="ampstart-icon ampstart-icon-twitter"></path></svg></a>
|
20
|
+
</li>
|
21
|
+
{% endif %}
|
22
|
+
|
23
|
+
{% if site.facebook_username %}
|
24
|
+
<li>
|
25
|
+
<a href="https://www.facebook.com/{{ site.facebook_username }}" class="inline-block" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="23.6" viewbox="0 0 56 55"><title>Facebook</title><path d="M47.5 43c0 1.2-.9 2.1-2.1 2.1h-10V30h5.1l.8-5.9h-5.9v-3.7c0-1.7.5-2.9 3-2.9h3.1v-5.3c-.6 0-2.4-.2-4.6-.2-4.5 0-7.5 2.7-7.5 7.8v4.3h-5.1V30h5.1v15.1H10.7c-1.2 0-2.2-.9-2.2-2.1V8.3c0-1.2 1-2.2 2.2-2.2h34.7c1.2 0 2.1 1 2.1 2.2V43" class="ampstart-icon ampstart-icon-fb"></path></svg></a>
|
26
|
+
</li>
|
27
|
+
{% endif %}
|
28
|
+
|
29
|
+
{% if site.instagram_username %}
|
30
|
+
<li>
|
31
|
+
<a href="https://www.instagram.com/{{ site.instagram_username }}/" class="inline-block" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 54 54"><title>instagram</title><path d="M27.2 6.1c-5.1 0-5.8 0-7.8.1s-3.4.4-4.6.9c-1.2.5-2.3 1.1-3.3 2.2-1.1 1-1.7 2.1-2.2 3.3-.5 1.2-.8 2.6-.9 4.6-.1 2-.1 2.7-.1 7.8s0 5.8.1 7.8.4 3.4.9 4.6c.5 1.2 1.1 2.3 2.2 3.3 1 1.1 2.1 1.7 3.3 2.2 1.2.5 2.6.8 4.6.9 2 .1 2.7.1 7.8.1s5.8 0 7.8-.1 3.4-.4 4.6-.9c1.2-.5 2.3-1.1 3.3-2.2 1.1-1 1.7-2.1 2.2-3.3.5-1.2.8-2.6.9-4.6.1-2 .1-2.7.1-7.8s0-5.8-.1-7.8-.4-3.4-.9-4.6c-.5-1.2-1.1-2.3-2.2-3.3-1-1.1-2.1-1.7-3.3-2.2-1.2-.5-2.6-.8-4.6-.9-2-.1-2.7-.1-7.8-.1zm0 3.4c5 0 5.6 0 7.6.1 1.9.1 2.9.4 3.5.7.9.3 1.6.7 2.2 1.4.7.6 1.1 1.3 1.4 2.2.3.6.6 1.6.7 3.5.1 2 .1 2.6.1 7.6s0 5.6-.1 7.6c-.1 1.9-.4 2.9-.7 3.5-.3.9-.7 1.6-1.4 2.2-.7.7-1.3 1.1-2.2 1.4-.6.3-1.7.6-3.5.7-2 .1-2.6.1-7.6.1-5.1 0-5.7 0-7.7-.1-1.8-.1-2.9-.4-3.5-.7-.9-.3-1.5-.7-2.2-1.4-.7-.7-1.1-1.3-1.4-2.2-.3-.6-.6-1.7-.7-3.5 0-2-.1-2.6-.1-7.6 0-5.1.1-5.7.1-7.7.1-1.8.4-2.8.7-3.5.3-.9.7-1.5 1.4-2.2.7-.6 1.3-1.1 2.2-1.4.6-.3 1.6-.6 3.5-.7h7.7zm0 5.8c-5.4 0-9.7 4.3-9.7 9.7 0 5.4 4.3 9.7 9.7 9.7 5.4 0 9.7-4.3 9.7-9.7 0-5.4-4.3-9.7-9.7-9.7zm0 16c-3.5 0-6.3-2.8-6.3-6.3s2.8-6.3 6.3-6.3 6.3 2.8 6.3 6.3-2.8 6.3-6.3 6.3zm12.4-16.4c0 1.3-1.1 2.3-2.3 2.3-1.3 0-2.3-1-2.3-2.3 0-1.2 1-2.3 2.3-2.3 1.2 0 2.3 1.1 2.3 2.3z" class="ampstart-icon ampstart-icon-instagram"></path></svg></a>
|
32
|
+
</li>
|
33
|
+
{% endif %}
|
34
|
+
|
35
|
+
{% if site.pinterest_username %}
|
36
|
+
<li>
|
37
|
+
<a href="https://jp.pinterest.com/{{ site.pinterest_username }}/" class="inline-block" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="28.5" viewbox="0 0 43 51"><title>pinterest</title><path d="M-13.6-5c0-1.6.2-3 .8-4.4.5-1.4 1.2-2.6 2.2-3.6.9-1 2-1.9 3.2-2.6 1.2-.8 2.5-1.3 3.9-1.7 1.5-.4 2.9-.5 4.4-.5 2.2 0 4.3.4 6.2 1.4 1.9.9 3.5 2.3 4.7 4.1 1.2 1.9 1.8 3.9 1.8 6.2 0 1.4-.1 2.7-.4 4C13-.8 12.5.5 12 1.7c-.6 1.2-1.3 2.3-2.2 3.2C9 5.8 8 6.6 6.7 7.1c-1.2.6-2.5.9-4 .9-1 0-1.9-.3-2.9-.7-.9-.5-1.6-1.1-2-1.9-.1.5-.3 1.4-.6 2.4-.3 1.1-.4 1.7-.5 2-.1.3-.2.9-.4 1.6-.3.7-.4 1.2-.6 1.5-.1.3-.4.7-.7 1.3-.3.6-.6 1.2-1 1.7-.3.5-.7 1.1-1.3 1.8l-.3.1-.2-.2c-.2-2.2-.3-3.6-.3-4 0-1.3.2-2.8.5-4.4.3-1.7.8-3.7 1.4-6.2.6-2.5 1-3.9 1.1-4.4-.5-.9-.7-2.1-.7-3.6 0-1.2.4-2.3 1.1-3.3.8-1.1 1.7-1.6 2.8-1.6.9 0 1.6.3 2.1.9.4.6.7 1.3.7 2.2 0 .9-.3 2.3-1 4.1C-.7-.9-1 .4-1 1.3c0 .9.3 1.6 1 2.2.6.6 1.4.9 2.3.9.8 0 1.5-.2 2.2-.5.6-.4 1.2-.9 1.6-1.5.5-.6.9-1.3 1.2-2 .4-.8.6-1.5.8-2.4.2-.8.4-1.6.5-2.4.1-.7.1-1.4.1-2.1 0-2.5-.8-4.4-2.3-5.8-1.6-1.4-3.6-2.1-6.1-2.1-2.8 0-5.2 1-7.1 2.8-1.9 1.9-2.9 4.2-2.9 7.1 0 .6.1 1.2.3 1.8.2.6.4 1.1.6 1.4.2.3.4.7.5 1 .2.3.3.5.3.6 0 .4-.1.9-.3 1.6-.2.6-.5 1-.8 1 0 0-.1-.1-.4-.1-.7-.2-1.3-.6-1.9-1.2-.5-.6-1-1.3-1.3-2-.3-.8-.5-1.6-.7-2.4-.2-.7-.2-1.5-.2-2.2z" transform="translate(21.734 23.748)" class="ampstart-icon ampstart-icon-pinterest"></path></svg></a>
|
38
|
+
</li>
|
39
|
+
{% endif %}
|
40
|
+
</ul>
|
41
|
+
|
42
|
+
</amp-sidebar>
|
43
|
+
<!-- End Sidebar -->
|
44
|
+
<!-- End Navbar -->
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<section class="items-center p3">
|
2
|
+
<ul class="ampstart-social-follow list-reset flex justify-around items-center flex-wrap m0 mb4">
|
3
|
+
<li class="mr2">
|
4
|
+
<a href="#" class="inline-block"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="22.2" viewbox="0 0 53 49"><title>Twitter</title><path d="M45 6.9c-1.6 1-3.3 1.6-5.2 2-1.5-1.6-3.6-2.6-5.9-2.6-4.5 0-8.2 3.7-8.2 8.3 0 .6.1 1.3.2 1.9-6.8-.4-12.8-3.7-16.8-8.7C8.4 9 8 10.5 8 12c0 2.8 1.4 5.4 3.6 6.9-1.3-.1-2.6-.5-3.7-1.1v.1c0 4 2.8 7.4 6.6 8.1-.7.2-1.5.3-2.2.3-.5 0-1 0-1.5-.1 1 3.3 4 5.7 7.6 5.7-2.8 2.2-6.3 3.6-10.2 3.6-.6 0-1.3-.1-1.9-.1 3.6 2.3 7.9 3.7 12.5 3.7 15.1 0 23.3-12.6 23.3-23.6 0-.3 0-.7-.1-1 1.6-1.2 3-2.7 4.1-4.3-1.4.6-3 1.1-4.7 1.3 1.7-1 3-2.7 3.6-4.6" class="ampstart-icon ampstart-icon-twitter"></path></svg></a>
|
5
|
+
</li>
|
6
|
+
<li class="mr2">
|
7
|
+
<a href="#" class="inline-block"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="23.6" viewbox="0 0 56 55"><title>Facebook</title><path d="M47.5 43c0 1.2-.9 2.1-2.1 2.1h-10V30h5.1l.8-5.9h-5.9v-3.7c0-1.7.5-2.9 3-2.9h3.1v-5.3c-.6 0-2.4-.2-4.6-.2-4.5 0-7.5 2.7-7.5 7.8v4.3h-5.1V30h5.1v15.1H10.7c-1.2 0-2.2-.9-2.2-2.1V8.3c0-1.2 1-2.2 2.2-2.2h34.7c1.2 0 2.1 1 2.1 2.2V43" class="ampstart-icon ampstart-icon-fb"></path></svg></a>
|
8
|
+
</li>
|
9
|
+
<li class="mr2">
|
10
|
+
<a href="#" class="inline-block"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 54 54"><title>instagram</title><path d="M27.2 6.1c-5.1 0-5.8 0-7.8.1s-3.4.4-4.6.9c-1.2.5-2.3 1.1-3.3 2.2-1.1 1-1.7 2.1-2.2 3.3-.5 1.2-.8 2.6-.9 4.6-.1 2-.1 2.7-.1 7.8s0 5.8.1 7.8.4 3.4.9 4.6c.5 1.2 1.1 2.3 2.2 3.3 1 1.1 2.1 1.7 3.3 2.2 1.2.5 2.6.8 4.6.9 2 .1 2.7.1 7.8.1s5.8 0 7.8-.1 3.4-.4 4.6-.9c1.2-.5 2.3-1.1 3.3-2.2 1.1-1 1.7-2.1 2.2-3.3.5-1.2.8-2.6.9-4.6.1-2 .1-2.7.1-7.8s0-5.8-.1-7.8-.4-3.4-.9-4.6c-.5-1.2-1.1-2.3-2.2-3.3-1-1.1-2.1-1.7-3.3-2.2-1.2-.5-2.6-.8-4.6-.9-2-.1-2.7-.1-7.8-.1zm0 3.4c5 0 5.6 0 7.6.1 1.9.1 2.9.4 3.5.7.9.3 1.6.7 2.2 1.4.7.6 1.1 1.3 1.4 2.2.3.6.6 1.6.7 3.5.1 2 .1 2.6.1 7.6s0 5.6-.1 7.6c-.1 1.9-.4 2.9-.7 3.5-.3.9-.7 1.6-1.4 2.2-.7.7-1.3 1.1-2.2 1.4-.6.3-1.7.6-3.5.7-2 .1-2.6.1-7.6.1-5.1 0-5.7 0-7.7-.1-1.8-.1-2.9-.4-3.5-.7-.9-.3-1.5-.7-2.2-1.4-.7-.7-1.1-1.3-1.4-2.2-.3-.6-.6-1.7-.7-3.5 0-2-.1-2.6-.1-7.6 0-5.1.1-5.7.1-7.7.1-1.8.4-2.8.7-3.5.3-.9.7-1.5 1.4-2.2.7-.6 1.3-1.1 2.2-1.4.6-.3 1.6-.6 3.5-.7h7.7zm0 5.8c-5.4 0-9.7 4.3-9.7 9.7 0 5.4 4.3 9.7 9.7 9.7 5.4 0 9.7-4.3 9.7-9.7 0-5.4-4.3-9.7-9.7-9.7zm0 16c-3.5 0-6.3-2.8-6.3-6.3s2.8-6.3 6.3-6.3 6.3 2.8 6.3 6.3-2.8 6.3-6.3 6.3zm12.4-16.4c0 1.3-1.1 2.3-2.3 2.3-1.3 0-2.3-1-2.3-2.3 0-1.2 1-2.3 2.3-2.3 1.2 0 2.3 1.1 2.3 2.3z" class="ampstart-icon ampstart-icon-instagram"></path></svg></a>
|
11
|
+
</li>
|
12
|
+
<li class="mr2">
|
13
|
+
<a href="#" class="inline-block"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="28.5" viewbox="0 0 43 51"><title>pinterest</title><path d="M-13.6-5c0-1.6.2-3 .8-4.4.5-1.4 1.2-2.6 2.2-3.6.9-1 2-1.9 3.2-2.6 1.2-.8 2.5-1.3 3.9-1.7 1.5-.4 2.9-.5 4.4-.5 2.2 0 4.3.4 6.2 1.4 1.9.9 3.5 2.3 4.7 4.1 1.2 1.9 1.8 3.9 1.8 6.2 0 1.4-.1 2.7-.4 4C13-.8 12.5.5 12 1.7c-.6 1.2-1.3 2.3-2.2 3.2C9 5.8 8 6.6 6.7 7.1c-1.2.6-2.5.9-4 .9-1 0-1.9-.3-2.9-.7-.9-.5-1.6-1.1-2-1.9-.1.5-.3 1.4-.6 2.4-.3 1.1-.4 1.7-.5 2-.1.3-.2.9-.4 1.6-.3.7-.4 1.2-.6 1.5-.1.3-.4.7-.7 1.3-.3.6-.6 1.2-1 1.7-.3.5-.7 1.1-1.3 1.8l-.3.1-.2-.2c-.2-2.2-.3-3.6-.3-4 0-1.3.2-2.8.5-4.4.3-1.7.8-3.7 1.4-6.2.6-2.5 1-3.9 1.1-4.4-.5-.9-.7-2.1-.7-3.6 0-1.2.4-2.3 1.1-3.3.8-1.1 1.7-1.6 2.8-1.6.9 0 1.6.3 2.1.9.4.6.7 1.3.7 2.2 0 .9-.3 2.3-1 4.1C-.7-.9-1 .4-1 1.3c0 .9.3 1.6 1 2.2.6.6 1.4.9 2.3.9.8 0 1.5-.2 2.2-.5.6-.4 1.2-.9 1.6-1.5.5-.6.9-1.3 1.2-2 .4-.8.6-1.5.8-2.4.2-.8.4-1.6.5-2.4.1-.7.1-1.4.1-2.1 0-2.5-.8-4.4-2.3-5.8-1.6-1.4-3.6-2.1-6.1-2.1-2.8 0-5.2 1-7.1 2.8-1.9 1.9-2.9 4.2-2.9 7.1 0 .6.1 1.2.3 1.8.2.6.4 1.1.6 1.4.2.3.4.7.5 1 .2.3.3.5.3.6 0 .4-.1.9-.3 1.6-.2.6-.5 1-.8 1 0 0-.1-.1-.4-.1-.7-.2-1.3-.6-1.9-1.2-.5-.6-1-1.3-1.3-2-.3-.8-.5-1.6-.7-2.4-.2-.7-.2-1.5-.2-2.2z" transform="translate(21.734 23.748)" class="ampstart-icon ampstart-icon-pinterest"></path></svg></a>
|
14
|
+
</li>
|
15
|
+
</ul>
|
16
|
+
</section>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html ⚡ lang="en">
|
3
|
+
{% include head.html %}
|
4
|
+
|
5
|
+
<body>
|
6
|
+
{% if jekyll.environment == 'production' and site.google_analytics %}
|
7
|
+
{% include analytics.html %}
|
8
|
+
{% endif %}
|
9
|
+
|
10
|
+
{% include header.html %}
|
11
|
+
|
12
|
+
{% include sidebar.html %}
|
13
|
+
|
14
|
+
{{ content }}
|
15
|
+
|
16
|
+
</body>
|
17
|
+
|
18
|
+
</html>
|
data/_layouts/page.html
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<main class="content" role="main">
|
6
|
+
<article class="post">
|
7
|
+
<div class="post-meta">
|
8
|
+
<h1 class="post-title pt4">{{ page.title }}</h1>
|
9
|
+
</div>
|
10
|
+
<section class="post-content">
|
11
|
+
<a name="topofpage"></a>
|
12
|
+
{{content}}
|
13
|
+
</section>
|
14
|
+
</article>
|
15
|
+
</main>
|
16
|
+
|
17
|
+
{% include footer.html %}
|
data/_layouts/post.html
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<main id="content" role="main" class="">
|
6
|
+
<article class="article">
|
7
|
+
<span class="ampstart-accent block px3 pt2 mb2"></span>
|
8
|
+
<h1 class="mb1">{{ page.title }}</h1>
|
9
|
+
|
10
|
+
<address class="ampstart-byline clearfix mb4 h5">
|
11
|
+
<time class="ampstart-byline-pubdate block bold my1" datetime="{{ page.date | date: "%F %R" }}">{{ page.date | date_to_string }}</time>
|
12
|
+
</address>
|
13
|
+
|
14
|
+
{{content}}
|
15
|
+
|
16
|
+
{% include footer.html %}
|
17
|
+
|
18
|
+
</article>
|
19
|
+
</main>
|
data/_sass/_blog.scss
ADDED
@@ -0,0 +1,2051 @@
|
|
1
|
+
/*! Bassplate | MIT License | http://github.com/basscss/bassplate */
|
2
|
+
|
3
|
+
$grey-color: #828282 !default;
|
4
|
+
$grey-color-light: lighten($grey-color, 40%) !default;
|
5
|
+
$grey-color-dark: darken($grey-color, 25%) !default;
|
6
|
+
|
7
|
+
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */html {
|
8
|
+
font-family: sans-serif;
|
9
|
+
line-height: 1.15;
|
10
|
+
-ms-text-size-adjust: 100%;
|
11
|
+
-webkit-text-size-adjust: 100%
|
12
|
+
}
|
13
|
+
|
14
|
+
body {
|
15
|
+
margin: 0
|
16
|
+
}
|
17
|
+
|
18
|
+
article,aside,footer,header,nav,section {
|
19
|
+
display: block
|
20
|
+
}
|
21
|
+
|
22
|
+
h1 {
|
23
|
+
font-size: 2em;
|
24
|
+
margin: .67em 0
|
25
|
+
}
|
26
|
+
|
27
|
+
figcaption,figure,main {
|
28
|
+
display: block
|
29
|
+
}
|
30
|
+
|
31
|
+
blockquote {
|
32
|
+
padding: 0 1em;
|
33
|
+
color: #777;
|
34
|
+
border-left: 0.25em solid #ddd;
|
35
|
+
}
|
36
|
+
|
37
|
+
figure {
|
38
|
+
margin: 1em 0
|
39
|
+
}
|
40
|
+
|
41
|
+
hr {
|
42
|
+
box-sizing: content-box;
|
43
|
+
height: 0;
|
44
|
+
overflow: visible
|
45
|
+
}
|
46
|
+
|
47
|
+
pre {
|
48
|
+
font-family: monospace,monospace;
|
49
|
+
font-size: 1em
|
50
|
+
}
|
51
|
+
|
52
|
+
a {
|
53
|
+
background-color: transparent;
|
54
|
+
-webkit-text-decoration-skip: objects
|
55
|
+
}
|
56
|
+
|
57
|
+
a:active,a:hover {
|
58
|
+
outline-width: 0
|
59
|
+
}
|
60
|
+
|
61
|
+
abbr[title] {
|
62
|
+
border-bottom: none;
|
63
|
+
text-decoration: underline;
|
64
|
+
text-decoration: underline dotted
|
65
|
+
}
|
66
|
+
|
67
|
+
b,strong {
|
68
|
+
font-weight: inherit;
|
69
|
+
font-weight: bolder
|
70
|
+
}
|
71
|
+
|
72
|
+
code,kbd,samp {
|
73
|
+
font-family: monospace,monospace;
|
74
|
+
font-size: 1em
|
75
|
+
}
|
76
|
+
pre,
|
77
|
+
code {
|
78
|
+
border: 1px solid $grey-color-light;
|
79
|
+
border-radius: 3px;
|
80
|
+
background-color: #f7f7f7;
|
81
|
+
}
|
82
|
+
|
83
|
+
code {
|
84
|
+
padding: 1px 5px;
|
85
|
+
}
|
86
|
+
|
87
|
+
pre {
|
88
|
+
padding: 8px 12px;
|
89
|
+
overflow-x: auto;
|
90
|
+
|
91
|
+
> code {
|
92
|
+
border: 0;
|
93
|
+
padding-right: 0;
|
94
|
+
padding-left: 0;
|
95
|
+
}
|
96
|
+
}
|
97
|
+
|
98
|
+
ol > li {
|
99
|
+
margin: 1em 0;
|
100
|
+
}
|
101
|
+
|
102
|
+
dfn {
|
103
|
+
font-style: italic
|
104
|
+
}
|
105
|
+
|
106
|
+
mark {
|
107
|
+
background-color: #ff0;
|
108
|
+
color: #000
|
109
|
+
}
|
110
|
+
|
111
|
+
small {
|
112
|
+
font-size: 80%
|
113
|
+
}
|
114
|
+
|
115
|
+
sub,sup {
|
116
|
+
font-size: 75%;
|
117
|
+
line-height: 0;
|
118
|
+
position: relative;
|
119
|
+
vertical-align: baseline
|
120
|
+
}
|
121
|
+
|
122
|
+
sub {
|
123
|
+
bottom: -.25em
|
124
|
+
}
|
125
|
+
|
126
|
+
sup {
|
127
|
+
top: -.5em
|
128
|
+
}
|
129
|
+
|
130
|
+
audio,video {
|
131
|
+
display: inline-block
|
132
|
+
}
|
133
|
+
|
134
|
+
audio:not([controls]) {
|
135
|
+
display: none;
|
136
|
+
height: 0
|
137
|
+
}
|
138
|
+
|
139
|
+
img {
|
140
|
+
border-style: none
|
141
|
+
}
|
142
|
+
|
143
|
+
svg:not(:root) {
|
144
|
+
overflow: hidden
|
145
|
+
}
|
146
|
+
|
147
|
+
button,input,optgroup,select,textarea {
|
148
|
+
font-family: sans-serif;
|
149
|
+
font-size: 100%;
|
150
|
+
line-height: 1.15;
|
151
|
+
margin: 0
|
152
|
+
}
|
153
|
+
|
154
|
+
button,input {
|
155
|
+
overflow: visible
|
156
|
+
}
|
157
|
+
|
158
|
+
button,select {
|
159
|
+
text-transform: none
|
160
|
+
}
|
161
|
+
|
162
|
+
[type=reset],[type=submit],button,html [type=button] {
|
163
|
+
-webkit-appearance: button
|
164
|
+
}
|
165
|
+
|
166
|
+
[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner {
|
167
|
+
border-style: none;
|
168
|
+
padding: 0
|
169
|
+
}
|
170
|
+
|
171
|
+
[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring {
|
172
|
+
outline: 1px dotted ButtonText
|
173
|
+
}
|
174
|
+
|
175
|
+
fieldset {
|
176
|
+
border: 1px solid silver;
|
177
|
+
margin: 0 2px;
|
178
|
+
padding: .35em .625em .75em
|
179
|
+
}
|
180
|
+
|
181
|
+
legend {
|
182
|
+
box-sizing: border-box;
|
183
|
+
color: inherit;
|
184
|
+
display: table;
|
185
|
+
max-width: 100%;
|
186
|
+
padding: 0;
|
187
|
+
white-space: normal
|
188
|
+
}
|
189
|
+
|
190
|
+
progress {
|
191
|
+
display: inline-block;
|
192
|
+
vertical-align: baseline
|
193
|
+
}
|
194
|
+
|
195
|
+
textarea {
|
196
|
+
overflow: auto
|
197
|
+
}
|
198
|
+
|
199
|
+
[type=checkbox],[type=radio] {
|
200
|
+
box-sizing: border-box;
|
201
|
+
padding: 0
|
202
|
+
}
|
203
|
+
|
204
|
+
[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button {
|
205
|
+
height: auto
|
206
|
+
}
|
207
|
+
|
208
|
+
[type=search] {
|
209
|
+
-webkit-appearance: textfield;
|
210
|
+
outline-offset: -2px
|
211
|
+
}
|
212
|
+
|
213
|
+
[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration {
|
214
|
+
-webkit-appearance: none
|
215
|
+
}
|
216
|
+
|
217
|
+
::-webkit-file-upload-button {
|
218
|
+
-webkit-appearance: button;
|
219
|
+
font: inherit
|
220
|
+
}
|
221
|
+
|
222
|
+
details,menu {
|
223
|
+
display: block
|
224
|
+
}
|
225
|
+
|
226
|
+
summary {
|
227
|
+
display: list-item
|
228
|
+
}
|
229
|
+
|
230
|
+
canvas {
|
231
|
+
display: inline-block
|
232
|
+
}
|
233
|
+
|
234
|
+
[hidden],template {
|
235
|
+
display: none
|
236
|
+
}
|
237
|
+
|
238
|
+
.h1 {
|
239
|
+
font-size: 3rem
|
240
|
+
}
|
241
|
+
|
242
|
+
.h2 {
|
243
|
+
font-size: 2rem
|
244
|
+
}
|
245
|
+
|
246
|
+
.h3 {
|
247
|
+
font-size: 1.5rem
|
248
|
+
}
|
249
|
+
|
250
|
+
.h4 {
|
251
|
+
font-size: 1.125rem
|
252
|
+
}
|
253
|
+
|
254
|
+
.h5 {
|
255
|
+
font-size: .875rem
|
256
|
+
}
|
257
|
+
|
258
|
+
.h6 {
|
259
|
+
font-size: .75rem
|
260
|
+
}
|
261
|
+
|
262
|
+
.font-family-inherit {
|
263
|
+
font-family: inherit
|
264
|
+
}
|
265
|
+
|
266
|
+
.font-size-inherit {
|
267
|
+
font-size: inherit
|
268
|
+
}
|
269
|
+
|
270
|
+
.text-decoration-none {
|
271
|
+
text-decoration: none
|
272
|
+
}
|
273
|
+
|
274
|
+
.bold {
|
275
|
+
font-weight: 700
|
276
|
+
}
|
277
|
+
|
278
|
+
.regular {
|
279
|
+
font-weight: 400
|
280
|
+
}
|
281
|
+
|
282
|
+
.italic {
|
283
|
+
font-style: italic
|
284
|
+
}
|
285
|
+
|
286
|
+
.caps {
|
287
|
+
text-transform: uppercase;
|
288
|
+
letter-spacing: .2em
|
289
|
+
}
|
290
|
+
|
291
|
+
.left-align {
|
292
|
+
text-align: left
|
293
|
+
}
|
294
|
+
|
295
|
+
.center {
|
296
|
+
text-align: center
|
297
|
+
}
|
298
|
+
|
299
|
+
.right-align {
|
300
|
+
text-align: right
|
301
|
+
}
|
302
|
+
|
303
|
+
.justify {
|
304
|
+
text-align: justify
|
305
|
+
}
|
306
|
+
|
307
|
+
.nowrap {
|
308
|
+
white-space: nowrap
|
309
|
+
}
|
310
|
+
|
311
|
+
.break-word {
|
312
|
+
word-wrap: break-word
|
313
|
+
}
|
314
|
+
|
315
|
+
.line-height-1 {
|
316
|
+
line-height: 1rem
|
317
|
+
}
|
318
|
+
|
319
|
+
.line-height-2 {
|
320
|
+
line-height: 1.125rem
|
321
|
+
}
|
322
|
+
|
323
|
+
.line-height-3 {
|
324
|
+
line-height: 1.5rem
|
325
|
+
}
|
326
|
+
|
327
|
+
.line-height-4 {
|
328
|
+
line-height: 2rem
|
329
|
+
}
|
330
|
+
|
331
|
+
.list-style-none {
|
332
|
+
list-style: none
|
333
|
+
}
|
334
|
+
|
335
|
+
.underline {
|
336
|
+
text-decoration: underline
|
337
|
+
}
|
338
|
+
|
339
|
+
.truncate {
|
340
|
+
max-width: 100%;
|
341
|
+
overflow: hidden;
|
342
|
+
text-overflow: ellipsis;
|
343
|
+
white-space: nowrap
|
344
|
+
}
|
345
|
+
|
346
|
+
.list-reset {
|
347
|
+
list-style: none;
|
348
|
+
padding-left: 0
|
349
|
+
}
|
350
|
+
|
351
|
+
.inline {
|
352
|
+
display: inline
|
353
|
+
}
|
354
|
+
|
355
|
+
.block {
|
356
|
+
display: block
|
357
|
+
}
|
358
|
+
|
359
|
+
.inline-block {
|
360
|
+
display: inline-block
|
361
|
+
}
|
362
|
+
|
363
|
+
.table {
|
364
|
+
display: table
|
365
|
+
}
|
366
|
+
|
367
|
+
.table-cell {
|
368
|
+
display: table-cell
|
369
|
+
}
|
370
|
+
|
371
|
+
.overflow-hidden {
|
372
|
+
overflow: hidden
|
373
|
+
}
|
374
|
+
|
375
|
+
.overflow-scroll {
|
376
|
+
overflow: scroll
|
377
|
+
}
|
378
|
+
|
379
|
+
.overflow-auto {
|
380
|
+
overflow: auto
|
381
|
+
}
|
382
|
+
|
383
|
+
.clearfix:after,.clearfix:before {
|
384
|
+
content: " ";
|
385
|
+
display: table
|
386
|
+
}
|
387
|
+
|
388
|
+
.clearfix:after {
|
389
|
+
clear: both
|
390
|
+
}
|
391
|
+
|
392
|
+
.left {
|
393
|
+
float: left
|
394
|
+
}
|
395
|
+
|
396
|
+
.right {
|
397
|
+
float: right
|
398
|
+
}
|
399
|
+
|
400
|
+
.fit {
|
401
|
+
max-width: 100%
|
402
|
+
}
|
403
|
+
|
404
|
+
.max-width-1 {
|
405
|
+
max-width: 24rem
|
406
|
+
}
|
407
|
+
|
408
|
+
.max-width-2 {
|
409
|
+
max-width: 32rem
|
410
|
+
}
|
411
|
+
|
412
|
+
.max-width-3 {
|
413
|
+
max-width: 48rem
|
414
|
+
}
|
415
|
+
|
416
|
+
.max-width-4 {
|
417
|
+
max-width: 64rem
|
418
|
+
}
|
419
|
+
|
420
|
+
.border-box {
|
421
|
+
box-sizing: border-box
|
422
|
+
}
|
423
|
+
|
424
|
+
.align-baseline {
|
425
|
+
vertical-align: baseline
|
426
|
+
}
|
427
|
+
|
428
|
+
.align-top {
|
429
|
+
vertical-align: top
|
430
|
+
}
|
431
|
+
|
432
|
+
.align-middle {
|
433
|
+
vertical-align: middle
|
434
|
+
}
|
435
|
+
|
436
|
+
.align-bottom {
|
437
|
+
vertical-align: bottom
|
438
|
+
}
|
439
|
+
|
440
|
+
.m0 {
|
441
|
+
margin: 0
|
442
|
+
}
|
443
|
+
|
444
|
+
.mt0 {
|
445
|
+
margin-top: 0
|
446
|
+
}
|
447
|
+
|
448
|
+
.mr0 {
|
449
|
+
margin-right: 0
|
450
|
+
}
|
451
|
+
|
452
|
+
.mb0 {
|
453
|
+
margin-bottom: 0
|
454
|
+
}
|
455
|
+
|
456
|
+
.ml0,.mx0 {
|
457
|
+
margin-left: 0
|
458
|
+
}
|
459
|
+
|
460
|
+
.mx0 {
|
461
|
+
margin-right: 0
|
462
|
+
}
|
463
|
+
|
464
|
+
.my0 {
|
465
|
+
margin-top: 0;
|
466
|
+
margin-bottom: 0
|
467
|
+
}
|
468
|
+
|
469
|
+
.m1 {
|
470
|
+
margin: .5rem
|
471
|
+
}
|
472
|
+
|
473
|
+
.mt1 {
|
474
|
+
margin-top: .5rem
|
475
|
+
}
|
476
|
+
|
477
|
+
.mr1 {
|
478
|
+
margin-right: .5rem
|
479
|
+
}
|
480
|
+
|
481
|
+
.mb1 {
|
482
|
+
margin-bottom: .5rem
|
483
|
+
}
|
484
|
+
|
485
|
+
.ml1,.mx1 {
|
486
|
+
margin-left: .5rem
|
487
|
+
}
|
488
|
+
|
489
|
+
.mx1 {
|
490
|
+
margin-right: .5rem
|
491
|
+
}
|
492
|
+
|
493
|
+
.my1 {
|
494
|
+
margin-top: .5rem;
|
495
|
+
margin-bottom: .5rem
|
496
|
+
}
|
497
|
+
|
498
|
+
.m2 {
|
499
|
+
margin: 1rem
|
500
|
+
}
|
501
|
+
|
502
|
+
.mt2 {
|
503
|
+
margin-top: 1rem
|
504
|
+
}
|
505
|
+
|
506
|
+
.mr2 {
|
507
|
+
margin-right: 1rem
|
508
|
+
}
|
509
|
+
|
510
|
+
.mb2 {
|
511
|
+
margin-bottom: 1rem
|
512
|
+
}
|
513
|
+
|
514
|
+
.ml2,.mx2 {
|
515
|
+
margin-left: 1rem
|
516
|
+
}
|
517
|
+
|
518
|
+
.mx2 {
|
519
|
+
margin-right: 1rem
|
520
|
+
}
|
521
|
+
|
522
|
+
.my2 {
|
523
|
+
margin-top: 1rem;
|
524
|
+
margin-bottom: 1rem
|
525
|
+
}
|
526
|
+
|
527
|
+
.m3 {
|
528
|
+
margin: 1.5rem
|
529
|
+
}
|
530
|
+
|
531
|
+
.mt3 {
|
532
|
+
margin-top: 1.5rem
|
533
|
+
}
|
534
|
+
|
535
|
+
.mr3 {
|
536
|
+
margin-right: 1.5rem
|
537
|
+
}
|
538
|
+
|
539
|
+
.mb3 {
|
540
|
+
margin-bottom: 1.5rem
|
541
|
+
}
|
542
|
+
|
543
|
+
.ml3,.mx3 {
|
544
|
+
margin-left: 1.5rem
|
545
|
+
}
|
546
|
+
|
547
|
+
.mx3 {
|
548
|
+
margin-right: 1.5rem
|
549
|
+
}
|
550
|
+
|
551
|
+
.my3 {
|
552
|
+
margin-top: 1.5rem;
|
553
|
+
margin-bottom: 1.5rem
|
554
|
+
}
|
555
|
+
|
556
|
+
.m4 {
|
557
|
+
margin: 2rem
|
558
|
+
}
|
559
|
+
|
560
|
+
.mt4 {
|
561
|
+
margin-top: 2rem
|
562
|
+
}
|
563
|
+
|
564
|
+
.mr4 {
|
565
|
+
margin-right: 2rem
|
566
|
+
}
|
567
|
+
|
568
|
+
.mb4 {
|
569
|
+
margin-bottom: 2rem
|
570
|
+
}
|
571
|
+
|
572
|
+
.ml4,.mx4 {
|
573
|
+
margin-left: 2rem
|
574
|
+
}
|
575
|
+
|
576
|
+
.mx4 {
|
577
|
+
margin-right: 2rem
|
578
|
+
}
|
579
|
+
|
580
|
+
.my4 {
|
581
|
+
margin-top: 2rem;
|
582
|
+
margin-bottom: 2rem
|
583
|
+
}
|
584
|
+
|
585
|
+
.mxn1 {
|
586
|
+
margin-left: -.5rem;
|
587
|
+
margin-right: -.5rem
|
588
|
+
}
|
589
|
+
|
590
|
+
.mxn2 {
|
591
|
+
margin-left: -1rem;
|
592
|
+
margin-right: -1rem
|
593
|
+
}
|
594
|
+
|
595
|
+
.mxn3 {
|
596
|
+
margin-left: -1.5rem;
|
597
|
+
margin-right: -1.5rem
|
598
|
+
}
|
599
|
+
|
600
|
+
.mxn4 {
|
601
|
+
margin-left: -2rem;
|
602
|
+
margin-right: -2rem
|
603
|
+
}
|
604
|
+
|
605
|
+
.ml-auto {
|
606
|
+
margin-left: auto
|
607
|
+
}
|
608
|
+
|
609
|
+
.mr-auto,.mx-auto {
|
610
|
+
margin-right: auto
|
611
|
+
}
|
612
|
+
|
613
|
+
.mx-auto {
|
614
|
+
margin-left: auto
|
615
|
+
}
|
616
|
+
|
617
|
+
.p0 {
|
618
|
+
padding: 0
|
619
|
+
}
|
620
|
+
|
621
|
+
.pt0 {
|
622
|
+
padding-top: 0
|
623
|
+
}
|
624
|
+
|
625
|
+
.pr0 {
|
626
|
+
padding-right: 0
|
627
|
+
}
|
628
|
+
|
629
|
+
.pb0 {
|
630
|
+
padding-bottom: 0
|
631
|
+
}
|
632
|
+
|
633
|
+
.pl0,.px0 {
|
634
|
+
padding-left: 0
|
635
|
+
}
|
636
|
+
|
637
|
+
.px0 {
|
638
|
+
padding-right: 0
|
639
|
+
}
|
640
|
+
|
641
|
+
.py0 {
|
642
|
+
padding-top: 0;
|
643
|
+
padding-bottom: 0
|
644
|
+
}
|
645
|
+
|
646
|
+
.p1 {
|
647
|
+
padding: .5rem
|
648
|
+
}
|
649
|
+
|
650
|
+
.pt1 {
|
651
|
+
padding-top: .5rem
|
652
|
+
}
|
653
|
+
|
654
|
+
.pr1 {
|
655
|
+
padding-right: .5rem
|
656
|
+
}
|
657
|
+
|
658
|
+
.pb1 {
|
659
|
+
padding-bottom: .5rem
|
660
|
+
}
|
661
|
+
|
662
|
+
.pl1 {
|
663
|
+
padding-left: .5rem
|
664
|
+
}
|
665
|
+
|
666
|
+
.py1 {
|
667
|
+
padding-top: .5rem;
|
668
|
+
padding-bottom: .5rem
|
669
|
+
}
|
670
|
+
|
671
|
+
.px1 {
|
672
|
+
padding-left: .5rem;
|
673
|
+
padding-right: .5rem
|
674
|
+
}
|
675
|
+
|
676
|
+
.p2 {
|
677
|
+
padding: 1rem
|
678
|
+
}
|
679
|
+
|
680
|
+
.pt2 {
|
681
|
+
padding-top: 1rem
|
682
|
+
}
|
683
|
+
|
684
|
+
.pr2 {
|
685
|
+
padding-right: 1rem
|
686
|
+
}
|
687
|
+
|
688
|
+
.pb2 {
|
689
|
+
padding-bottom: 1rem
|
690
|
+
}
|
691
|
+
|
692
|
+
.pl2 {
|
693
|
+
padding-left: 1rem
|
694
|
+
}
|
695
|
+
|
696
|
+
.py2 {
|
697
|
+
padding-top: 1rem;
|
698
|
+
padding-bottom: 1rem
|
699
|
+
}
|
700
|
+
|
701
|
+
.px2 {
|
702
|
+
padding-left: 1rem;
|
703
|
+
padding-right: 1rem
|
704
|
+
}
|
705
|
+
|
706
|
+
.p3 {
|
707
|
+
padding: 1.5rem
|
708
|
+
}
|
709
|
+
|
710
|
+
.pt3 {
|
711
|
+
padding-top: 1.5rem
|
712
|
+
}
|
713
|
+
|
714
|
+
.pr3 {
|
715
|
+
padding-right: 1.5rem
|
716
|
+
}
|
717
|
+
|
718
|
+
.pb3 {
|
719
|
+
padding-bottom: 1.5rem
|
720
|
+
}
|
721
|
+
|
722
|
+
.pl3 {
|
723
|
+
padding-left: 1.5rem
|
724
|
+
}
|
725
|
+
|
726
|
+
.py3 {
|
727
|
+
padding-top: 1.5rem;
|
728
|
+
padding-bottom: 1.5rem
|
729
|
+
}
|
730
|
+
|
731
|
+
.px3 {
|
732
|
+
padding-left: 1.5rem;
|
733
|
+
padding-right: 1.5rem
|
734
|
+
}
|
735
|
+
|
736
|
+
.p4 {
|
737
|
+
padding: 2rem
|
738
|
+
}
|
739
|
+
|
740
|
+
.pt4 {
|
741
|
+
padding-top: 2rem
|
742
|
+
}
|
743
|
+
|
744
|
+
.pr4 {
|
745
|
+
padding-right: 2rem
|
746
|
+
}
|
747
|
+
|
748
|
+
.pb4 {
|
749
|
+
padding-bottom: 2rem
|
750
|
+
}
|
751
|
+
|
752
|
+
.pl4 {
|
753
|
+
padding-left: 2rem
|
754
|
+
}
|
755
|
+
|
756
|
+
.py4 {
|
757
|
+
padding-top: 2rem;
|
758
|
+
padding-bottom: 2rem
|
759
|
+
}
|
760
|
+
|
761
|
+
.px4 {
|
762
|
+
padding-left: 2rem;
|
763
|
+
padding-right: 2rem
|
764
|
+
}
|
765
|
+
|
766
|
+
.col {
|
767
|
+
float: left
|
768
|
+
}
|
769
|
+
|
770
|
+
.col,.col-right {
|
771
|
+
box-sizing: border-box
|
772
|
+
}
|
773
|
+
|
774
|
+
.col-right {
|
775
|
+
float: right
|
776
|
+
}
|
777
|
+
|
778
|
+
.col-1 {
|
779
|
+
width: 8.33333%
|
780
|
+
}
|
781
|
+
|
782
|
+
.col-2 {
|
783
|
+
width: 16.66667%
|
784
|
+
}
|
785
|
+
|
786
|
+
.col-3 {
|
787
|
+
width: 25%
|
788
|
+
}
|
789
|
+
|
790
|
+
.col-4 {
|
791
|
+
width: 33.33333%
|
792
|
+
}
|
793
|
+
|
794
|
+
.col-5 {
|
795
|
+
width: 41.66667%
|
796
|
+
}
|
797
|
+
|
798
|
+
.col-6 {
|
799
|
+
width: 50%
|
800
|
+
}
|
801
|
+
|
802
|
+
.col-7 {
|
803
|
+
width: 58.33333%
|
804
|
+
}
|
805
|
+
|
806
|
+
.col-8 {
|
807
|
+
width: 66.66667%
|
808
|
+
}
|
809
|
+
|
810
|
+
.col-9 {
|
811
|
+
width: 75%
|
812
|
+
}
|
813
|
+
|
814
|
+
.col-10 {
|
815
|
+
width: 83.33333%
|
816
|
+
}
|
817
|
+
|
818
|
+
.col-11 {
|
819
|
+
width: 91.66667%
|
820
|
+
}
|
821
|
+
|
822
|
+
.col-12 {
|
823
|
+
width: 100%
|
824
|
+
}
|
825
|
+
|
826
|
+
@media (min-width:40.06rem) {
|
827
|
+
.sm-col {
|
828
|
+
float: left;
|
829
|
+
box-sizing: border-box
|
830
|
+
}
|
831
|
+
|
832
|
+
.sm-col-right {
|
833
|
+
float: right;
|
834
|
+
box-sizing: border-box
|
835
|
+
}
|
836
|
+
|
837
|
+
.sm-col-1 {
|
838
|
+
width: 8.33333%
|
839
|
+
}
|
840
|
+
|
841
|
+
.sm-col-2 {
|
842
|
+
width: 16.66667%
|
843
|
+
}
|
844
|
+
|
845
|
+
.sm-col-3 {
|
846
|
+
width: 25%
|
847
|
+
}
|
848
|
+
|
849
|
+
.sm-col-4 {
|
850
|
+
width: 33.33333%
|
851
|
+
}
|
852
|
+
|
853
|
+
.sm-col-5 {
|
854
|
+
width: 41.66667%
|
855
|
+
}
|
856
|
+
|
857
|
+
.sm-col-6 {
|
858
|
+
width: 50%
|
859
|
+
}
|
860
|
+
|
861
|
+
.sm-col-7 {
|
862
|
+
width: 58.33333%
|
863
|
+
}
|
864
|
+
|
865
|
+
.sm-col-8 {
|
866
|
+
width: 66.66667%
|
867
|
+
}
|
868
|
+
|
869
|
+
.sm-col-9 {
|
870
|
+
width: 75%
|
871
|
+
}
|
872
|
+
|
873
|
+
.sm-col-10 {
|
874
|
+
width: 83.33333%
|
875
|
+
}
|
876
|
+
|
877
|
+
.sm-col-11 {
|
878
|
+
width: 91.66667%
|
879
|
+
}
|
880
|
+
|
881
|
+
.sm-col-12 {
|
882
|
+
width: 100%
|
883
|
+
}
|
884
|
+
}
|
885
|
+
|
886
|
+
@media (min-width:52.06rem) {
|
887
|
+
.md-col {
|
888
|
+
float: left;
|
889
|
+
box-sizing: border-box
|
890
|
+
}
|
891
|
+
|
892
|
+
.md-col-right {
|
893
|
+
float: right;
|
894
|
+
box-sizing: border-box
|
895
|
+
}
|
896
|
+
|
897
|
+
.md-col-1 {
|
898
|
+
width: 8.33333%
|
899
|
+
}
|
900
|
+
|
901
|
+
.md-col-2 {
|
902
|
+
width: 16.66667%
|
903
|
+
}
|
904
|
+
|
905
|
+
.md-col-3 {
|
906
|
+
width: 25%
|
907
|
+
}
|
908
|
+
|
909
|
+
.md-col-4 {
|
910
|
+
width: 33.33333%
|
911
|
+
}
|
912
|
+
|
913
|
+
.md-col-5 {
|
914
|
+
width: 41.66667%
|
915
|
+
}
|
916
|
+
|
917
|
+
.md-col-6 {
|
918
|
+
width: 50%
|
919
|
+
}
|
920
|
+
|
921
|
+
.md-col-7 {
|
922
|
+
width: 58.33333%
|
923
|
+
}
|
924
|
+
|
925
|
+
.md-col-8 {
|
926
|
+
width: 66.66667%
|
927
|
+
}
|
928
|
+
|
929
|
+
.md-col-9 {
|
930
|
+
width: 75%
|
931
|
+
}
|
932
|
+
|
933
|
+
.md-col-10 {
|
934
|
+
width: 83.33333%
|
935
|
+
}
|
936
|
+
|
937
|
+
.md-col-11 {
|
938
|
+
width: 91.66667%
|
939
|
+
}
|
940
|
+
|
941
|
+
.md-col-12 {
|
942
|
+
width: 100%
|
943
|
+
}
|
944
|
+
}
|
945
|
+
|
946
|
+
@media (min-width:64.06rem) {
|
947
|
+
.lg-col {
|
948
|
+
float: left;
|
949
|
+
box-sizing: border-box
|
950
|
+
}
|
951
|
+
|
952
|
+
.lg-col-right {
|
953
|
+
float: right;
|
954
|
+
box-sizing: border-box
|
955
|
+
}
|
956
|
+
|
957
|
+
.lg-col-1 {
|
958
|
+
width: 8.33333%
|
959
|
+
}
|
960
|
+
|
961
|
+
.lg-col-2 {
|
962
|
+
width: 16.66667%
|
963
|
+
}
|
964
|
+
|
965
|
+
.lg-col-3 {
|
966
|
+
width: 25%
|
967
|
+
}
|
968
|
+
|
969
|
+
.lg-col-4 {
|
970
|
+
width: 33.33333%
|
971
|
+
}
|
972
|
+
|
973
|
+
.lg-col-5 {
|
974
|
+
width: 41.66667%
|
975
|
+
}
|
976
|
+
|
977
|
+
.lg-col-6 {
|
978
|
+
width: 50%
|
979
|
+
}
|
980
|
+
|
981
|
+
.lg-col-7 {
|
982
|
+
width: 58.33333%
|
983
|
+
}
|
984
|
+
|
985
|
+
.lg-col-8 {
|
986
|
+
width: 66.66667%
|
987
|
+
}
|
988
|
+
|
989
|
+
.lg-col-9 {
|
990
|
+
width: 75%
|
991
|
+
}
|
992
|
+
|
993
|
+
.lg-col-10 {
|
994
|
+
width: 83.33333%
|
995
|
+
}
|
996
|
+
|
997
|
+
.lg-col-11 {
|
998
|
+
width: 91.66667%
|
999
|
+
}
|
1000
|
+
|
1001
|
+
.lg-col-12 {
|
1002
|
+
width: 100%
|
1003
|
+
}
|
1004
|
+
}
|
1005
|
+
|
1006
|
+
.flex {
|
1007
|
+
display: -webkit-box;
|
1008
|
+
display: -ms-flexbox;
|
1009
|
+
display: flex
|
1010
|
+
}
|
1011
|
+
|
1012
|
+
@media (min-width:40.06rem) {
|
1013
|
+
.sm-flex {
|
1014
|
+
display: -webkit-box;
|
1015
|
+
display: -ms-flexbox;
|
1016
|
+
display: flex
|
1017
|
+
}
|
1018
|
+
}
|
1019
|
+
|
1020
|
+
@media (min-width:52.06rem) {
|
1021
|
+
.md-flex {
|
1022
|
+
display: -webkit-box;
|
1023
|
+
display: -ms-flexbox;
|
1024
|
+
display: flex
|
1025
|
+
}
|
1026
|
+
}
|
1027
|
+
|
1028
|
+
@media (min-width:64.06rem) {
|
1029
|
+
.lg-flex {
|
1030
|
+
display: -webkit-box;
|
1031
|
+
display: -ms-flexbox;
|
1032
|
+
display: flex
|
1033
|
+
}
|
1034
|
+
}
|
1035
|
+
|
1036
|
+
.flex-column {
|
1037
|
+
-webkit-box-orient: vertical;
|
1038
|
+
-webkit-box-direction: normal;
|
1039
|
+
-ms-flex-direction: column;
|
1040
|
+
flex-direction: column
|
1041
|
+
}
|
1042
|
+
|
1043
|
+
.flex-wrap {
|
1044
|
+
-ms-flex-wrap: wrap;
|
1045
|
+
flex-wrap: wrap
|
1046
|
+
}
|
1047
|
+
|
1048
|
+
.items-start {
|
1049
|
+
-webkit-box-align: start;
|
1050
|
+
-ms-flex-align: start;
|
1051
|
+
align-items: flex-start
|
1052
|
+
}
|
1053
|
+
|
1054
|
+
.items-end {
|
1055
|
+
-webkit-box-align: end;
|
1056
|
+
-ms-flex-align: end;
|
1057
|
+
align-items: flex-end
|
1058
|
+
}
|
1059
|
+
|
1060
|
+
.items-center {
|
1061
|
+
-webkit-box-align: center;
|
1062
|
+
-ms-flex-align: center;
|
1063
|
+
align-items: center
|
1064
|
+
}
|
1065
|
+
|
1066
|
+
.items-baseline {
|
1067
|
+
-webkit-box-align: baseline;
|
1068
|
+
-ms-flex-align: baseline;
|
1069
|
+
align-items: baseline
|
1070
|
+
}
|
1071
|
+
|
1072
|
+
.items-stretch {
|
1073
|
+
-webkit-box-align: stretch;
|
1074
|
+
-ms-flex-align: stretch;
|
1075
|
+
align-items: stretch
|
1076
|
+
}
|
1077
|
+
|
1078
|
+
.self-start {
|
1079
|
+
-ms-flex-item-align: start;
|
1080
|
+
align-self: flex-start
|
1081
|
+
}
|
1082
|
+
|
1083
|
+
.self-end {
|
1084
|
+
-ms-flex-item-align: end;
|
1085
|
+
align-self: flex-end
|
1086
|
+
}
|
1087
|
+
|
1088
|
+
.self-center {
|
1089
|
+
-ms-flex-item-align: center;
|
1090
|
+
-ms-grid-row-align: center;
|
1091
|
+
align-self: center
|
1092
|
+
}
|
1093
|
+
|
1094
|
+
.self-baseline {
|
1095
|
+
-ms-flex-item-align: baseline;
|
1096
|
+
align-self: baseline
|
1097
|
+
}
|
1098
|
+
|
1099
|
+
.self-stretch {
|
1100
|
+
-ms-flex-item-align: stretch;
|
1101
|
+
-ms-grid-row-align: stretch;
|
1102
|
+
align-self: stretch
|
1103
|
+
}
|
1104
|
+
|
1105
|
+
.justify-start {
|
1106
|
+
-webkit-box-pack: start;
|
1107
|
+
-ms-flex-pack: start;
|
1108
|
+
justify-content: flex-start
|
1109
|
+
}
|
1110
|
+
|
1111
|
+
.justify-end {
|
1112
|
+
-webkit-box-pack: end;
|
1113
|
+
-ms-flex-pack: end;
|
1114
|
+
justify-content: flex-end
|
1115
|
+
}
|
1116
|
+
|
1117
|
+
.justify-center {
|
1118
|
+
-webkit-box-pack: center;
|
1119
|
+
-ms-flex-pack: center;
|
1120
|
+
justify-content: center
|
1121
|
+
}
|
1122
|
+
|
1123
|
+
.justify-between {
|
1124
|
+
-webkit-box-pack: justify;
|
1125
|
+
-ms-flex-pack: justify;
|
1126
|
+
justify-content: space-between
|
1127
|
+
}
|
1128
|
+
|
1129
|
+
.justify-around {
|
1130
|
+
-ms-flex-pack: distribute;
|
1131
|
+
justify-content: space-around
|
1132
|
+
}
|
1133
|
+
|
1134
|
+
.content-start {
|
1135
|
+
-ms-flex-line-pack: start;
|
1136
|
+
align-content: flex-start
|
1137
|
+
}
|
1138
|
+
|
1139
|
+
.content-end {
|
1140
|
+
-ms-flex-line-pack: end;
|
1141
|
+
align-content: flex-end
|
1142
|
+
}
|
1143
|
+
|
1144
|
+
.content-center {
|
1145
|
+
-ms-flex-line-pack: center;
|
1146
|
+
align-content: center
|
1147
|
+
}
|
1148
|
+
|
1149
|
+
.content-between {
|
1150
|
+
-ms-flex-line-pack: justify;
|
1151
|
+
align-content: space-between
|
1152
|
+
}
|
1153
|
+
|
1154
|
+
.content-around {
|
1155
|
+
-ms-flex-line-pack: distribute;
|
1156
|
+
align-content: space-around
|
1157
|
+
}
|
1158
|
+
|
1159
|
+
.content-stretch {
|
1160
|
+
-ms-flex-line-pack: stretch;
|
1161
|
+
align-content: stretch
|
1162
|
+
}
|
1163
|
+
|
1164
|
+
.flex-auto {
|
1165
|
+
-webkit-box-flex: 1;
|
1166
|
+
-ms-flex: 1 1 auto;
|
1167
|
+
flex: 1 1 auto;
|
1168
|
+
min-width: 0;
|
1169
|
+
min-height: 0
|
1170
|
+
}
|
1171
|
+
|
1172
|
+
.flex-none {
|
1173
|
+
-webkit-box-flex: 0;
|
1174
|
+
-ms-flex: none;
|
1175
|
+
flex: none
|
1176
|
+
}
|
1177
|
+
|
1178
|
+
.order-0 {
|
1179
|
+
-webkit-box-ordinal-group: 1;
|
1180
|
+
-ms-flex-order: 0;
|
1181
|
+
order: 0
|
1182
|
+
}
|
1183
|
+
|
1184
|
+
.order-1 {
|
1185
|
+
-webkit-box-ordinal-group: 2;
|
1186
|
+
-ms-flex-order: 1;
|
1187
|
+
order: 1
|
1188
|
+
}
|
1189
|
+
|
1190
|
+
.order-2 {
|
1191
|
+
-webkit-box-ordinal-group: 3;
|
1192
|
+
-ms-flex-order: 2;
|
1193
|
+
order: 2
|
1194
|
+
}
|
1195
|
+
|
1196
|
+
.order-3 {
|
1197
|
+
-webkit-box-ordinal-group: 4;
|
1198
|
+
-ms-flex-order: 3;
|
1199
|
+
order: 3
|
1200
|
+
}
|
1201
|
+
|
1202
|
+
.order-last {
|
1203
|
+
-webkit-box-ordinal-group: 100000;
|
1204
|
+
-ms-flex-order: 99999;
|
1205
|
+
order: 99999
|
1206
|
+
}
|
1207
|
+
|
1208
|
+
.relative {
|
1209
|
+
position: relative
|
1210
|
+
}
|
1211
|
+
|
1212
|
+
.absolute {
|
1213
|
+
position: absolute
|
1214
|
+
}
|
1215
|
+
|
1216
|
+
.fixed {
|
1217
|
+
position: fixed
|
1218
|
+
}
|
1219
|
+
|
1220
|
+
.top-0 {
|
1221
|
+
top: 0
|
1222
|
+
}
|
1223
|
+
|
1224
|
+
.right-0 {
|
1225
|
+
right: 0
|
1226
|
+
}
|
1227
|
+
|
1228
|
+
.bottom-0 {
|
1229
|
+
bottom: 0
|
1230
|
+
}
|
1231
|
+
|
1232
|
+
.left-0 {
|
1233
|
+
left: 0
|
1234
|
+
}
|
1235
|
+
|
1236
|
+
.z1 {
|
1237
|
+
z-index: 1
|
1238
|
+
}
|
1239
|
+
|
1240
|
+
.z2 {
|
1241
|
+
z-index: 2
|
1242
|
+
}
|
1243
|
+
|
1244
|
+
.z3 {
|
1245
|
+
z-index: 3
|
1246
|
+
}
|
1247
|
+
|
1248
|
+
.z4 {
|
1249
|
+
z-index: 4
|
1250
|
+
}
|
1251
|
+
|
1252
|
+
.border {
|
1253
|
+
border-style: solid;
|
1254
|
+
border-width: 1px
|
1255
|
+
}
|
1256
|
+
|
1257
|
+
.border-top {
|
1258
|
+
border-top-style: solid;
|
1259
|
+
border-top-width: 1px
|
1260
|
+
}
|
1261
|
+
|
1262
|
+
.border-right {
|
1263
|
+
border-right-style: solid;
|
1264
|
+
border-right-width: 1px
|
1265
|
+
}
|
1266
|
+
|
1267
|
+
.border-bottom {
|
1268
|
+
border-bottom-style: solid;
|
1269
|
+
border-bottom-width: 1px
|
1270
|
+
}
|
1271
|
+
|
1272
|
+
.border-left {
|
1273
|
+
border-left-style: solid;
|
1274
|
+
border-left-width: 1px
|
1275
|
+
}
|
1276
|
+
|
1277
|
+
.border-none {
|
1278
|
+
border: 0
|
1279
|
+
}
|
1280
|
+
|
1281
|
+
.rounded {
|
1282
|
+
border-radius: 3px
|
1283
|
+
}
|
1284
|
+
|
1285
|
+
.circle {
|
1286
|
+
border-radius: 50%
|
1287
|
+
}
|
1288
|
+
|
1289
|
+
.rounded-top {
|
1290
|
+
border-radius: 3px 3px 0 0
|
1291
|
+
}
|
1292
|
+
|
1293
|
+
.rounded-right {
|
1294
|
+
border-radius: 0 3px 3px 0
|
1295
|
+
}
|
1296
|
+
|
1297
|
+
.rounded-bottom {
|
1298
|
+
border-radius: 0 0 3px 3px
|
1299
|
+
}
|
1300
|
+
|
1301
|
+
.rounded-left {
|
1302
|
+
border-radius: 3px 0 0 3px
|
1303
|
+
}
|
1304
|
+
|
1305
|
+
.not-rounded {
|
1306
|
+
border-radius: 0
|
1307
|
+
}
|
1308
|
+
|
1309
|
+
.hide {
|
1310
|
+
position: absolute;
|
1311
|
+
height: 1px;
|
1312
|
+
width: 1px;
|
1313
|
+
overflow: hidden;
|
1314
|
+
clip: rect(1px,1px,1px,1px)
|
1315
|
+
}
|
1316
|
+
|
1317
|
+
@media (max-width:40rem) {
|
1318
|
+
.xs-hide {
|
1319
|
+
display: none
|
1320
|
+
}
|
1321
|
+
}
|
1322
|
+
|
1323
|
+
@media (min-width:40.06rem) and (max-width:52rem) {
|
1324
|
+
.sm-hide {
|
1325
|
+
display: none
|
1326
|
+
}
|
1327
|
+
}
|
1328
|
+
|
1329
|
+
@media (min-width:52.06rem) and (max-width:64rem) {
|
1330
|
+
.md-hide {
|
1331
|
+
display: none
|
1332
|
+
}
|
1333
|
+
}
|
1334
|
+
|
1335
|
+
@media (min-width:64.06rem) {
|
1336
|
+
.lg-hide {
|
1337
|
+
display: none
|
1338
|
+
}
|
1339
|
+
}
|
1340
|
+
|
1341
|
+
.display-none {
|
1342
|
+
display: none
|
1343
|
+
}
|
1344
|
+
|
1345
|
+
* {
|
1346
|
+
box-sizing: border-box
|
1347
|
+
}
|
1348
|
+
|
1349
|
+
body {
|
1350
|
+
background: #fff;
|
1351
|
+
color: #4a4a4a;
|
1352
|
+
line-height: 1.5rem;
|
1353
|
+
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,Arial,sans-serif;
|
1354
|
+
min-width: 315px;
|
1355
|
+
overflow-x: hidden;
|
1356
|
+
font-smooth: always;
|
1357
|
+
-webkit-font-smoothing: antialiased
|
1358
|
+
}
|
1359
|
+
|
1360
|
+
main {
|
1361
|
+
max-width: 700px;
|
1362
|
+
margin: 0 auto;
|
1363
|
+
padding-left: 1.5rem;
|
1364
|
+
padding-right: 1.5rem;
|
1365
|
+
}
|
1366
|
+
|
1367
|
+
p {
|
1368
|
+
margin: 0;
|
1369
|
+
margin-bottom: 2rem
|
1370
|
+
}
|
1371
|
+
|
1372
|
+
.ampstart-subtitle {
|
1373
|
+
color: #4f4f4f;
|
1374
|
+
font-size: .875rem
|
1375
|
+
}
|
1376
|
+
|
1377
|
+
.ampstart-accent {
|
1378
|
+
color: #003f93
|
1379
|
+
}
|
1380
|
+
|
1381
|
+
#content {
|
1382
|
+
padding-top: calc(0px - 3.5rem);
|
1383
|
+
}
|
1384
|
+
|
1385
|
+
.ampstart-card {
|
1386
|
+
box-shadow: 0 1px 1px 0 rgba(0,0,0,.14),0 1px 1px -1px rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)
|
1387
|
+
}
|
1388
|
+
|
1389
|
+
.h1,h1 {
|
1390
|
+
font-size: 2rem;
|
1391
|
+
line-height: 2rem
|
1392
|
+
}
|
1393
|
+
|
1394
|
+
.h2,h2 {
|
1395
|
+
font-size: 2rem;
|
1396
|
+
line-height: 2.5rem
|
1397
|
+
}
|
1398
|
+
|
1399
|
+
.h3,h3 {
|
1400
|
+
font-size: 1.5rem;
|
1401
|
+
line-height: 2rem
|
1402
|
+
}
|
1403
|
+
|
1404
|
+
.h4,h4 {
|
1405
|
+
font-size: 1.125rem;
|
1406
|
+
line-height: 1.5rem
|
1407
|
+
}
|
1408
|
+
|
1409
|
+
.h5,h5 {
|
1410
|
+
font-size: .875rem;
|
1411
|
+
line-height: 1.125rem
|
1412
|
+
}
|
1413
|
+
|
1414
|
+
.h6,h6 {
|
1415
|
+
font-size: .75rem;
|
1416
|
+
line-height: 1rem
|
1417
|
+
}
|
1418
|
+
|
1419
|
+
h1,h2,h3,h4,h5,h6 {
|
1420
|
+
margin: 0;
|
1421
|
+
padding: 0.5rem 0;
|
1422
|
+
font-weight: 400;
|
1423
|
+
letter-spacing: .06em
|
1424
|
+
}
|
1425
|
+
|
1426
|
+
a,a:active,a:visited {
|
1427
|
+
color: inherit
|
1428
|
+
}
|
1429
|
+
|
1430
|
+
.ampstart-btn {
|
1431
|
+
font-size: 1rem;
|
1432
|
+
padding: .7em .8em;
|
1433
|
+
text-decoration: none;
|
1434
|
+
white-space: nowrap;
|
1435
|
+
word-wrap: normal;
|
1436
|
+
vertical-align: middle;
|
1437
|
+
cursor: pointer;
|
1438
|
+
background-color: #000;
|
1439
|
+
color: #fff;
|
1440
|
+
border: 1px solid #fff
|
1441
|
+
}
|
1442
|
+
|
1443
|
+
.ampstart-btn-secondary {
|
1444
|
+
background-color: #fff;
|
1445
|
+
color: #000;
|
1446
|
+
border: 1px solid #000
|
1447
|
+
}
|
1448
|
+
|
1449
|
+
.ampstart-btn:active .ampstart-btn:focus {
|
1450
|
+
opacity: .8
|
1451
|
+
}
|
1452
|
+
|
1453
|
+
.ampstart-btn[disabled],.ampstart-btn[disabled]:active,.ampstart-btn[disabled]:focus,.ampstart-btn[disabled]:hover {
|
1454
|
+
opacity: .5;
|
1455
|
+
outline: 0;
|
1456
|
+
cursor: default
|
1457
|
+
}
|
1458
|
+
|
1459
|
+
.ampstart-dropcap {
|
1460
|
+
padding-top: 1rem;
|
1461
|
+
margin-top: 1.5rem
|
1462
|
+
}
|
1463
|
+
|
1464
|
+
.ampstart-dropcap:first-letter {
|
1465
|
+
color: #000;
|
1466
|
+
font-size: 3rem;
|
1467
|
+
font-weight: 700;
|
1468
|
+
margin-left: -2px
|
1469
|
+
}
|
1470
|
+
|
1471
|
+
.ampstart-pullquote {
|
1472
|
+
border: none;
|
1473
|
+
border-left: 4px solid #000;
|
1474
|
+
font-size: 1.5rem;
|
1475
|
+
padding-left: 1.5rem
|
1476
|
+
}
|
1477
|
+
|
1478
|
+
.ampstart-byline {
|
1479
|
+
color: #4a4a4a
|
1480
|
+
}
|
1481
|
+
|
1482
|
+
.ampstart-byline time {
|
1483
|
+
font-style: normal;
|
1484
|
+
white-space: nowrap
|
1485
|
+
}
|
1486
|
+
|
1487
|
+
.amp-carousel-button-next {
|
1488
|
+
background-image: url('data:image/svg+xml;charset=utf-8,<svg width="18" height="18" viewBox="0 0 34 34" xmlns="http://www.w3.org/2000/svg"><title>Shape</title><path d="M25.557 14.7L13.818 2.961 16.8 0l16.8 16.8-16.8 16.8-2.961-2.961L25.557 18.9H0v-4.2z" fill="#FFF" fill-rule="evenodd"/></svg>')
|
1489
|
+
}
|
1490
|
+
|
1491
|
+
.amp-carousel-button-prev {
|
1492
|
+
background-image: url('data:image/svg+xml;charset=utf-8,<svg width="18" height="18" viewBox="0 0 34 34" xmlns="http://www.w3.org/2000/svg"><title>Shape</title><path d="M33.6 14.7H8.043L19.782 2.961 16.8 0 0 16.8l16.8 16.8 2.961-2.961L8.043 18.9H33.6z" fill="#FFF" fill-rule="evenodd"/></svg>')
|
1493
|
+
}
|
1494
|
+
|
1495
|
+
.ampstart-dropdown {
|
1496
|
+
min-width: 200px
|
1497
|
+
}
|
1498
|
+
|
1499
|
+
.ampstart-dropdown.absolute {
|
1500
|
+
z-index: 100
|
1501
|
+
}
|
1502
|
+
|
1503
|
+
.ampstart-dropdown.absolute>section,.ampstart-dropdown.absolute>section>header {
|
1504
|
+
height: 100%
|
1505
|
+
}
|
1506
|
+
|
1507
|
+
.ampstart-dropdown>section>header {
|
1508
|
+
background-color: #000;
|
1509
|
+
border: 0;
|
1510
|
+
color: #fff
|
1511
|
+
}
|
1512
|
+
|
1513
|
+
.ampstart-dropdown>section>header:after {
|
1514
|
+
display: inline-block;
|
1515
|
+
content: "+";
|
1516
|
+
padding: 0 0 0 1.5rem;
|
1517
|
+
color: #003f93
|
1518
|
+
}
|
1519
|
+
|
1520
|
+
.ampstart-dropdown>[expanded]>header:after {
|
1521
|
+
content: "–"
|
1522
|
+
}
|
1523
|
+
|
1524
|
+
.absolute .ampstart-dropdown-items {
|
1525
|
+
z-index: 200
|
1526
|
+
}
|
1527
|
+
|
1528
|
+
.ampstart-dropdown-item {
|
1529
|
+
background-color: #000;
|
1530
|
+
color: #003f93;
|
1531
|
+
opacity: .9
|
1532
|
+
}
|
1533
|
+
|
1534
|
+
.ampstart-dropdown-item:active,.ampstart-dropdown-item:hover {
|
1535
|
+
opacity: 1
|
1536
|
+
}
|
1537
|
+
|
1538
|
+
.ampstart-footer {
|
1539
|
+
background-color: #fff;
|
1540
|
+
color: #000;
|
1541
|
+
font-size: .75rem;
|
1542
|
+
}
|
1543
|
+
|
1544
|
+
.ampstart-footer .ampstart-icon {
|
1545
|
+
fill: #000
|
1546
|
+
}
|
1547
|
+
|
1548
|
+
.ampstart-footer .ampstart-social-follow li:last-child {
|
1549
|
+
margin-right: 0
|
1550
|
+
}
|
1551
|
+
|
1552
|
+
.ampstart-image-fullpage-hero {
|
1553
|
+
color: #fff
|
1554
|
+
}
|
1555
|
+
|
1556
|
+
.ampstart-fullpage-hero-heading-text,.ampstart-image-fullpage-hero .ampstart-image-credit {
|
1557
|
+
-webkit-box-decoration-break: clone;
|
1558
|
+
box-decoration-break: clone;
|
1559
|
+
background: #000;
|
1560
|
+
padding: 0 1rem .2rem
|
1561
|
+
}
|
1562
|
+
|
1563
|
+
.ampstart-image-fullpage-hero>amp-img {
|
1564
|
+
max-height: calc(100vh - 3.5rem)
|
1565
|
+
}
|
1566
|
+
|
1567
|
+
.ampstart-image-fullpage-hero>amp-img img {
|
1568
|
+
-o-object-fit: cover;
|
1569
|
+
object-fit: cover
|
1570
|
+
}
|
1571
|
+
|
1572
|
+
.ampstart-fullpage-hero-heading {
|
1573
|
+
line-height: 3.5rem
|
1574
|
+
}
|
1575
|
+
|
1576
|
+
.ampstart-fullpage-hero-cta {
|
1577
|
+
background: transparent
|
1578
|
+
}
|
1579
|
+
|
1580
|
+
.ampstart-readmore {
|
1581
|
+
background: -webkit-linear-gradient(bottom,rgba(0,0,0,.65),transparent);
|
1582
|
+
background: linear-gradient(0deg,rgba(0,0,0,.65) 0,transparent);
|
1583
|
+
color: #fff;
|
1584
|
+
margin-top: 5rem;
|
1585
|
+
padding-bottom: 3.5rem
|
1586
|
+
}
|
1587
|
+
|
1588
|
+
.ampstart-readmore:after {
|
1589
|
+
display: block;
|
1590
|
+
content: "⌄";
|
1591
|
+
font-size: 2rem
|
1592
|
+
}
|
1593
|
+
|
1594
|
+
@media (min-width:52.06rem) {
|
1595
|
+
.ampstart-image-fullpage-hero>amp-img {
|
1596
|
+
height: 60vh
|
1597
|
+
}
|
1598
|
+
}
|
1599
|
+
|
1600
|
+
.ampstart-image-heading {
|
1601
|
+
color: #fff;
|
1602
|
+
background: -webkit-linear-gradient(bottom,rgba(0,0,0,.65),transparent);
|
1603
|
+
background: linear-gradient(0deg,rgba(0,0,0,.65) 0,transparent)
|
1604
|
+
}
|
1605
|
+
|
1606
|
+
.ampstart-image-heading>* {
|
1607
|
+
margin: 0
|
1608
|
+
}
|
1609
|
+
|
1610
|
+
amp-carousel .ampstart-image-with-heading {
|
1611
|
+
margin-bottom: 0
|
1612
|
+
}
|
1613
|
+
|
1614
|
+
.ampstart-image-with-caption figcaption {
|
1615
|
+
color: #4f4f4f;
|
1616
|
+
line-height: 1.125rem
|
1617
|
+
}
|
1618
|
+
|
1619
|
+
amp-carousel .ampstart-image-with-caption {
|
1620
|
+
margin-bottom: 0
|
1621
|
+
}
|
1622
|
+
|
1623
|
+
.ampstart-input {
|
1624
|
+
max-width: 100%;
|
1625
|
+
width: 300px;
|
1626
|
+
min-width: 100px;
|
1627
|
+
font-size: 1rem;
|
1628
|
+
line-height: 1.5rem
|
1629
|
+
}
|
1630
|
+
|
1631
|
+
.ampstart-input [disabled],.ampstart-input [disabled]+label {
|
1632
|
+
opacity: .5
|
1633
|
+
}
|
1634
|
+
|
1635
|
+
.ampstart-input [disabled]:focus {
|
1636
|
+
outline: 0
|
1637
|
+
}
|
1638
|
+
|
1639
|
+
.ampstart-input>input,.ampstart-input>select,.ampstart-input>textarea {
|
1640
|
+
width: 100%;
|
1641
|
+
margin-top: 1rem;
|
1642
|
+
line-height: 1.5rem;
|
1643
|
+
border: 0;
|
1644
|
+
border-radius: 0;
|
1645
|
+
border-bottom: 1px solid #4a4a4a;
|
1646
|
+
background: none;
|
1647
|
+
color: #4a4a4a;
|
1648
|
+
outline: 0
|
1649
|
+
}
|
1650
|
+
|
1651
|
+
.ampstart-input>label {
|
1652
|
+
color: #003f93;
|
1653
|
+
pointer-events: none;
|
1654
|
+
font-size: .875rem;
|
1655
|
+
line-height: 1rem;
|
1656
|
+
opacity: 0;
|
1657
|
+
-webkit-animation: .2s;
|
1658
|
+
animation: .2s;
|
1659
|
+
-webkit-animation-timing-function: cubic-bezier(.4,0,.2,1);
|
1660
|
+
animation-timing-function: cubic-bezier(.4,0,.2,1);
|
1661
|
+
-webkit-animation-fill-mode: forwards;
|
1662
|
+
animation-fill-mode: forwards
|
1663
|
+
}
|
1664
|
+
|
1665
|
+
.ampstart-input>input:focus,.ampstart-input>select:focus,.ampstart-input>textarea:focus {
|
1666
|
+
outline: 0
|
1667
|
+
}
|
1668
|
+
|
1669
|
+
.ampstart-input>input:focus::-webkit-input-placeholder,.ampstart-input>select:focus::-webkit-input-placeholder,.ampstart-input>textarea:focus::-webkit-input-placeholder {
|
1670
|
+
color: transparent
|
1671
|
+
}
|
1672
|
+
|
1673
|
+
.ampstart-input>input:focus::-moz-placeholder,.ampstart-input>select:focus::-moz-placeholder,.ampstart-input>textarea:focus::-moz-placeholder {
|
1674
|
+
color: transparent
|
1675
|
+
}
|
1676
|
+
|
1677
|
+
.ampstart-input>input:focus:-ms-input-placeholder,.ampstart-input>select:focus:-ms-input-placeholder,.ampstart-input>textarea:focus:-ms-input-placeholder {
|
1678
|
+
color: transparent
|
1679
|
+
}
|
1680
|
+
|
1681
|
+
.ampstart-input>input:focus::placeholder,.ampstart-input>select:focus::placeholder,.ampstart-input>textarea:focus::placeholder {
|
1682
|
+
color: transparent
|
1683
|
+
}
|
1684
|
+
|
1685
|
+
.ampstart-input>input:not(:placeholder-shown):not([disabled])+label,.ampstart-input>select:not(:placeholder-shown):not([disabled])+label,.ampstart-input>textarea:not(:placeholder-shown):not([disabled])+label {
|
1686
|
+
opacity: 1
|
1687
|
+
}
|
1688
|
+
|
1689
|
+
.ampstart-input>input:focus+label,.ampstart-input>select:focus+label,.ampstart-input>textarea:focus+label {
|
1690
|
+
-webkit-animation-name: a;
|
1691
|
+
animation-name: a
|
1692
|
+
}
|
1693
|
+
|
1694
|
+
@-webkit-keyframes a {
|
1695
|
+
to {
|
1696
|
+
opacity: 1
|
1697
|
+
}
|
1698
|
+
}
|
1699
|
+
|
1700
|
+
@keyframes a {
|
1701
|
+
to {
|
1702
|
+
opacity: 1
|
1703
|
+
}
|
1704
|
+
}
|
1705
|
+
|
1706
|
+
.ampstart-input>label:after {
|
1707
|
+
content: "";
|
1708
|
+
height: 2px;
|
1709
|
+
position: absolute;
|
1710
|
+
bottom: 0;
|
1711
|
+
left: 45%;
|
1712
|
+
background: #003f93;
|
1713
|
+
-webkit-transition: .2s;
|
1714
|
+
transition: .2s;
|
1715
|
+
-webkit-transition-timing-function: cubic-bezier(.4,0,.2,1);
|
1716
|
+
transition-timing-function: cubic-bezier(.4,0,.2,1);
|
1717
|
+
visibility: hidden;
|
1718
|
+
width: 10px
|
1719
|
+
}
|
1720
|
+
|
1721
|
+
.ampstart-input>input:focus+label:after,.ampstart-input>select:focus+label:after,.ampstart-input>textarea:focus+label:after {
|
1722
|
+
left: 0;
|
1723
|
+
width: 100%;
|
1724
|
+
visibility: visible
|
1725
|
+
}
|
1726
|
+
|
1727
|
+
.ampstart-input>input[type=search] {
|
1728
|
+
-webkit-appearance: none;
|
1729
|
+
-moz-appearance: none;
|
1730
|
+
appearance: none
|
1731
|
+
}
|
1732
|
+
|
1733
|
+
.ampstart-input>input[type=range] {
|
1734
|
+
border-bottom: 0
|
1735
|
+
}
|
1736
|
+
|
1737
|
+
.ampstart-input>input[type=range]+label:after {
|
1738
|
+
display: none
|
1739
|
+
}
|
1740
|
+
|
1741
|
+
.ampstart-input>select {
|
1742
|
+
-webkit-appearance: none;
|
1743
|
+
-moz-appearance: none;
|
1744
|
+
appearance: none
|
1745
|
+
}
|
1746
|
+
|
1747
|
+
.ampstart-input>select+label:before {
|
1748
|
+
content: "⌄";
|
1749
|
+
line-height: 1.5rem;
|
1750
|
+
position: absolute;
|
1751
|
+
right: 5px;
|
1752
|
+
zoom: 2;
|
1753
|
+
top: 0;
|
1754
|
+
bottom: 0;
|
1755
|
+
color: #003f93
|
1756
|
+
}
|
1757
|
+
|
1758
|
+
.ampstart-input-chk,.ampstart-input-radio {
|
1759
|
+
width: auto;
|
1760
|
+
color: #4a4a4a
|
1761
|
+
}
|
1762
|
+
|
1763
|
+
.ampstart-input input[type=checkbox],.ampstart-input input[type=radio] {
|
1764
|
+
margin-top: 0;
|
1765
|
+
-webkit-appearance: none;
|
1766
|
+
-moz-appearance: none;
|
1767
|
+
appearance: none;
|
1768
|
+
width: 20px;
|
1769
|
+
height: 20px;
|
1770
|
+
border: 1px solid #003f93;
|
1771
|
+
vertical-align: middle;
|
1772
|
+
margin-right: .5rem;
|
1773
|
+
text-align: center
|
1774
|
+
}
|
1775
|
+
|
1776
|
+
.ampstart-input input[type=radio] {
|
1777
|
+
border-radius: 20px
|
1778
|
+
}
|
1779
|
+
|
1780
|
+
.ampstart-input input[type=checkbox]:not([disabled])+label,.ampstart-input input[type=radio]:not([disabled])+label {
|
1781
|
+
pointer-events: auto;
|
1782
|
+
-webkit-animation: none;
|
1783
|
+
animation: none;
|
1784
|
+
vertical-align: middle;
|
1785
|
+
opacity: 1
|
1786
|
+
}
|
1787
|
+
|
1788
|
+
.ampstart-input input[type=checkbox]+label:after,.ampstart-input input[type=radio]+label:after {
|
1789
|
+
display: none
|
1790
|
+
}
|
1791
|
+
|
1792
|
+
.ampstart-input input[type=checkbox]:after,.ampstart-input input[type=radio]:after {
|
1793
|
+
position: absolute;
|
1794
|
+
top: 0;
|
1795
|
+
left: 0;
|
1796
|
+
bottom: 0;
|
1797
|
+
right: 0;
|
1798
|
+
content: " ";
|
1799
|
+
line-height: 1.4rem;
|
1800
|
+
vertical-align: middle;
|
1801
|
+
text-align: center;
|
1802
|
+
background-color: #fff
|
1803
|
+
}
|
1804
|
+
|
1805
|
+
.ampstart-input input[type=checkbox]:checked:after {
|
1806
|
+
background-color: #003f93;
|
1807
|
+
color: #fff;
|
1808
|
+
content: "✓"
|
1809
|
+
}
|
1810
|
+
|
1811
|
+
.ampstart-input input[type=radio]:checked {
|
1812
|
+
background-color: #fff
|
1813
|
+
}
|
1814
|
+
|
1815
|
+
.ampstart-input input[type=radio]:after {
|
1816
|
+
top: 3px;
|
1817
|
+
bottom: 3px;
|
1818
|
+
left: 3px;
|
1819
|
+
right: 3px;
|
1820
|
+
border-radius: 12px
|
1821
|
+
}
|
1822
|
+
|
1823
|
+
.ampstart-input input[type=radio]:checked:after {
|
1824
|
+
content: "";
|
1825
|
+
font-size: 3rem;
|
1826
|
+
background-color: #003f93
|
1827
|
+
}
|
1828
|
+
|
1829
|
+
.ampstart-input>label,_:-ms-lang(x) {
|
1830
|
+
opacity: 1
|
1831
|
+
}
|
1832
|
+
|
1833
|
+
.ampstart-input>input:-ms-input-placeholder,_:-ms-lang(x) {
|
1834
|
+
color: transparent
|
1835
|
+
}
|
1836
|
+
|
1837
|
+
.ampstart-input>input::placeholder,_:-ms-lang(x) {
|
1838
|
+
color: transparent
|
1839
|
+
}
|
1840
|
+
|
1841
|
+
.ampstart-input>input::-ms-input-placeholder,_:-ms-lang(x) {
|
1842
|
+
color: transparent
|
1843
|
+
}
|
1844
|
+
|
1845
|
+
.ampstart-input>select::-ms-expand {
|
1846
|
+
display: none
|
1847
|
+
}
|
1848
|
+
|
1849
|
+
.ampstart-headerbar {
|
1850
|
+
background-color: #fff;
|
1851
|
+
color: #000;
|
1852
|
+
z-index: 999;
|
1853
|
+
box-shadow: 0 0 5px 2px rgba(0,0,0,.1)
|
1854
|
+
}
|
1855
|
+
|
1856
|
+
.ampstart-headerbar+:not(amp-sidebar),.ampstart-headerbar+amp-sidebar+* {
|
1857
|
+
margin-top: 4.5rem
|
1858
|
+
}
|
1859
|
+
|
1860
|
+
.ampstart-headerbar-nav .ampstart-nav-item {
|
1861
|
+
padding: 0 1rem;
|
1862
|
+
background: transparent;
|
1863
|
+
opacity: .8
|
1864
|
+
}
|
1865
|
+
|
1866
|
+
.ampstart-headerbar-nav {
|
1867
|
+
line-height: 3.5rem
|
1868
|
+
}
|
1869
|
+
|
1870
|
+
.ampstart-nav-item:active,.ampstart-nav-item:focus,.ampstart-nav-item:hover {
|
1871
|
+
opacity: 1
|
1872
|
+
}
|
1873
|
+
|
1874
|
+
.ampstart-navbar-trigger:focus {
|
1875
|
+
outline: none
|
1876
|
+
}
|
1877
|
+
|
1878
|
+
.ampstart-nav a,.ampstart-navbar-trigger,.ampstart-sidebar-faq a {
|
1879
|
+
cursor: pointer;
|
1880
|
+
text-decoration: none
|
1881
|
+
}
|
1882
|
+
|
1883
|
+
.ampstart-navbar-trigger {
|
1884
|
+
line-height: 3.5rem;
|
1885
|
+
font-size: 2rem
|
1886
|
+
}
|
1887
|
+
|
1888
|
+
.ampstart-headerbar-nav {
|
1889
|
+
-webkit-box-flex: 1;
|
1890
|
+
-ms-flex: 1;
|
1891
|
+
flex: 1
|
1892
|
+
}
|
1893
|
+
|
1894
|
+
.ampstart-nav-search {
|
1895
|
+
-webkit-box-flex: 0.5;
|
1896
|
+
-ms-flex-positive: 0.5;
|
1897
|
+
flex-grow: 0.5
|
1898
|
+
}
|
1899
|
+
|
1900
|
+
.ampstart-headerbar .ampstart-nav-search:active,.ampstart-headerbar .ampstart-nav-search:focus,.ampstart-headerbar .ampstart-nav-search:hover {
|
1901
|
+
box-shadow: none
|
1902
|
+
}
|
1903
|
+
|
1904
|
+
.ampstart-nav-search>input {
|
1905
|
+
border: none;
|
1906
|
+
border-radius: 3px;
|
1907
|
+
line-height: normal
|
1908
|
+
}
|
1909
|
+
|
1910
|
+
.ampstart-nav-dropdown {
|
1911
|
+
min-width: 200px
|
1912
|
+
}
|
1913
|
+
|
1914
|
+
.ampstart-nav-dropdown amp-accordion header {
|
1915
|
+
background-color: #fff;
|
1916
|
+
border: none
|
1917
|
+
}
|
1918
|
+
|
1919
|
+
.ampstart-nav-dropdown amp-accordion ul {
|
1920
|
+
background-color: #fff
|
1921
|
+
}
|
1922
|
+
|
1923
|
+
.ampstart-nav-dropdown .ampstart-dropdown-item,.ampstart-nav-dropdown .ampstart-dropdown>section>header {
|
1924
|
+
background-color: #fff;
|
1925
|
+
color: #000
|
1926
|
+
}
|
1927
|
+
|
1928
|
+
.ampstart-nav-dropdown .ampstart-dropdown-item {
|
1929
|
+
color: #003f93
|
1930
|
+
}
|
1931
|
+
|
1932
|
+
.ampstart-sidebar {
|
1933
|
+
background-color: #fff;
|
1934
|
+
color: #000;
|
1935
|
+
min-width: 300px;
|
1936
|
+
width: 300px
|
1937
|
+
}
|
1938
|
+
|
1939
|
+
.ampstart-sidebar .ampstart-icon {
|
1940
|
+
fill: #003f93
|
1941
|
+
}
|
1942
|
+
|
1943
|
+
.ampstart-sidebar-header {
|
1944
|
+
line-height: 3.5rem;
|
1945
|
+
min-height: 3.5rem
|
1946
|
+
}
|
1947
|
+
|
1948
|
+
.ampstart-sidebar .ampstart-dropdown-item,.ampstart-sidebar .ampstart-dropdown header,.ampstart-sidebar .ampstart-faq-item,.ampstart-sidebar .ampstart-nav-item,.ampstart-sidebar .ampstart-social-follow {
|
1949
|
+
margin: 0 0 2rem
|
1950
|
+
}
|
1951
|
+
|
1952
|
+
.ampstart-sidebar .ampstart-nav-dropdown {
|
1953
|
+
margin: 0
|
1954
|
+
}
|
1955
|
+
|
1956
|
+
.ampstart-sidebar .ampstart-navbar-trigger {
|
1957
|
+
line-height: inherit
|
1958
|
+
}
|
1959
|
+
|
1960
|
+
.ampstart-related-article-section {
|
1961
|
+
border-color: #4a4a4a
|
1962
|
+
}
|
1963
|
+
|
1964
|
+
.ampstart-related-article-section .ampstart-heading {
|
1965
|
+
color: #4a4a4a;
|
1966
|
+
font-weight: 400
|
1967
|
+
}
|
1968
|
+
|
1969
|
+
.ampstart-related-article-readmore {
|
1970
|
+
color: #000;
|
1971
|
+
letter-spacing: 0
|
1972
|
+
}
|
1973
|
+
|
1974
|
+
.ampstart-related-section-items>li {
|
1975
|
+
border-bottom: 1px solid #4a4a4a
|
1976
|
+
}
|
1977
|
+
|
1978
|
+
.ampstart-related-section-items>li:last-child {
|
1979
|
+
border: none
|
1980
|
+
}
|
1981
|
+
|
1982
|
+
.ampstart-related-section-items .ampstart-image-with-caption {
|
1983
|
+
display: -webkit-box;
|
1984
|
+
display: -ms-flexbox;
|
1985
|
+
display: flex;
|
1986
|
+
-ms-flex-wrap: wrap;
|
1987
|
+
flex-wrap: wrap;
|
1988
|
+
-webkit-box-align: center;
|
1989
|
+
-ms-flex-align: center;
|
1990
|
+
align-items: center;
|
1991
|
+
margin-bottom: 0
|
1992
|
+
}
|
1993
|
+
|
1994
|
+
.ampstart-related-section-items .ampstart-image-with-caption>amp-img,.ampstart-related-section-items .ampstart-image-with-caption>figcaption {
|
1995
|
+
-webkit-box-flex: 1;
|
1996
|
+
-ms-flex: 1;
|
1997
|
+
flex: 1
|
1998
|
+
}
|
1999
|
+
|
2000
|
+
.ampstart-related-section-items .ampstart-image-with-caption>figcaption {
|
2001
|
+
padding-left: 1rem
|
2002
|
+
}
|
2003
|
+
|
2004
|
+
@media (min-width:40.06rem) {
|
2005
|
+
.ampstart-related-section-items>li {
|
2006
|
+
border: none
|
2007
|
+
}
|
2008
|
+
|
2009
|
+
.ampstart-related-section-items .ampstart-image-with-caption>figcaption {
|
2010
|
+
padding: 1rem 0
|
2011
|
+
}
|
2012
|
+
|
2013
|
+
.ampstart-related-section-items .ampstart-image-with-caption>amp-img,.ampstart-related-section-items .ampstart-image-with-caption>figcaption {
|
2014
|
+
-ms-flex-preferred-size: 100%;
|
2015
|
+
flex-basis: 100%
|
2016
|
+
}
|
2017
|
+
}
|
2018
|
+
|
2019
|
+
.ampstart-social-box {
|
2020
|
+
display: -webkit-box;
|
2021
|
+
display: -ms-flexbox;
|
2022
|
+
display: flex
|
2023
|
+
}
|
2024
|
+
|
2025
|
+
.ampstart-social-box>amp-social-share {
|
2026
|
+
background-color: #000
|
2027
|
+
}
|
2028
|
+
|
2029
|
+
.ampstart-icon {
|
2030
|
+
fill: #003f93
|
2031
|
+
}
|
2032
|
+
|
2033
|
+
.ampstart-input {
|
2034
|
+
width: 100%
|
2035
|
+
}
|
2036
|
+
|
2037
|
+
main .ampstart-social-follow {
|
2038
|
+
margin-left: auto;
|
2039
|
+
margin-right: auto;
|
2040
|
+
width: 315px
|
2041
|
+
}
|
2042
|
+
|
2043
|
+
main .ampstart-social-follow li {
|
2044
|
+
-webkit-transform: scale(1.8);
|
2045
|
+
transform: scale(1.8)
|
2046
|
+
}
|
2047
|
+
|
2048
|
+
h1+.ampstart-byline time {
|
2049
|
+
font-size: 1.5rem;
|
2050
|
+
font-weight: 400
|
2051
|
+
}
|