Improve software reference page.
This commit is contained in:
parent
7712b7d9b8
commit
11ee189748
2 changed files with 9 additions and 9 deletions
|
@ -85,7 +85,7 @@ h1#title, h2#subtitle, #actions, #references {
|
||||||
top: 0;
|
top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#selection-page h3 {
|
#selection-page p {
|
||||||
margin-left: 10%;
|
margin-left: 10%;
|
||||||
margin-right: 10%;
|
margin-right: 10%;
|
||||||
}
|
}
|
||||||
|
@ -103,7 +103,7 @@ h1#title, h2#subtitle, #actions, #references {
|
||||||
}
|
}
|
||||||
|
|
||||||
#selection-page #selection {
|
#selection-page #selection {
|
||||||
margin-bottom: 5%;
|
margin-bottom: 2%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#selection-page #return {
|
#selection-page #return {
|
||||||
|
|
|
@ -66,13 +66,6 @@ window.onload = function(){
|
||||||
let elementH2 = document.createElement('h2');
|
let elementH2 = document.createElement('h2');
|
||||||
elementH2.textContent = 'Install Feed Reader Apps For Desktop And Mobile';
|
elementH2.textContent = 'Install Feed Reader Apps For Desktop And Mobile';
|
||||||
elementDiv.appendChild(elementH2);
|
elementDiv.appendChild(elementH2);
|
||||||
let elementH3 = document.createElement('h3');
|
|
||||||
elementH3.textContent = '' +
|
|
||||||
'This is a selection of desktop applications, mobile apps and online ' +
|
|
||||||
'services for you to choose from. This selection includes news ' +
|
|
||||||
'readers, podcast managers, torrent clients, chat bots, HTML browsers ' +
|
|
||||||
'and plugins which support syndication feeds.';
|
|
||||||
elementDiv.appendChild(elementH3);
|
|
||||||
const brands = Object.keys(selection);
|
const brands = Object.keys(selection);
|
||||||
let elementDivSel = document.createElement('div');
|
let elementDivSel = document.createElement('div');
|
||||||
elementDivSel.id = 'selection';
|
elementDivSel.id = 'selection';
|
||||||
|
@ -89,6 +82,13 @@ window.onload = function(){
|
||||||
elementDivSel.appendChild(elementSpan);
|
elementDivSel.appendChild(elementSpan);
|
||||||
elementDiv.appendChild(elementDivSel);
|
elementDiv.appendChild(elementDivSel);
|
||||||
}
|
}
|
||||||
|
let elementP = document.createElement('p');
|
||||||
|
elementP.textContent = '' +
|
||||||
|
'This is a selection of desktop applications, mobile apps and online ' +
|
||||||
|
'services for you to choose from. This selection includes news ' +
|
||||||
|
'readers, podcast managers, torrent clients, chat bots, HTML browsers ' +
|
||||||
|
'and plugins which support syndication feeds.';
|
||||||
|
elementDiv.appendChild(elementP);
|
||||||
let elementDivReturn = document.createElement('div');
|
let elementDivReturn = document.createElement('div');
|
||||||
elementDivReturn.id = 'return';
|
elementDivReturn.id = 'return';
|
||||||
elementDivReturn.textContent = 'Return To PubSub...';
|
elementDivReturn.textContent = 'Return To PubSub...';
|
||||||
|
|
Loading…
Reference in a new issue