Skip to content

Commit a88def0

Browse files
author
Kate
authored
Merge pull request #10 from keanulee/disclaimer-browser-compat
Add disclaimer and browser compat
2 parents 5a7457b + 804c0bb commit a88def0

File tree

9 files changed

+25
-2
lines changed

9 files changed

+25
-2
lines changed

docs/_includes/article.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
<h1><a href="{{site.baseurl}}{{topic.url}}">{{topic.title}}</a></h1>
55

6+
<div class="disclaimer">This documentation is a work in progress. It describes prerelease software, and is subject to change.</div>
7+
68
{% if page.addsectiontoc %}
79
{% include sectiontoc.html %}
810
{% endif %}

docs/css/main.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,15 @@ article {
243243
min-width: 1px;
244244
}
245245

246+
.disclaimer {
247+
border: 1px solid blue;
248+
margin: 20px 20px;
249+
padding: 6px;
250+
border-radius: 4px;
251+
color: #666;
252+
background-color: #eee;
253+
}
254+
246255
.prevnext {
247256
display: flex;
248257
justify-content: space-between;
11.9 KB
Loading
3.06 KB
Loading
20.1 KB
Loading
16.6 KB
Loading
9.82 KB
Loading
23.7 KB
Loading

docs/index.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,20 @@ LitElement is brought to you by developers on the Google Chrome team with the in
9898
</div>
9999
</section>
100100

101-
<section class="grey-bg">
102-
<div class="wrapper">
101+
<section>
102+
<div class="wrapper" style="text-align: center">
103+
<h2>Browser Compatibility</h2>
104+
<p>Polymer products work in all major browsers (Chrome, Firefox, IE, Edge, Safari, and Opera). </p>
105+
<div>
106+
<img width="70" height="70" src="/images/browsers/chrome_128x128.png" alt="chrome logo">
107+
<img width="70" height="70" src="/images/browsers/firefox_128x128.png" alt="firefox logo">
108+
<img width="70" height="70" src="/images/browsers/internet-explorer_128x128.png" alt="internet explorer logo">
109+
<img width="70" height="70" src="/images/browsers/edge_128x128.png" alt="edge logo">
110+
<img width="70" height="70" src="/images/browsers/safari_128x128.png" alt="safari logo">
111+
<img width="70" height="70" src="/images/browsers/opera_128x128.png" alt="opera logo">
112+
</div>
113+
</div>
114+
</section>
103115

104116
<section class="grey-bg">
105117
<div class="wrapper">

0 commit comments

Comments
 (0)