├── LICENSE.md
├── README.md
├── archetypes
└── default.md
├── images
├── screenshot.png
└── tn.png
├── layouts
├── 404.html
├── _default
│ ├── li.html
│ ├── list.html
│ └── single.html
├── index.html
├── partials
│ ├── css.css
│ ├── footer.html
│ └── header.html
└── shortcodes
│ ├── img.html
│ ├── twitter.html
│ └── youtube.html
├── static
└── img
│ ├── facebook.svg
│ ├── github.svg
│ ├── google.svg
│ ├── linkedin.svg
│ └── twitter.svg
└── theme.toml
/LICENSE.md:
--------------------------------------------------------------------------------
1 | Apache License
2 | Version 2.0, January 2004
3 | http://www.apache.org/licenses/
4 |
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6 |
7 | 1. Definitions.
8 |
9 | "License" shall mean the terms and conditions for use, reproduction,
10 | and distribution as defined by Sections 1 through 9 of this document.
11 |
12 | "Licensor" shall mean the copyright owner or entity authorized by
13 | the copyright owner that is granting the License.
14 |
15 | "Legal Entity" shall mean the union of the acting entity and all
16 | other entities that control, are controlled by, or are under common
17 | control with that entity. For the purposes of this definition,
18 | "control" means (i) the power, direct or indirect, to cause the
19 | direction or management of such entity, whether by contract or
20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
21 | outstanding shares, or (iii) beneficial ownership of such entity.
22 |
23 | "You" (or "Your") shall mean an individual or Legal Entity
24 | exercising permissions granted by this License.
25 |
26 | "Source" form shall mean the preferred form for making modifications,
27 | including but not limited to software source code, documentation
28 | source, and configuration files.
29 |
30 | "Object" form shall mean any form resulting from mechanical
31 | transformation or translation of a Source form, including but
32 | not limited to compiled object code, generated documentation,
33 | and conversions to other media types.
34 |
35 | "Work" shall mean the work of authorship, whether in Source or
36 | Object form, made available under the License, as indicated by a
37 | copyright notice that is included in or attached to the work
38 | (an example is provided in the Appendix below).
39 |
40 | "Derivative Works" shall mean any work, whether in Source or Object
41 | form, that is based on (or derived from) the Work and for which the
42 | editorial revisions, annotations, elaborations, or other modifications
43 | represent, as a whole, an original work of authorship. For the purposes
44 | of this License, Derivative Works shall not include works that remain
45 | separable from, or merely link (or bind by name) to the interfaces of,
46 | the Work and Derivative Works thereof.
47 |
48 | "Contribution" shall mean any work of authorship, including
49 | the original version of the Work and any modifications or additions
50 | to that Work or Derivative Works thereof, that is intentionally
51 | submitted to Licensor for inclusion in the Work by the copyright owner
52 | or by an individual or Legal Entity authorized to submit on behalf of
53 | the copyright owner. For the purposes of this definition, "submitted"
54 | means any form of electronic, verbal, or written communication sent
55 | to the Licensor or its representatives, including but not limited to
56 | communication on electronic mailing lists, source code control systems,
57 | and issue tracking systems that are managed by, or on behalf of, the
58 | Licensor for the purpose of discussing and improving the Work, but
59 | excluding communication that is conspicuously marked or otherwise
60 | designated in writing by the copyright owner as "Not a Contribution."
61 |
62 | "Contributor" shall mean Licensor and any individual or Legal Entity
63 | on behalf of whom a Contribution has been received by Licensor and
64 | subsequently incorporated within the Work.
65 |
66 | 2. Grant of Copyright License. Subject to the terms and conditions of
67 | this License, each Contributor hereby grants to You a perpetual,
68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69 | copyright license to reproduce, prepare Derivative Works of,
70 | publicly display, publicly perform, sublicense, and distribute the
71 | Work and such Derivative Works in Source or Object form.
72 |
73 | 3. Grant of Patent License. Subject to the terms and conditions of
74 | this License, each Contributor hereby grants to You a perpetual,
75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76 | (except as stated in this section) patent license to make, have made,
77 | use, offer to sell, sell, import, and otherwise transfer the Work,
78 | where such license applies only to those patent claims licensable
79 | by such Contributor that are necessarily infringed by their
80 | Contribution(s) alone or by combination of their Contribution(s)
81 | with the Work to which such Contribution(s) was submitted. If You
82 | institute patent litigation against any entity (including a
83 | cross-claim or counterclaim in a lawsuit) alleging that the Work
84 | or a Contribution incorporated within the Work constitutes direct
85 | or contributory patent infringement, then any patent licenses
86 | granted to You under this License for that Work shall terminate
87 | as of the date such litigation is filed.
88 |
89 | 4. Redistribution. You may reproduce and distribute copies of the
90 | Work or Derivative Works thereof in any medium, with or without
91 | modifications, and in Source or Object form, provided that You
92 | meet the following conditions:
93 |
94 | (a) You must give any other recipients of the Work or
95 | Derivative Works a copy of this License; and
96 |
97 | (b) You must cause any modified files to carry prominent notices
98 | stating that You changed the files; and
99 |
100 | (c) You must retain, in the Source form of any Derivative Works
101 | that You distribute, all copyright, patent, trademark, and
102 | attribution notices from the Source form of the Work,
103 | excluding those notices that do not pertain to any part of
104 | the Derivative Works; and
105 |
106 | (d) If the Work includes a "NOTICE" text file as part of its
107 | distribution, then any Derivative Works that You distribute must
108 | include a readable copy of the attribution notices contained
109 | within such NOTICE file, excluding those notices that do not
110 | pertain to any part of the Derivative Works, in at least one
111 | of the following places: within a NOTICE text file distributed
112 | as part of the Derivative Works; within the Source form or
113 | documentation, if provided along with the Derivative Works; or,
114 | within a display generated by the Derivative Works, if and
115 | wherever such third-party notices normally appear. The contents
116 | of the NOTICE file are for informational purposes only and
117 | do not modify the License. You may add Your own attribution
118 | notices within Derivative Works that You distribute, alongside
119 | or as an addendum to the NOTICE text from the Work, provided
120 | that such additional attribution notices cannot be construed
121 | as modifying the License.
122 |
123 | You may add Your own copyright statement to Your modifications and
124 | may provide additional or different license terms and conditions
125 | for use, reproduction, or distribution of Your modifications, or
126 | for any such Derivative Works as a whole, provided Your use,
127 | reproduction, and distribution of the Work otherwise complies with
128 | the conditions stated in this License.
129 |
130 | 5. Submission of Contributions. Unless You explicitly state otherwise,
131 | any Contribution intentionally submitted for inclusion in the Work
132 | by You to the Licensor shall be under the terms and conditions of
133 | this License, without any additional terms or conditions.
134 | Notwithstanding the above, nothing herein shall supersede or modify
135 | the terms of any separate license agreement you may have executed
136 | with Licensor regarding such Contributions.
137 |
138 | 6. Trademarks. This License does not grant permission to use the trade
139 | names, trademarks, service marks, or product names of the Licensor,
140 | except as required for reasonable and customary use in describing the
141 | origin of the Work and reproducing the content of the NOTICE file.
142 |
143 | 7. Disclaimer of Warranty. Unless required by applicable law or
144 | agreed to in writing, Licensor provides the Work (and each
145 | Contributor provides its Contributions) on an "AS IS" BASIS,
146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147 | implied, including, without limitation, any warranties or conditions
148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149 | PARTICULAR PURPOSE. You are solely responsible for determining the
150 | appropriateness of using or redistributing the Work and assume any
151 | risks associated with Your exercise of permissions under this License.
152 |
153 | 8. Limitation of Liability. In no event and under no legal theory,
154 | whether in tort (including negligence), contract, or otherwise,
155 | unless required by applicable law (such as deliberate and grossly
156 | negligent acts) or agreed to in writing, shall any Contributor be
157 | liable to You for damages, including any direct, indirect, special,
158 | incidental, or consequential damages of any character arising as a
159 | result of this License or out of the use or inability to use the
160 | Work (including but not limited to damages for loss of goodwill,
161 | work stoppage, computer failure or malfunction, or any and all
162 | other commercial damages or losses), even if such Contributor
163 | has been advised of the possibility of such damages.
164 |
165 | 9. Accepting Warranty or Additional Liability. While redistributing
166 | the Work or Derivative Works thereof, You may choose to offer,
167 | and charge a fee for, acceptance of support, warranty, indemnity,
168 | or other liability obligations and/or rights consistent with this
169 | License. However, in accepting such obligations, You may act only
170 | on Your own behalf and on Your sole responsibility, not on behalf
171 | of any other Contributor, and only if You agree to indemnify,
172 | defend, and hold each Contributor harmless for any liability
173 | incurred by, or claims asserted against, such Contributor by reason
174 | of your accepting any such warranty or additional liability.
175 |
176 | END OF TERMS AND CONDITIONS
177 |
178 | APPENDIX: How to apply the Apache License to your work.
179 |
180 | To apply the Apache License to your work, attach the following
181 | boilerplate notice, with the fields enclosed by brackets "{}"
182 | replaced with your own identifying information. (Don't include
183 | the brackets!) The text should be enclosed in the appropriate
184 | comment syntax for the file format. We also recommend that a
185 | file or class name and description of purpose be included on the
186 | same "printed page" as the copyright notice for easier
187 | identification within third-party archives.
188 |
189 | Copyright 2016 pdevty
190 |
191 | Licensed under the Apache License, Version 2.0 (the "License");
192 | you may not use this file except in compliance with the License.
193 | You may obtain a copy of the License at
194 |
195 | http://www.apache.org/licenses/LICENSE-2.0
196 |
197 | Unless required by applicable law or agreed to in writing, software
198 | distributed under the License is distributed on an "AS IS" BASIS,
199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200 | See the License for the specific language governing permissions and
201 | limitations under the License.
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # AMP
2 |
3 | AMP is a simple AMP (Accelerated Mobile Pages) material design theme for [Hugo](http://gohugo.io/).
4 |
5 | 
6 |
7 | ## Features
8 |
9 | - Simple AMP (Accelerated Mobile Pages) Material Design by [ampproject](https://www.ampproject.org/)
10 | - Google Analytics (optional)
11 | - Menu
12 | - Twitter, Facebook, GitHub, Google+, LinkedIn links (optional)
13 | - Tags (optional)
14 | - Categories (optional)
15 |
16 | ## Installation
17 |
18 | ```shell
19 | $ mkdir themes && cd themes
20 | $ git clone https://github.com/pdevty/amp
21 | ```
22 |
23 | ## Usage
24 |
25 | ```shell
26 | $ hugo server -t amp
27 | ```
28 |
29 | ## Configuration
30 |
31 | config.toml
32 |
33 | ```toml
34 | theme="amp"
35 | baseurl = "Your Site URL"
36 | title = "Your Site Title"
37 | copyright = "© 2016 Copyright Text"
38 | canonifyurls = true
39 |
40 | [params]
41 | description = "Your Site description for top page" #optional
42 | googleanalytics = "Your Tracking Id" # optional
43 |
44 | # optional
45 | [social]
46 | twitter = "Your Twitter Name"
47 | github = "Your Github Name"
48 | facebook = "Your facebook Name"
49 | gplus = "Your Google+ profile name"
50 | linkedin = "Your LinkedIn Name"
51 | ```
52 |
53 | ```shell
54 | $ hugo new post/my-new-post.md
55 | ```
56 |
57 | content/post/my-new-post.md
58 |
59 | ```yaml
60 | ---
61 | title: "my new post"
62 | date: "2016-09-01"
63 | tags: ["x", "y"]
64 | categories: ["x", "y"]
65 | menu:
66 | main:
67 | parent: tutorials
68 | ---
69 |
70 | content here
71 | ```
72 |
73 | ## Shortcodes
74 |
75 | ```md
76 |
77 | {{< img src="/img/img.png" width="320" height="50" >}}
78 |
79 | {{< youtube lBTCB7yLs8YTTTTT >}}
80 |
81 | {{< twitter 6387934905210019852222 >}}
82 | ```
83 |
84 | ## Contributing
85 |
86 | 1. Fork it
87 | 2. Create your feature branch (`git checkout -b my-new-feature`)
88 | 3. Commit your changes (`git commit -am 'Add some feature'`)
89 | 4. Push to the branch (`git push origin my-new-feature`)
90 | 5. Create new Pull Request
91 |
--------------------------------------------------------------------------------
/archetypes/default.md:
--------------------------------------------------------------------------------
1 | +++
2 | tags=[]
3 | categories=[]
4 | +++
5 |
--------------------------------------------------------------------------------
/images/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdevty/amp/c28e33261d01f05f2085421dbf960bb67d817c76/images/screenshot.png
--------------------------------------------------------------------------------
/images/tn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdevty/amp/c28e33261d01f05f2085421dbf960bb67d817c76/images/tn.png
--------------------------------------------------------------------------------
/layouts/404.html:
--------------------------------------------------------------------------------
1 | {{ partial "header.html" . }}
2 |
8 |
9 |
10 |
20 |
21 |
31 |
32 |
33 |
34 | {{ partial "footer.html" . }}
--------------------------------------------------------------------------------
/layouts/_default/li.html:
--------------------------------------------------------------------------------
1 |
2 |
{{ .Title }}
3 | {{if gt (len .Summary) 200}}
4 |
{{slicestr .Summary 3 200 }}
5 | {{else}}
6 |
{{ .Summary }}
7 | {{end}}
8 |
11 |
12 |
--------------------------------------------------------------------------------
/layouts/_default/list.html:
--------------------------------------------------------------------------------
1 | {{ partial "header.html" . }}
2 |
8 |
9 |
10 |
20 |
21 |
22 |
28 |
29 | {{- range .Data.Pages }}
30 | {{ .Render "li" }}
31 | {{- end }}
32 |
33 |
34 |
35 |
36 |
37 |
38 | {{ partial "footer.html" . }}
--------------------------------------------------------------------------------
/layouts/_default/single.html:
--------------------------------------------------------------------------------
1 | {{ partial "header.html" . }}
2 |
20 |
21 |
22 |
31 |
32 |
33 |
34 |
37 |
51 |
52 |
53 |
54 |
55 |
56 | {{ partial "footer.html" . }}
57 |
--------------------------------------------------------------------------------
/layouts/index.html:
--------------------------------------------------------------------------------
1 | {{ partial "header.html" . }}
2 |
8 |
9 |
10 |
20 |
21 |
22 |
28 |
29 | {{- range .Data.Pages }}
30 | {{ .Render "li" }}
31 | {{- end }}
32 |
33 |
34 |
35 |
36 |
37 | {{ partial "footer.html" . }}
--------------------------------------------------------------------------------
/layouts/partials/css.css:
--------------------------------------------------------------------------------
1 | .hljs{display:block;padding:0;color:#333}.hljs-comment,.hljs-quote{color:#998;font-style:italic}.hljs-keyword,.hljs-selector-tag,.hljs-subst{color:#333}.hljs-literal,.hljs-number,.hljs-tag .hljs-attr,.hljs-template-variable,.hljs-variable{color:teal}.hljs-doctag,.hljs-string{color:#d14}.hljs-section,.hljs-selector-id,.hljs-title{color:#900;font-weight:700}.hljs-subst{font-weight:400}.hljs-class .hljs-title,.hljs-type{color:#458;font-weight:700}.hljs-attribute,.hljs-name,.hljs-tag{color:navy;font-weight:400}.hljs-meta,.hljs-strong{font-weight:700}.hljs-link,.hljs-regexp{color:#009926}.hljs-bullet,.hljs-symbol{color:#990073}.hljs-built_in,.hljs-builtin-name{color:#0086b3}.hljs-meta{color:#999}.hljs-deletion{background:#fdd}.hljs-addition{background:#dfd}.hljs-emphasis{font-style:italic}amp-carousel .ampstart-image-with-caption,amp-carousel .ampstart-image-with-heading{margin-bottom:0}.ampstart-input [disabled]:focus,.ampstart-input>input:focus,.ampstart-input>select:focus,.ampstart-input>textarea:focus,.ampstart-navbar-trigger:focus{outline:0}button,hr,input{overflow:visible}.list-reset,.list-style-none{list-style:none}.fit,.truncate,legend{max-width:100%}.clearfix:after,.www-component-anchor{clear:both}.ampstart-byline{color:#4a4a4a}.ampstart-byline time{font-style:normal;white-space:nowrap}.editor .comment,dfn{font-style:italic}.amp-carousel-button-next{background-image:url('data:image/svg+xml;charset=utf-8,Shape')}.amp-carousel-button-prev{background-image:url('data:image/svg+xml;charset=utf-8,Shape')}.ampstart-dropdown{min-width:200px}.ampstart-dropdown.absolute{z-index:100}.ampstart-dropdown.absolute>section,.ampstart-dropdown.absolute>section>header{height:100%}.ampstart-dropdown>section>header{background-color:#fff;border:0;color:#b60845}.ampstart-dropdown>section>header:after{display:inline-block;content:"+";padding:0 0 0 2rem;color:#003f93}.ampstart-dropdown>[expanded]>header:after{content:"–"}.absolute .ampstart-dropdown-items{z-index:200}.ampstart-dropdown-item{background-color:#fff;color:#003f93;opacity:.9}.ampstart-dropdown-item:active,.ampstart-dropdown-item:hover{opacity:1}.ampstart-footer{background-color:#fff;color:#000;font-size:.75rem;padding-top:7rem;padding-bottom:7rem}.ampstart-footer .ampstart-icon{fill:#000}.ampstart-icon,.ampstart-sidebar .ampstart-icon{fill:#003f93}.ampstart-footer .ampstart-social-follow li:last-child{margin-right:0}.ampstart-image-fullpage-hero{color:#b60845}.ampstart-fullpage-hero-heading-text,.ampstart-image-fullpage-hero .ampstart-image-credit{-webkit-box-decoration-break:clone;box-decoration-break:clone;background:#fff;padding:0 1.5rem .2rem}.ampstart-image-fullpage-hero>amp-img{max-height:calc(100vh - 3.5rem)}.ampstart-image-fullpage-hero>amp-img img{-o-object-fit:cover;object-fit:cover}.ampstart-fullpage-hero-heading{line-height:5rem}.ampstart-fullpage-hero-cta{background:0}.ampstart-readmore{background:-webkit-linear-gradient(bottom,rgba(0,0,0,.65),transparent);background:linear-gradient(0deg,rgba(0,0,0,.65) 0,transparent);color:#b60845;margin-top:7rem;padding-bottom:5rem}.ampstart-readmore:after{display:block;content:"⌄";font-size:2rem}.ampstart-input input[type=checkbox]+label:after,.ampstart-input input[type=radio]+label:after,.ampstart-input>input[type=range]+label:after{display:none}@media(min-width:52.06rem){.ampstart-image-fullpage-hero>amp-img{height:60vh}}.ampstart-image-heading{color:#b60845;background:-webkit-linear-gradient(bottom,rgba(0,0,0,.65),transparent);background:linear-gradient(0deg,rgba(0,0,0,.65) 0,transparent)}.ampstart-image-heading>*{margin:0}.ampstart-image-with-caption figcaption{color:#4f4f4f;line-height:1.125rem}.ampstart-input{max-width:100%;width:300px;min-width:100px;font-size:1rem;line-height:1.5rem}.ampstart-input [disabled],.ampstart-input [disabled]+label{opacity:.5}.ampstart-input>input,.ampstart-input>select,.ampstart-input>textarea{width:100%;margin-top:1rem;line-height:1.5rem;border:0;border-radius:0;border-bottom:1px solid #4a4a4a;background:0;color:#4a4a4a;outline:0}.ampstart-input>label{color:#003f93;pointer-events:none;font-size:.875rem;line-height:1rem;opacity:0;-webkit-animation:.2s;animation:.2s;-webkit-animation-timing-function:cubic-bezier(.4,0,.2,1);animation-timing-function:cubic-bezier(.4,0,.2,1);-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.ampstart-input>input:focus::-webkit-input-placeholder,.ampstart-input>select:focus::-webkit-input-placeholder,.ampstart-input>textarea:focus::-webkit-input-placeholder{color:transparent}.ampstart-input>input:focus:-ms-input-placeholder,.ampstart-input>select:focus:-ms-input-placeholder,.ampstart-input>textarea:focus:-ms-input-placeholder{color:transparent}.ampstart-input>input:focus::placeholder,.ampstart-input>select:focus::placeholder,.ampstart-input>textarea:focus::placeholder{color:transparent}.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{opacity:1}.ampstart-input>input:focus+label,.ampstart-input>select:focus+label,.ampstart-input>textarea:focus+label{-webkit-animation-name:a;animation-name:a}@-webkit-keyframes a{to{opacity:1}}@keyframes a{to{opacity:1}}.ampstart-input>label:after{content:"";height:2px;position:absolute;bottom:0;left:45%;background:#003f93;-webkit-transition:.2s;transition:.2s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);visibility:hidden;width:10px}.ampstart-input>input:focus+label:after,.ampstart-input>select:focus+label:after,.ampstart-input>textarea:focus+label:after{left:0;width:100%;visibility:visible}.ampstart-input>input[type=search]{-webkit-appearance:none;-moz-appearance:none;appearance:none}.ampstart-input>input[type=range]{border-bottom:0}.ampstart-input>select{-webkit-appearance:none;-moz-appearance:none;appearance:none}.ampstart-input>select+label:before{content:"⌄";line-height:1.5rem;position:absolute;right:5px;zoom:2;top:0;bottom:0;color:#003f93}.ampstart-input-chk,.ampstart-input-radio{width:auto;color:#4a4a4a}.ampstart-input input[type=checkbox],.ampstart-input input[type=radio]{margin-top:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;width:20px;height:20px;border:1px solid #003f93;vertical-align:middle;margin-right:1rem;text-align:center}.ampstart-input input[type=radio]{border-radius:20px}.ampstart-input input[type=checkbox]:not([disabled])+label,.ampstart-input input[type=radio]:not([disabled])+label{pointer-events:auto;-webkit-animation:none;animation:none;vertical-align:middle;opacity:1}.ampstart-input input[type=checkbox]:after,.ampstart-input input[type=radio]:after{position:absolute;top:0;left:0;bottom:0;right:0;content:" ";line-height:1.4rem;vertical-align:middle;text-align:center;background-color:#b60845}.relative,sub,sup{position:relative}.align-baseline,progress,sub,sup{vertical-align:baseline}.ampstart-input input[type=checkbox]:checked:after{background-color:#003f93;color:#b60845;content:"✓"}.ampstart-input input[type=radio]:checked{background-color:#b60845}.ampstart-input input[type=radio]:after{top:3px;bottom:3px;left:3px;right:3px;border-radius:12px}.ampstart-input input[type=radio]:checked:after{content:"";font-size:3rem;background-color:#003f93}.ampstart-input>label,_:-ms-lang(x){opacity:1}.ampstart-input>input:-ms-input-placeholder,_:-ms-lang(x){color:transparent}.ampstart-input>input::placeholder,_:-ms-lang(x){color:transparent}.ampstart-input>input::-ms-input-placeholder,_:-ms-lang(x){color:transparent}.ampstart-input>select::-ms-expand{display:none}.ampstart-headerbar{background-color:#fff;color:#000;z-index:999;box-shadow:0 0 5px 2px rgba(0,0,0,.1)}.ampstart-headerbar+:not(amp-sidebar),.ampstart-headerbar+amp-sidebar+*{margin-top:3.5rem}.ampstart-headerbar-nav .ampstart-nav-item{padding:0 1.5rem;background:0;opacity:.8}.ampstart-nav-dropdown amp-accordion header,.ampstart-nav-dropdown amp-accordion ul,.ampstart-sidebar,.ampstart-social-box>amp-social-share,.editor,.editor .gutter{background-color:#fff}.ampstart-headerbar-nav{line-height:3.5rem;-webkit-box-flex:1;-ms-flex:1;flex:1}.ampstart-nav-item:active,.ampstart-nav-item:focus,.ampstart-nav-item:hover{opacity:1}.ampstart-nav a,.ampstart-navbar-trigger,.ampstart-sidebar-faq a{cursor:pointer;text-decoration:none}.ampstart-navbar-trigger{line-height:3.5rem;font-size:2rem}.ampstart-nav-search{-webkit-box-flex:.5;-ms-flex-positive:.5;flex-grow:.5}.ampstart-headerbar .ampstart-nav-search:active,.ampstart-headerbar .ampstart-nav-search:focus,.ampstart-headerbar .ampstart-nav-search:hover{box-shadow:none}.ampstart-nav-search>input{border:0;border-radius:3px;line-height:normal}.ampstart-nav-dropdown{min-width:200px}.ampstart-nav-dropdown amp-accordion header{border:0}.ampstart-nav-dropdown .ampstart-dropdown-item,.ampstart-nav-dropdown .ampstart-dropdown>section>header{background-color:#fff;color:#000}.ampstart-nav-dropdown .ampstart-dropdown-item{color:#003f93}.ampstart-sidebar{color:#000;min-width:300px;width:300px}.ampstart-sidebar-header{line-height:3.5rem;min-height:3.5rem}.ampstart-sidebar .ampstart-dropdown header,.ampstart-sidebar .ampstart-dropdown-item,.ampstart-sidebar .ampstart-faq-item,.ampstart-sidebar .ampstart-nav-item,.ampstart-sidebar .ampstart-social-follow{margin:0 0 2.5rem}.ampstart-sidebar .ampstart-nav-dropdown,body{margin:0}.ampstart-sidebar .ampstart-navbar-trigger{line-height:inherit}amp-user-notification{background:#fff;box-shadow:0 0 5px 2px rgba(0,0,0,.1)}.ampstart-related-article-section{border-color:#4a4a4a}.ampstart-related-article-section .ampstart-heading{color:#4a4a4a;font-weight:400}.ampstart-related-article-readmore{color:#fff;letter-spacing:0}.ampstart-related-section-items>li{border-bottom:1px solid #4a4a4a}.ampstart-related-section-items>li:last-child{border:0}.ampstart-related-section-items .ampstart-image-with-caption{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:0}.ampstart-related-section-items .ampstart-image-with-caption>amp-img,.ampstart-related-section-items .ampstart-image-with-caption>figcaption{-webkit-box-flex:1;-ms-flex:1;flex:1}.ampstart-related-section-items .ampstart-image-with-caption>figcaption{padding-left:1.5rem}@media(min-width:40.06rem){.ampstart-related-section-items>li{border:0}.ampstart-related-section-items .ampstart-image-with-caption>figcaption{padding:1.5rem 0}.ampstart-related-section-items .ampstart-image-with-caption>amp-img,.ampstart-related-section-items .ampstart-image-with-caption>figcaption{-ms-flex-preferred-size:100%;flex-basis:100%}}.ampstart-social-box{display:-webkit-box;display:-ms-flexbox;display:flex}.editor,.editor .gutter{color:#555}.editor .indent-guide,.editor .invisible-character{color:rgba(85,85,85,.2)}.editor .wrap-guide{background-color:rgba(85,85,85,.2)}.editor .gutter{color:#555;background:#fff}.editor .fold-marker:after,.editor .gutter .line-number.folded,.editor .gutter .line-number:after{color:#e87b00}.editor .invisible{color:#555}.editor .selection .region{background-color:#e1e1e1}.editor.is-focused .cursor{border-color:#000}.editor.is-focused .selection .region{background-color:#afc4da}.editor.is-focused .line-number.cursor-line-no-selection,.editor.is-focused .line.cursor-line{background-color:rgba(255,255,134,.34)}.editor .comment{color:#998}.editor .string{color:#d14}.editor .source .string .meta.embedded.line,.editor .source .string .source{color:#5a5a5a}.editor .source .string .punctuation.section.embedded,.editor .source .string .punctuation.section.embedded .source{color:#920b2d}.editor .constant.numeric{color:#d14}.editor .constant.character,.editor .constant.language,.editor .constant.other{color:#606aa1}.editor .constant.symbol{color:#990073}.editor .constant.numeric.line-number.find-in-files .match{color:rgba(143,190,0,.63)}.editor .variable{color:teal}.editor .variable.parameter{color:#606aa1}.editor .keyword{color:#222;font-weight:700}.editor .keyword.unit{color:#458}.editor .keyword.special-method{color:#0086b3}.editor .storage,.editor .storage.type{color:#222}.editor .entity.name.class,.editor .entity.other.inherited-class{text-decoration:underline;color:#606aa1}.editor .entity.name.function{color:#900}.editor .entity.name.tag{color:teal}.editor .entity.other.attribute-name{color:#458;font-weight:700}.editor .entity.name.filename.find-in-files{color:#e6db74}.editor .support.constant,.editor .support.function,.editor .support.type{color:#458}.editor .support.class{color:teal}.editor .invalid{color:#f8f8f0;background-color:#00a8c6}.editor .invalid.deprecated{color:#f8f8f0;background-color:#8fbe00}.editor .meta.structure.dictionary.json>.string.quoted.double.json,.editor .meta.structure.dictionary.json>.string.quoted.double.json .punctuation.string{color:navy}.editor .meta.structure.dictionary.value.json>.string.quoted.double.json{color:#d14}.editor .meta.diff,.editor .meta.diff.header{color:#75715e}.editor .css.support.property-name{font-weight:700;color:#333}.editor .css.constant{color:#099}.editor .source.gfm{color:#444}.editor .gfm .markup.heading{color:#111}.editor .gfm .link,.editor .gfm .variable.list{color:#888}.editor .markdown .paragraph{color:#444}.editor .markdown .heading{color:#111}.editor .markdown .link,.editor .markdown .link .string{color:#888}.editor .search-results .marker .region{background-color:transparent;border:1px solid #999}.editor .search-results .marker.current-result .region{border:1px solid #000}.bracket-matcher{background-color:#c9c9c9;opacity:.7;border-bottom:0 none}.editor .tag.block{display:inline}audio,canvas,progress,video{display:inline-block}/*! Bassplate | MIT License | http://github.com/basscss/bassplate *//*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:0;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit;font-weight:bolder}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0}sub{bottom:-.25em}sup{top:-.5em}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}.mr0,.mx0{margin-right:0}.mt0,.my0{margin-top:0}.mb0,.my0{margin-bottom:0}.p0,legend{padding:0}.list-reset,.pl0,.px0{padding-left:0}.pr0,.px0{padding-right:0}.pt0,.py0{padding-top:0}.pb0,.py0{padding-bottom:0}legend{box-sizing:border-box;color:inherit;display:table;white-space:normal}.ampstart-btn,.nowrap,.truncate{white-space:nowrap}textarea{overflow:auto}.overflow-hidden,.truncate{overflow:hidden}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}[hidden],template{display:none}.h1{font-size:3rem}.h2{font-size:2rem}.h3{font-size:1.5rem}.h4{font-size:1.125rem}.h5{font-size:.875rem}.h6{font-size:.75rem}.font-family-inherit{font-family:inherit}.font-size-inherit{font-size:inherit}.text-decoration-none{text-decoration:none}.bold{font-weight:700}.regular{font-weight:400}.italic{font-style:italic}.caps{text-transform:uppercase;letter-spacing:.2em}.left-align{text-align:left}.center{text-align:center}.right-align{text-align:right}.justify{text-align:justify}.break-word{word-wrap:break-word}.line-height-1{line-height:1rem}.line-height-2{line-height:1.125rem}.line-height-3{line-height:1.5rem}.line-height-4{line-height:2rem}.underline{text-decoration:underline}.truncate{text-overflow:ellipsis}.inline{display:inline}.block{display:block}.inline-block{display:inline-block}.table{display:table}.table-cell{display:table-cell}.overflow-scroll{overflow:scroll}.overflow-auto{overflow:auto}.clearfix:after,.clearfix:before{content:" ";display:table}.left{float:left}.right{float:right}.max-width-1{max-width:24rem}.max-width-2{max-width:32rem}.max-width-3{max-width:48rem}.max-width-4{max-width:64rem}.border-box{box-sizing:border-box}.align-top{vertical-align:top}.align-middle{vertical-align:middle}.align-bottom{vertical-align:bottom}.m0{margin:0}.ml0,.mx0{margin-left:0}.mr1,.mx1{margin-right:1rem}.mt1,.my1{margin-top:1rem}.mb1,.my1{margin-bottom:1rem}.m1{margin:1rem}.ml1,.mx1{margin-left:1rem}.mr2,.mx2{margin-right:1.5rem}.mt2,.my2{margin-top:1.5rem}.mb2,.my2{margin-bottom:1.5rem}.m2{margin:1.5rem}.ml2,.mx2{margin-left:1.5rem}.mr3,.mx3{margin-right:2rem}.mt3,.my3{margin-top:2rem}.mb3,.my3{margin-bottom:2rem}.m3{margin:2rem}.ml3,.mx3{margin-left:2rem}.mr4,.mx4{margin-right:2.5rem}.mt4,.my4{margin-top:2.5rem}.mb4,.my4{margin-bottom:2.5rem}.m4{margin:2.5rem}.ml4,.mx4{margin-left:2.5rem}.mxn1{margin-left:-1rem;margin-right:-1rem}.mxn2{margin-left:-1.5rem;margin-right:-1.5rem}.mxn3{margin-left:-2rem;margin-right:-2rem}.mxn4{margin-left:-2.5rem;margin-right:-2.5rem}.ml-auto,.mx-auto{margin-left:auto}.mr-auto,.mx-auto{margin-right:auto}.pl1,.px1{padding-left:1rem}.pr1,.px1{padding-right:1rem}.pt1,.py1{padding-top:1rem}.pb1,.py1{padding-bottom:1rem}.p1{padding:1rem}.pt2,.py2{padding-top:1.5rem}.pb2,.py2{padding-bottom:1.5rem}.pl2,.px2{padding-left:1.5rem}.pr2,.px2{padding-right:1.5rem}.p2{padding:1.5rem}.pt3,.py3{padding-top:2rem}.pb3,.py3{padding-bottom:2rem}.pl3,.px3{padding-left:2rem}.pr3,.px3{padding-right:2rem}.p3{padding:2rem}.pt4,.py4{padding-top:2.5rem}.pb4,.py4{padding-bottom:2.5rem}.pl4,.px4{padding-left:2.5rem}.pr4,.px4{padding-right:2.5rem}.p4{padding:2.5rem}h1,h2,h3,h4,h5,h6,p{margin:0;padding:0}.col{float:left}.col,.col-right{box-sizing:border-box}.col-right{float:right}.col-1{width:8.33333%}.col-2{width:16.66667%}.col-3{width:25%}.col-4{width:33.33333%}.col-5{width:41.66667%}.col-6{width:50%}.col-7{width:58.33333%}.col-8{width:66.66667%}.col-9{width:75%}.col-10{width:83.33333%}.col-11{width:91.66667%}.col-12{width:100%}.flex{display:-webkit-box;display:-ms-flexbox;display:flex}@media(min-width:40.06rem){.sm-col,.sm-col-right{box-sizing:border-box}.sm-col{float:left}.sm-col-right{float:right}.sm-col-1{width:8.33333%}.sm-col-2{width:16.66667%}.sm-col-3{width:25%}.sm-col-4{width:33.33333%}.sm-col-5{width:41.66667%}.sm-col-6{width:50%}.sm-col-7{width:58.33333%}.sm-col-8{width:66.66667%}.sm-col-9{width:75%}.sm-col-10{width:83.33333%}.sm-col-11{width:91.66667%}.sm-col-12{width:100%}.sm-flex{display:-webkit-box;display:-ms-flexbox;display:flex}}@media(min-width:52.06rem){.md-col,.md-col-right{box-sizing:border-box}.md-col{float:left}.md-col-right{float:right}.md-col-1{width:8.33333%}.md-col-2{width:16.66667%}.md-col-3{width:25%}.md-col-4{width:33.33333%}.md-col-5{width:41.66667%}.md-col-6{width:50%}.md-col-7{width:58.33333%}.md-col-8{width:66.66667%}.md-col-9{width:75%}.md-col-10{width:83.33333%}.md-col-11{width:91.66667%}.md-col-12{width:100%}.md-flex{display:-webkit-box;display:-ms-flexbox;display:flex}}@media(min-width:64.06rem){.lg-col,.lg-col-right{box-sizing:border-box}.lg-col{float:left}.lg-col-right{float:right}.lg-col-1{width:8.33333%}.lg-col-2{width:16.66667%}.lg-col-3{width:25%}.lg-col-4{width:33.33333%}.lg-col-5{width:41.66667%}.lg-col-6{width:50%}.lg-col-7{width:58.33333%}.lg-col-8{width:66.66667%}.lg-col-9{width:75%}.lg-col-10{width:83.33333%}.lg-col-11{width:91.66667%}.lg-col-12{width:100%}.lg-flex{display:-webkit-box;display:-ms-flexbox;display:flex}.lg-hide{display:none}}.flex-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.flex-wrap{-ms-flex-wrap:wrap;flex-wrap:wrap}.items-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.items-end{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.items-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.items-baseline{-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline}.items-stretch{-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.self-start{-ms-flex-item-align:start;align-self:flex-start}.self-end{-ms-flex-item-align:end;align-self:flex-end}.self-center{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.self-baseline{-ms-flex-item-align:baseline;align-self:baseline}.self-stretch{-ms-flex-item-align:stretch;-ms-grid-row-align:stretch;align-self:stretch}.justify-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.justify-end{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.justify-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.justify-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.justify-around{-ms-flex-pack:distribute;justify-content:space-around}.content-start{-ms-flex-line-pack:start;align-content:flex-start}.content-end{-ms-flex-line-pack:end;align-content:flex-end}.content-center{-ms-flex-line-pack:center;align-content:center}.content-between{-ms-flex-line-pack:justify;align-content:space-between}.content-around{-ms-flex-line-pack:distribute;align-content:space-around}.content-stretch{-ms-flex-line-pack:stretch;align-content:stretch}.flex-auto{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;min-width:0;min-height:0}.flex-none{-webkit-box-flex:0;-ms-flex:none;flex:none}.order-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-last{-webkit-box-ordinal-group:100000;-ms-flex-order:99999;order:99999}.absolute{position:absolute}.fixed{position:fixed}.top-0{top:0}.right-0{right:0}.bottom-0{bottom:0}.left-0{left:0}.z1{z-index:1}.z2{z-index:2}.z3{z-index:3}.z4{z-index:4}.border{border-style:solid;border-width:1px}.border-top{border-top-style:solid;border-top-width:1px}.border-right{border-right-style:solid;border-right-width:1px}.border-bottom{border-bottom-style:solid;border-bottom-width:1px}.border-left{border-left-style:solid;border-left-width:1px}.border-none{border:0}.rounded{border-radius:3px}.circle{border-radius:50%}.rounded-top{border-radius:3px 3px 0 0}.rounded-right{border-radius:0 3px 3px 0}.rounded-bottom{border-radius:0 0 3px 3px}.rounded-left{border-radius:3px 0 0 3px}.not-rounded{border-radius:0}.hide{position:absolute;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px)}@media(max-width:40rem){.xs-hide{display:none}}@media(min-width:40.06rem) and (max-width:52rem){.sm-hide{display:none}}@media(min-width:52.06rem) and (max-width:64rem){.md-hide{display:none}}.display-none{display:none}.www-component-anchor[selected]:after,.www-component-desc:target:before,.www-heading:after{display:block;content:""}*{box-sizing:border-box}body{background:#fff;color:#4a4a4a;line-height:1.5rem;font-family:Montserrat,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,Arial,sans-serif;min-width:315px;overflow-x:hidden;font-smooth:always;-webkit-font-smoothing:antialiased}main{max-width:100%;margin:0 auto}.ampstart-subtitle{color:#4f4f4f;font-size:.875rem}.ampstart-accent{color:#003f93}#content:target{margin-top:calc(0px - 3.5rem);padding-top:3.5rem}.ampstart-card{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)}.h1,h1{font-size:3rem;line-height:3.5rem}.h2,h2{font-size:2rem;line-height:2.5rem}.h3,h3{font-size:1.5rem;line-height:2rem}.h4,h4{font-size:1.125rem;line-height:1.5rem}.h5,h5{font-size:.875rem;line-height:1.125rem}.h6,h6{font-size:.75rem;line-height:1rem}h1,h2,h3,h4,h5,h6{font-weight:400;letter-spacing:.06em}.www-component-desc h3,.www-heading{letter-spacing:inherit}a,a:active,a:visited{color:inherit}.ampstart-btn,.ampstart-btn:visited{color:#b60845}.ampstart-btn{font-family:inherit;font-weight:inherit;font-size:1rem;line-height:1.125rem;padding:.7em .8em;text-decoration:none;word-wrap:normal;vertical-align:middle;cursor:pointer;background-color:#fff;border:1px solid #b60845}.ampstart-btn-secondary{background-color:#b60845;color:#fff;border:1px solid #fff}.ampstart-btn-secondary:visited{color:#fff}.ampstart-btn:active .ampstart-btn:focus{opacity:.8}.ampstart-btn[disabled],.ampstart-btn[disabled]:active,.ampstart-btn[disabled]:focus,.ampstart-btn[disabled]:hover{opacity:.5;outline:0;cursor:default}.ampstart-dropcap{padding-top:1.5rem;margin-top:2rem}.ampstart-dropcap:first-letter {color:#fff;font-size:3rem;font-weight:700;margin-left:-2px}.ampstart-pullquote{border:0;border-left:4px solid #fff;font-size:1.5rem;padding-left:2rem}.www-header,h1,h2,h3,h4,h5,h6{font-family:Inconsolata,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,Arial,sans-serif}.ampstart-headerbar-nav .ampstart-nav-item{padding-right:1rem}.ampstart-headerbar-nav .ampstart-nav-item.www-current-page{color:#066573}.ampstart-headerbar-nav .ampstart-nav-item.www-current-page:after,.www-component-anchor[selected]:after{content:"";display:block;height:4px;background:linear-gradient(90deg,#94103e 0,#db004d)}.www-header{background-image:linear-gradient(90deg,#94103e 0,#db004d);padding:7rem 0;color:#fff;-webkit-clip-path:polygon(100% 100%,100% 0,-400% 0);clip-path:polygon(100% 100%,100% 0,-400% 0)}.www-heading{color:#000}.www-heading:after{height:2px;width:2.5rem;background:#4a4a4a;position:absolute;bottom:0}.ampstart-footer{position:relative}.ampstart-footer:before{content:"";position:absolute;width:100%;height:35px;background-image:linear-gradient(90deg,#94103e 0,#db004d);top:0;left:0;right:0}.ampstart-device-preview-mask,.ampstart-device-preview-select{background:#f9f7f7}.ampstart-device-preview-select{box-shadow:0 0 5px 2px rgba(0,0,0,.1)}.www-components-sec-nav{padding-top:7rem;margin-top:calc(-1 * 7rem);box-shadow:5px 0 5px -5px rgba(0,0,0,.4);min-width:160px}.www-component-anchors{position:-webkit-sticky;position:sticky;top:7rem}body .www-component-anchors .www-component-anchor[option][selected]{outline:0}.www-component-anchor[selected]:after{height:4px;background:linear-gradient(90deg,#94103e 0,#db004d)}.www-header>*{padding-left:7rem;padding-right:7rem}.www-component-desc>*{padding-left:5rem;padding-right:5rem}.www-component-desc{margin-bottom:5rem}.www-component-desc:target:before{height:3.5rem}.www-component-desc [placeholder]{background:#fff}.www-component-rendered{margin-top:3.5rem}.www-component-desc pre{font-family:monospace;line-height:1rem;font-size:1.125rem;white-space:pre-line;background:#f9f7f7;overflow-y:auto;margin:0}.www-example-code,.www-example-code h3{background:#f9f7f7}.www-example-code amp-accordion h3:after{content:"";background:url(img/www/caret.svg) no-repeat;width:11px;height:7px;display:inline-block;margin-left:2rem}.www-example-code amp-accordion [expanded] h3:after{-webkit-transform:scaleY(-1);transform:scaleY(-1)}@media(max-width:40rem){.www-component-desc>*{padding-left:0;padding-right:0}.www-component-desc{margin-bottom:3.5rem}.www-components{margin-right:1.5rem}.www-header>*{padding-left:1.5rem;padding-right:1.5rem}}@media(min-width:40.06rem) and (max-width:52rem){.www-components{margin-right:1.5rem}.www-header{margin-left:calc(-1 * 1rem)}.www-header>*{padding-left:0;padding-right:0}}@media(max-width:363px){.www-component-iframe-container>amp-iframe{-webkit-transform:scale(.792);transform:scale(.792);-webkit-transform-origin:0 0;transform-origin:0 0;width:343px}}.ampstart-nav-item .abe-list-shadow::before,.ampstart-nav-item.abe-nav-list::before{box-shadow:0 0 40px 0 rgba(0,0,0,.1);content:'';position:absolute}*{-webkit-tap-highlight-color:rgba(255,255,255,0)}body{font-family:Montserrat,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,Arial,sans-serif}a.abe-primary{color:#b60845}.abe-info{background:#fffde7}.ampstart-nav-item{position:relative}.ampstart-nav-item.abe-nav-list::before{bottom:0;left:-10px;opacity:0;right:-10px;top:10px;transition:opacity .2s ease-out}.ampstart-nav-item.abe-nav-list:hover::before{opacity:1}.ampstart-nav-item .abe-list-container{left:-10px;top:100%;transition:.2s ease-out;z-index:-1}.ampstart-nav-item:hover .abe-list-container{opacity:1;pointer-events:all;z-index:0}.ampstart-nav-item .abe-list-shadow{bottom:-50px;left:-50px;overflow:hidden;position:absolute;right:-50px;top:0}.ampstart-nav-item .abe-list-shadow::before{bottom:50px;left:50px;right:50px;top:0}.ampstart-nav-item .abe-list-container>ul{background:#fff;min-width:250px;position:relative;margin:0;padding:0;list-style:none}.ampstart-nav-item .abe-list-container>ul li{box-sizing:border-box;position:relative}.ampstart-nav-item .abe-list-container>ul li a{display:block;padding:7.5px 30px;color:#333;font-size:16px;line-height:26px}.ampstart-nav-item .abe-list-container>ul li:hover{background:#f8f8f8}.abe-sublist,.ampstart-nav-item .abe-list-container{opacity:0;pointer-events:none;position:absolute}.ampstart-nav-item .abe-list-container .abe-sublist::-webkit-scrollbar{-webkit-appearance:none;width:6px}.ampstart-nav-item .abe-list-container .abe-sublist::-webkit-scrollbar-thumb{border-radius:4px;background-color:rgba(0,0,0,.2);-webkit-box-shadow:0 0 1px rgba(255,255,255,.2)}.ampstart-nav-item .abe-list-container .abe-sublist{background:#f8f8f8;box-shadow:0 0 40px 0 rgba(0,0,0,.1);right:0;top:0;transform:translateX(99%);transition:opacity .3s;max-height:calc(100vh - 180px);overflow-y:auto}.ampstart-nav-item .abe-list-container>ul li:hover .abe-sublist{opacity:1;pointer-events:all}.ampstart-nav-item .abe-list-container>ul .abe-sublist li:hover,.ampstart-nav-item .abe-list-container>ul li:hover .abe-sublist li:hover{background:#fff}.ampstart-nav-item .abe-list-container>ul li.abe-has-sublist::after{width:24px;height:24px;content:'';position:absolute;right:16px;top:8px;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0iI2NjY2NjYyI+DQogICAgPHBhdGggZD0iTTEwIDZMOC41OSA3LjQxIDEzLjE3IDEybC00LjU4IDQuNTlMMTAgMThsNi02eiIvPg0KICAgIDxwYXRoIGQ9Ik0wIDBoMjR2MjRIMHoiIGZpbGw9Im5vbmUiLz4NCjwvc3ZnPg==)}.www-components-sec-nav{min-width:200px}.ampstart-card a,.www-component-desc li a,.www-component-desc p a{text-decoration:none;color:#b60845}.ampstart-headerbar-nav .ampstart-nav-item.www-current-page{color:#b60845}.ampstart-nav-dropdown .ampstart-dropdown-item{color:#b60845;margin:0}.ampstart-icon,.ampstart-sidebar .ampstart-icon{fill:#b60845}.ampstart-dropdown-item a{display:block;padding:8px}.ampstart-dropdown-item a:active,.ampstart-sidebar .ampstart-dropdown header:active{background:#f2f2f2}.ampstart-sidebar .ampstart-dropdown header{padding:1rem 0;margin:0}.ampstart-sidebar .ampstart-social-follow{margin-top:1rem}.ampstart-dropdown>section>header:after{color:#b60845;padding:0 0 0 .5rem}.ampstart-sidebar{width:340px}.ampstart-input>label{color:#b60845}.ampstart-input>label:after{background:#b60845}.ampstart-input input[type=checkbox],.ampstart-input input[type=radio]{border:1px solid #b60845}.ampstart-input input[type=checkbox]:after,.ampstart-input input[type=checkbox]:checked,.ampstart-input input[type=checkbox]:checked:after,.ampstart-input input[type=radio]:after,.ampstart-input input[type=radio]:checked{background:0}.ampstart-input input[type=radio]:checked:after{background:#b60845}.ampstart-btn.disabled{pointer-events:none;opacity:.5}.ampstart-btn,.ampstart-btn[disabled],.ampstart-btn[disabled]:focus,.ampstart-btn[disabled]:hover,a.ampstart-btn,a.ampstart-btn[disabled],a.ampstart-btn[disabled]:focus,a.ampstart-btn[disabled]:hover{color:#b60845;border:1px solid #b60845}.ampstart-btn:active,.ampstart-btn:focus,.ampstart-btn:hover,a.ampstart-btn:active,a.ampstart-btn:focus,a.ampstart-btn:hover{color:#db004d;border:1px solid #db004d}.ampstart-btn-secondary:active,.ampstart-btn-secondary:focus,.ampstart-btn-secondary:hover,a.ampstart-btn-secondary:active,a.ampstart-btn-secondary:focus,a.ampstart-btn-secondary:hover{color:#fff;background:#db004d;border:1px solid #fff}.ampstart-btn-secondary,.ampstart-btn-secondary[disabled],.ampstart-btn-secondary[disabled]:focus,.ampstart-btn-secondary[disabled]:hover,a.ampstart-btn-secondary,a.ampstart-btn-secondary.disabled,a.ampstart-btn-secondary.disabled:focus,a.ampstart-btn-secondary.disabled:hover{color:#fff;background:#b60845;border:1px solid #fff}.abe-sample-card{background:#f9f7f7;min-width:240px;width:0;max-width:380px;flex:1 1 240px}@media(min-width:600px){.abe-sample-card{margin-right:1rem}}.abe-sample-card .ampstart-btn{padding:8px}.abe-sample-card .ampstart-btn:not(.ampstart-btn-secondary){background-color:transparent}.abe-sample-card a.ampstart-btn-secondary:active,.abe-sample-card a.ampstart-btn-secondary:focus,.abe-sample-card a.ampstart-btn-secondary:hover,.abe-sample-card a.ampstart-btn-secondary,.abe-sample-card a.ampstart-btn-secondary.disabled,.abe-sample-card a.ampstart-btn-secondary.disabled:focus,.abe-sample-card a.ampstart-btn-secondary.disabled:hover,.abe-sample-card a.ampstart-btn-secondary{border:1px solid #b60845}.abe-sample-card-actions{margin-top:auto}.abe-experiment{position:absolute;display:inline-block;margin:4px;width:24px;height:24px;background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0iIzAwMDAwMCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTS02MTgtMTA4MEg3ODJ2MzYwMEgtNjE4ek0wIDBoMjR2MjRIMHoiLz48cGF0aCBkPSJNMjAuNzIgMTcuNzFMMTUgOS44MlY1LjA4aDJ2LTJIN3YyaDJ2NC43M0wzLjE0IDE3LjljLS40NC42MS0uNSAxLjQxLS4xNiAyLjA4LjM0LjY3IDEuMDMgMS4wOSAxLjc4IDEuMDloMTQuNWMxLjEgMCAyLS45IDItMiAwLS41Mi0uMjEtMS0uNTQtMS4zNnoiLz48L3N2Zz4=")}.www-header>span{margin-left:auto;margin-right:auto}.abe-sample-card-filler{height:0;background:0}.abe-code-preview,code{background:#f9f7f7}amp-instagram{box-sizing:content-box}.www-component-desc pre,code,pre{font-family:Consolas,Menlo,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New,monospace,sans-serif;font-size:.9rem;white-space:pre-wrap}.www-component-desc pre,pre{font-size:14px;overflow:scroll;-moz-tab-size:2;-o-tab-size:2;tab-size:2;word-break:normal;line-height:1.4}pre>code{padding:0}code{padding:2px 4px}.www-component-desc:last-child{padding-bottom:4rem}.www-component-desc>p>amp-img{display:block;margin:0 auto}.www-component-desc ol,.www-component-desc ul{list-style:inside}.www-component-desc>pre{font-size:.9rem;white-space:pre-wrap}.www-component-desc>amp-iframe,.www-component-desc>amp-img,.www-component-desc>div,.www-component-desc>pre{margin-left:5rem;margin-right:5rem;margin-bottom:2rem;padding:0}.www-component-desc>.ampstart-card,.www-component-desc>pre{padding:1rem}@media(max-width:40rem){.www-component-desc>amp-iframe,.www-component-desc>amp-img,.www-component-desc>div,.www-component-desc>pre{margin-left:0;margin-right:0}}.www-header h1{color:#fff}.abe-code pre,.www-component-desc>pre>code{white-space:pre-wrap;overflow-x:auto;padding:0;margin:0}.abe-code-container{padding:0;margin:0}.www-component-desc{margin-bottom:0}.www-component-desc:first-child h2{margin-top:0}.www-component-desc h2{margin-top:5rem;margin-bottom:2rem}.abe-preview{background:#fff;overflow:hidden}.abe-preview>figure,.abe-preview>h1,.abe-preview>h2,.abe-preview>h3,.abe-preview>h4,.abe-preview>p,.abe-preview>section{padding:1rem}h1{color:red}
--------------------------------------------------------------------------------
/layouts/partials/footer.html:
--------------------------------------------------------------------------------
1 |
2 |
54 |
55 | {{if ne .Site.Params.googleanalytics nil}}
56 |
57 |
73 |
74 | {{end}}
75 |
76 |