Skip to content

Add month/year of testing to results #86

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,27 +30,27 @@ <h1>HTML5 Accessibility</h1>
<ul class="test-results">
<li class="chrome high">
<h3 class="browser">Chrome 62</h3>
<p class="platform">on Windows 10</p>
<p class="platform">Tested Dec. 2017<br>on Windows 10</p>
<p class="result">92%</p>
</li>
<li class="edge high">
<h3 class="browser">Edge 80</h3>
<p class="platform">on Windows 10</p>
<p class="platform">Tested Apr. 2020<br>on Windows 10</p>
<p class="result">100%</p>
</li>
<li class="firefox high">
<h3 class="browser">Firefox 58.0b9</h3>
<p class="platform">on Windows 10</p>
<p class="platform">Tested Dec. 2017<br>on Windows 10</p>
<p class="result">89%</p>
</li>
<li class="ie low">
<h3 class="browser">Internet Explorer 11</h3>
<p class="platform">on Windows 10</p>
<p class="platform">Tested Dec. 2017<br>on Windows 10</p>
<p class="result">56%</p>
</li>
<li class="safari high">
<h3 class="browser">Safari 11.0.3</h3>
<p class="platform">on OS High Sierra</p>
<p class="platform">Tested Feb. 2018<br>on OS High Sierra</p>
<p class="result">98%</p>
</li>
</ul>
Expand Down
6 changes: 5 additions & 1 deletion style/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,10 @@ nav a {
line-height: 1.5;
}

.platform {
margin-top: 4px;
}

.result {
display: inline-block;

Expand Down Expand Up @@ -494,7 +498,7 @@ nav a {
.test-results li {
float: left;
width: calc(50% - 6px);
height: 308px;
height: 332px;
margin: 0 0 12px 0;
padding-top: 122px;

Expand Down