mirror of
https://github.com/seigler/dash-docs
synced 2025-07-28 02:06:13 +00:00
mobile responsive design and many design fixes
adapt CSS to be either responsive, or specific to mobiles add mobile menu icon to show the hidden menu on touch add optimized language bar menu for mobiles remove 1200px width workaround for the wallet page, description now fit on 1 remove links on wallet icons for :hover compatibility with mobile devices move right buttons into the page (fixes #67) fix contributors plugin to produce W3C valid HTML drop useless classes like .list clean and organize CSS add icon for ios touch devices (fixes #111)
This commit is contained in:
parent
3e2463928c
commit
9d590e098b
15 changed files with 500 additions and 326 deletions
|
@ -7,14 +7,14 @@ title: Development - Bitcoin
|
|||
|
||||
<h2>Specification</h2>
|
||||
<p>If you are interested in learning more about the technical details of Bitcoin it is recommended you start with these documents.</p>
|
||||
<ul class="list">
|
||||
<ul>
|
||||
<li><a href="/bitcoin.pdf">Bitcoin: A Peer-to-Peer Electronic Cash System</a></li>
|
||||
<li><a href="https://en.bitcoin.it/wiki/Protocol_rules">Protocol rules</a></li>
|
||||
<li><a href="https://en.bitcoin.it/wiki/Category:Technical">Bitcoin Wiki</a></li>
|
||||
</ul>
|
||||
|
||||
<h2>Developers</h2>
|
||||
<ul class="list">
|
||||
<ul>
|
||||
<li>Satoshi Nakamoto</li>
|
||||
<li>Gavin Andresen - <a href="mailto:gavinandresen@gmail.com">gavinandresen@gmail.com</a> (<a href="/gavinandresen.asc">PGP</a>)</li>
|
||||
<li>Pieter Wuille - <a href="mailto:pieter.wuille@gmail.com">pieter.wuille@gmail.com</a> (<a href="/pieterwuille.asc">PGP</a>)</li>
|
||||
|
@ -28,27 +28,12 @@ title: Development - Bitcoin
|
|||
<p>Bitcoin development is open source and any developer can contribute to the project. Everything you need is in the <a href="https://github.com/bitcoin/bitcoin">Github repository</a>. Please make sure to read and follow the development process described in the README as well as to provide good quality code and respect all guidelines.</p>
|
||||
|
||||
<section id="contributors">
|
||||
<h2>Contributors</h2>
|
||||
<p>(Ordered by number of commits)</p>
|
||||
<table class="contributors">
|
||||
<tr>
|
||||
{% for c in site.project.contributors %}
|
||||
<td>
|
||||
{% if c.gravatar_id %}
|
||||
<img class="icon" height="16" width="16" src="https://secure.gravatar.com/avatar/{{c.gravatar_id}}?s=140&d=http%3A%2F%2Fbitcoin.org%2Fimg%2Fgravatar-140.png" />
|
||||
{% else %}
|
||||
<img class="icon" height="16" width="16" src="http://bitcoin.org/img/gravatar-140.png" />
|
||||
{% endif %}
|
||||
{% if c.login %}
|
||||
<a href="http://github.com/{{c.login}}">
|
||||
{{ c.name }} ({{ c.contributions }})
|
||||
</a>
|
||||
{% else %}
|
||||
{{ c.name }} ({{ c.contributions }})
|
||||
{% endif %}
|
||||
</td>
|
||||
{% cycle nil, nil, nil, nil, '</tr><tr>' %}
|
||||
{% endfor %}
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Contributors</h2>
|
||||
<p>(Ordered by number of commits)</p>
|
||||
<div class="contributors">{% for c in site.project.contributors %}
|
||||
<span>
|
||||
{% if c.gravatar_id %}<img class="icon" height="16" width="16" src="https://secure.gravatar.com/avatar/{{c.gravatar_id}}?s=140&d=http%3A%2F%2Fbitcoin.org%2Fimg%2Fgravatar-140.png" alt="icon" />{% else %}<img class="icon" height="16" width="16" src="http://bitcoin.org/img/gravatar-140.png" alt="icon" />{% endif %}
|
||||
{% if c.login %}<a href="http://github.com/{{c.login}}">{{ c.name }} ({{ c.contributions }})</a>{% else %}{{ c.name }} ({{ c.contributions }}){% endif %}
|
||||
</span>{% endfor %}
|
||||
</div>
|
||||
</section>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue