Re-structure design and layout
Remove right buttons and merge them in the menu Switch to a centered design Apply a consistent summary text for each page Remove link to the Foundation in the main menu Add a "Join Foundation" text in Participate Add a link to the Foundation in the bottom page menu Add a "Getting started" page with links to external merchants and exchanges directories. Rewrite home page with weusecoins video and introductive links Add useful contextual links on "Individuals", "Businesses" and "Developers" page Re-design "Community" and "Resources" pages Add links to the wiki, bitcoinmining.com, coindesk, thegenesisblock, letstalkbitcoin, usebitcoins.info and howtobuybitcoins.info Re-design "Download" page with OS autodetect button Improve "Secure your wallet" texts with a mention about exchanges
|
@ -13,6 +13,9 @@ menu:
|
||||||
- id: foundation
|
- id: foundation
|
||||||
- id: about
|
- id: about
|
||||||
---
|
---
|
||||||
|
{% case page.lang %}
|
||||||
|
{% when 'ar' or 'de' or 'es' or 'fa' or 'fr' or 'it' or 'nl' or 'pl' or 'ru' or 'tr' %}
|
||||||
|
|
||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
<html lang="{{ page.lang }}">
|
<html lang="{{ page.lang }}">
|
||||||
<head>
|
<head>
|
||||||
|
@ -27,7 +30,7 @@ menu:
|
||||||
<link rel="shortcut icon" href="/favicon.png">
|
<link rel="shortcut icon" href="/favicon.png">
|
||||||
<link rel="apple-touch-icon-precomposed" href="/img/logo_ios.png"/>
|
<link rel="apple-touch-icon-precomposed" href="/img/logo_ios.png"/>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body class="old">
|
||||||
{% if site.ALERT %}
|
{% if site.ALERT %}
|
||||||
<div class="alert-message">
|
<div class="alert-message">
|
||||||
<div><div>{{ site.ALERT }}</div></div>
|
<div><div>{{ site.ALERT }}</div></div>
|
||||||
|
@ -82,7 +85,7 @@ menu:
|
||||||
<li{% if page.id == 'resources' %} class="active"{% endif %}><a href="/{{ page.lang }}/{% translate resources url %}">{% translate menu-resources layout %}</a></li>
|
<li{% if page.id == 'resources' %} class="active"{% endif %}><a href="/{{ page.lang }}/{% translate resources url %}">{% translate menu-resources layout %}</a></li>
|
||||||
<li{% if page.id == 'community' %} class="active"{% endif %}><a href="/{{ page.lang }}/{% translate community url %}">{% translate menu-community layout %}</a></li>
|
<li{% if page.id == 'community' %} class="active"{% endif %}><a href="/{{ page.lang }}/{% translate community url %}">{% translate menu-community layout %}</a></li>
|
||||||
<li{% if page.id == 'development' %} class="active"{% endif %}><a href="/{{ page.lang }}/{% translate development url %}">{% translate menu-development layout %}</a></li>
|
<li{% if page.id == 'development' %} class="active"{% endif %}><a href="/{{ page.lang }}/{% translate development url %}">{% translate menu-development layout %}</a></li>
|
||||||
{% case page.lang %}{% when 'ar' or 'es' or 'fa' or 'it' or 'nl' or 'ru' %}{% else %}<li{% if page.id == 'events' %} class="active"{% endif %}><a href="/{{ page.lang }}/{% translate events url %}">{% translate menu-events layout %}</a></li>{% endcase %}
|
<li{% if page.id == 'events' %} class="active"{% endif %}><a href="/{{ page.lang }}/{% translate events url %}">{% translate menu-events layout %}</a></li>
|
||||||
{% if page.lang == 'en' %}<li{% if page.id == 'press' %} class="active"{% endif %}><a href="/en/press">Press</a></li>{% endif %}
|
{% if page.lang == 'en' %}<li{% if page.id == 'press' %} class="active"{% endif %}><a href="/en/press">Press</a></li>{% endif %}
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
@ -123,3 +126,86 @@ menu:
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
{% else %}
|
||||||
|
|
||||||
|
<!DOCTYPE HTML>
|
||||||
|
<html lang="{{ page.lang }}">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||||
|
<meta property="og:image" content="http://bitcoin.org/img/opengraph.png" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
||||||
|
<title>{% capture title %}{% translate title %}{% endcapture %}{% if title != '' %}{{ title }}{% else %}{{ page.title }}{% endif %}</title>
|
||||||
|
{% lesscss main.less %}
|
||||||
|
<!--[if lt IE 8]><link rel="stylesheet" type="text/css" href="/css/ie.css" /><script type="text/javascript" src="/js/ie.js"></script><![endif]-->
|
||||||
|
{% if page.lang == 'ar' or page.lang == 'fa' or page.lang == 'pl' or page.lang == 'ru' %}<link rel="stylesheet" type="text/css" href="/{{ page.lang }}/css/main.css">{% endif %}
|
||||||
|
<script type="text/javascript" src="/js/main.js"></script>
|
||||||
|
<link rel="shortcut icon" href="/favicon.png">
|
||||||
|
<link rel="apple-touch-icon-precomposed" href="/img/logo_ios.png"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
{% if site.ALERT %}
|
||||||
|
<div class="alert-message">
|
||||||
|
<div><div>{{ site.ALERT }}</div></div>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
<div id="head"><div>
|
||||||
|
<select id="langselect" onchange="window.location=this.value;">
|
||||||
|
{% for lang in site.langsorder %}{% if lang.id == page.lang %}{% assign active = ' selected="selected"'%}{% else %}{% assign active = ''%}{% endif %}
|
||||||
|
<option value="/{{ lang.id }}/{% translate {{page.id}} url {{lang.id}} %}"{{ active }}>{{ site.langs[lang.id] }}</option>
|
||||||
|
{% endfor %}
|
||||||
|
</select>
|
||||||
|
<ul id="lang">
|
||||||
|
<li><a href="#" onclick="return false;">{{ site.langs[page.lang] }}</a>
|
||||||
|
<ul>
|
||||||
|
{% for lang in site.langsorder %}{% if lang.id != page.lang %}
|
||||||
|
<li><a href="/{{ lang.id }}/{% translate {{page.id}} url {{lang.id}} %}">{{ site.langs[lang.id] }}</a></li>
|
||||||
|
{% endif %}{% endfor %}
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<a id="logo" href="/{{ page.lang }}/"><img src="/img/logotop.svg" alt="Bitcoin"></a>
|
||||||
|
<a href="#" id="menumobile" onclick="mobileshow(event);"></a>
|
||||||
|
<ul id="menusimple">
|
||||||
|
<li><a href="#" onclick="mobilehover(event);">{% translate menu-intro layout %}</a>
|
||||||
|
<ul>
|
||||||
|
<li{% if page.id == 'bitcoin-for-individuals' %} class="active"{% endif %}><a href="/{{ page.lang }}/{% translate bitcoin-for-individuals url %}">{% translate menu-bitcoin-for-individuals layout %}</a></li>
|
||||||
|
<li{% if page.id == 'bitcoin-for-businesses' %} class="active"{% endif %}><a href="/{{ page.lang }}/{% translate bitcoin-for-businesses url %}">{% translate menu-bitcoin-for-businesses layout %}</a></li>
|
||||||
|
<li{% if page.id == 'bitcoin-for-developers' %} class="active"{% endif %}><a href="/{{ page.lang }}/{% translate bitcoin-for-developers url %}">{% translate menu-bitcoin-for-developers layout %}</a></li>
|
||||||
|
<li{% if page.id == 'getting-started' %} class="active"{% endif %}><a href="/{{ page.lang }}/{% translate getting-started url %}">{% translate menu-getting-started layout %}</a></li>
|
||||||
|
<li{% if page.id == 'how-it-works' %} class="active"{% endif %}><a href="/{{ page.lang }}/{% translate how-it-works url %}">{% translate menu-how-it-works layout %}</a></li>
|
||||||
|
<li{% if page.id == 'you-need-to-know' %} class="active"{% endif %}><a href="/{{ page.lang }}/{% translate you-need-to-know url %}">{% translate menu-you-need-to-know layout %}</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li><a href="#" onclick="mobilehover(event);">{% translate menu-resources layout %}</a>
|
||||||
|
<ul>
|
||||||
|
<li{% if page.id == 'vocabulary' %} class="active"{% endif %}><a href="/{{ page.lang }}/{% translate vocabulary url %}">{% translate menu-vocabulary layout %}</a></li>
|
||||||
|
<li{% if page.id == 'resources' %} class="active"{% endif %}><a href="/{{ page.lang }}/{% translate resources url %}">{% translate menu-resources layout %}</a></li>
|
||||||
|
<li{% if page.id == 'community' %} class="active"{% endif %}><a href="/{{ page.lang }}/{% translate community url %}">{% translate menu-community layout %}</a></li>
|
||||||
|
<li{% if page.id == 'development' %} class="active"{% endif %}><a href="/{{ page.lang }}/{% translate development url %}">{% translate menu-development layout %}</a></li>
|
||||||
|
<li{% if page.id == 'events' %} class="active"{% endif %}><a href="/{{ page.lang }}/{% translate events url %}">{% translate menu-events layout %}</a></li>
|
||||||
|
{% if page.lang == 'en' %}<li{% if page.id == 'press' %} class="active"{% endif %}><a href="/en/press">Press</a></li>{% endif %}
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li{% if page.id == 'innovation' %} class="active"{% endif %}><a href="/{{ page.lang }}/{% translate innovation url %}">{% translate menu-innovation layout %}</a></li>
|
||||||
|
<li{% if page.id == 'support-bitcoin' %} class="active"{% endif %}><a href="/{{ page.lang }}/{% translate support-bitcoin url %}">{% translate menu-support-bitcoin layout %}</a></li>
|
||||||
|
<li{% if page.id == 'about' %} class="active"{% endif %}><a href="/{{ page.lang }}/{% translate about url %}">{% translate menu-about layout %}</a></li>
|
||||||
|
</ul>
|
||||||
|
</div></div>
|
||||||
|
<div id="body">
|
||||||
|
<div id="content">
|
||||||
|
{{ content }}
|
||||||
|
</div>
|
||||||
|
<div id="footer"><div>
|
||||||
|
<a href="/en/alerts">Network Status</a>
|
||||||
|
<a href="https://bitcoinfoundation.org/">{% translate menu-foundation layout %}</a>
|
||||||
|
<a href="/{{ page.lang }}/{% translate about-us url %}">{% translate menu-about-us layout %}</a>
|
||||||
|
<span>{% translate footer layout %}</span>
|
||||||
|
</div></div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">svgfallback();</script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
|
|
||||||
|
{% endcase %}
|
||||||
|
|
|
@ -14,7 +14,7 @@ h1{
|
||||||
color:#0d579b;
|
color:#0d579b;
|
||||||
font-size:160%;
|
font-size:160%;
|
||||||
margin-top:0;
|
margin-top:0;
|
||||||
text-align:left;
|
text-align:center;
|
||||||
}
|
}
|
||||||
h2{
|
h2{
|
||||||
font-family:'Ubuntu', sans-serif;
|
font-family:'Ubuntu', sans-serif;
|
||||||
|
@ -28,10 +28,6 @@ h3{
|
||||||
font-size:110%;
|
font-size:110%;
|
||||||
text-align:left;
|
text-align:left;
|
||||||
}
|
}
|
||||||
h1 img,h2 img,h3 img{
|
|
||||||
vertical-align:middle;
|
|
||||||
margin-right:5px;
|
|
||||||
}
|
|
||||||
p {
|
p {
|
||||||
line-height:1.5em;
|
line-height:1.5em;
|
||||||
}
|
}
|
||||||
|
@ -132,7 +128,7 @@ li p{
|
||||||
}
|
}
|
||||||
.alert-message div div{
|
.alert-message div div{
|
||||||
margin:auto;
|
margin:auto;
|
||||||
width:960px;
|
width:850px;
|
||||||
padding:10px;
|
padding:10px;
|
||||||
}
|
}
|
||||||
.alert-message,.alert-message a,.alert-message a:link,.alert-message a:active,.alert-message a:visited{
|
.alert-message,.alert-message a,.alert-message a:link,.alert-message a:active,.alert-message a:visited{
|
||||||
|
@ -146,7 +142,7 @@ li p{
|
||||||
margin:30px 0px 30px 0px;
|
margin:30px 0px 30px 0px;
|
||||||
}
|
}
|
||||||
#head>div{
|
#head>div{
|
||||||
max-width:1050px;
|
max-width:940px;
|
||||||
margin:auto;
|
margin:auto;
|
||||||
position:relative;
|
position:relative;
|
||||||
z-index:100;
|
z-index:100;
|
||||||
|
@ -158,7 +154,7 @@ li p{
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
#body{
|
#body{
|
||||||
max-width:1050px;
|
max-width:940px;
|
||||||
margin:auto;
|
margin:auto;
|
||||||
position:relative;
|
position:relative;
|
||||||
}
|
}
|
||||||
|
@ -241,7 +237,7 @@ li p{
|
||||||
margin:0px;
|
margin:0px;
|
||||||
position:absolute;
|
position:absolute;
|
||||||
top:8px;
|
top:8px;
|
||||||
left:250px;
|
left:245px;
|
||||||
padding:0px;
|
padding:0px;
|
||||||
height:35px;
|
height:35px;
|
||||||
}
|
}
|
||||||
|
@ -250,7 +246,7 @@ li p{
|
||||||
display:inline-block;
|
display:inline-block;
|
||||||
position:relative;
|
position:relative;
|
||||||
padding:0px;
|
padding:0px;
|
||||||
margin:0px 6px;
|
margin:0px 3px;
|
||||||
border-radius:5px;
|
border-radius:5px;
|
||||||
-webkit-border-radius:5px;
|
-webkit-border-radius:5px;
|
||||||
}
|
}
|
||||||
|
@ -316,9 +312,8 @@ li p{
|
||||||
|
|
||||||
#content{
|
#content{
|
||||||
position:relative;
|
position:relative;
|
||||||
padding:20px 265px 30px 30px;
|
padding:30px 40px 40px 40px;
|
||||||
margin: 0px 5px;
|
margin: 0px 5px;
|
||||||
max-width:780px;
|
|
||||||
text-align:justify;
|
text-align:justify;
|
||||||
background-color:#fff;
|
background-color:#fff;
|
||||||
min-height:400px;
|
min-height:400px;
|
||||||
|
@ -327,65 +322,6 @@ li p{
|
||||||
-webkit-border-radius: 6px;
|
-webkit-border-radius: 6px;
|
||||||
-moz-border-radius: 6px;
|
-moz-border-radius: 6px;
|
||||||
}
|
}
|
||||||
#content.wide{
|
|
||||||
padding:20px 40px 30px 30px;
|
|
||||||
max-width:990px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#rightbox{
|
|
||||||
width:210px;
|
|
||||||
position:absolute;
|
|
||||||
right:30px;
|
|
||||||
top:20px;
|
|
||||||
border-radius:5px;
|
|
||||||
-webkit-border-radius:5px;
|
|
||||||
padding:5px;
|
|
||||||
}
|
|
||||||
#rightbox.wide{
|
|
||||||
display:none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#choose a,#before a,#support a{
|
|
||||||
font-family:'Ubuntu', sans-serif;
|
|
||||||
font-weight:300;
|
|
||||||
padding:10px 8px 10px 48px;
|
|
||||||
color:#fff;
|
|
||||||
display:block;
|
|
||||||
text-align:left;
|
|
||||||
margin-bottom:10px;
|
|
||||||
text-decoration:none;
|
|
||||||
border-radius:5px;
|
|
||||||
-webkit-border-radius:5px;
|
|
||||||
}
|
|
||||||
#choose img,#before img,#support img{
|
|
||||||
vertical-align:middle;
|
|
||||||
margin-right:8px;
|
|
||||||
margin-left:-40px;
|
|
||||||
width:32px;
|
|
||||||
height:32px;
|
|
||||||
}
|
|
||||||
#before a,#support a{
|
|
||||||
background-color:#2c6fad;
|
|
||||||
border:1px solid #20598f;
|
|
||||||
background-image:linear-gradient(bottom, #20598f 14%, #2c6fad 70%);
|
|
||||||
background-image:-o-linear-gradient(bottom, #20598f 14%, #2c6fad 70%);
|
|
||||||
background-image:-moz-linear-gradient(bottom, #20598f 14%, #2c6fad 70%);
|
|
||||||
background-image:-webkit-linear-gradient(bottom, #20598f 14%, #2c6fad 70%);
|
|
||||||
background-image:-ms-linear-gradient(bottom, #20598f 14%, #2c6fad 70%);
|
|
||||||
}
|
|
||||||
#choose a{
|
|
||||||
padding:12px 8px 12px 48px;
|
|
||||||
background-color:#e78406;
|
|
||||||
border:1px solid #d57700;
|
|
||||||
background-image:linear-gradient(bottom, #d57700 14%, #e78406 70%);
|
|
||||||
background-image:-o-linear-gradient(bottom, #d57700 14%, #e78406 70%);
|
|
||||||
background-image:-moz-linear-gradient(bottom, #d57700 14%, #e78406 70%);
|
|
||||||
background-image:-webkit-linear-gradient(bottom, #d57700 14%, #e78406 70%);
|
|
||||||
background-image:-ms-linear-gradient(bottom, #d57700 14%, #e78406 70%);
|
|
||||||
}
|
|
||||||
#choose a:hover,#before a:hover,#support a:hover{
|
|
||||||
background-image:none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#footer{
|
#footer{
|
||||||
position:relative;
|
position:relative;
|
||||||
|
@ -393,20 +329,196 @@ li p{
|
||||||
padding:20px 0px 20px 40px;
|
padding:20px 0px 20px 40px;
|
||||||
text-align:left;
|
text-align:left;
|
||||||
font-size:94%;
|
font-size:94%;
|
||||||
max-width:1050px;
|
max-width:940px;
|
||||||
}
|
}
|
||||||
#footer div{
|
#footer div{
|
||||||
padding-top:6px;
|
padding-top:6px;
|
||||||
}
|
}
|
||||||
#footer>div>a{
|
#footer>div>a{
|
||||||
margin-right:15px;
|
margin-right:15px;
|
||||||
|
white-space:nowrap;
|
||||||
|
}
|
||||||
|
#footer>div>span{
|
||||||
|
margin-top:15px;
|
||||||
|
display:block;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*Styles specific to elements in pages*/
|
/*Styles specific to elements in pages*/
|
||||||
|
|
||||||
|
.mainsummary, .mainvideo, .mainlist{
|
||||||
|
text-align:center;
|
||||||
|
}
|
||||||
|
.mainsummary{
|
||||||
|
font-size:145%;
|
||||||
|
color:#7b7c7c;
|
||||||
|
margin:20px auto 45px auto;
|
||||||
|
}
|
||||||
|
.mainvideo iframe{
|
||||||
|
width:640px;
|
||||||
|
height:360px;
|
||||||
|
}
|
||||||
|
.mainlist{
|
||||||
|
font-size:125%;
|
||||||
|
margin:30px 0px;
|
||||||
|
}
|
||||||
|
.mainlist>div{
|
||||||
|
width:250px;
|
||||||
|
display:inline-block;
|
||||||
|
}
|
||||||
|
.mainlist>div>div{
|
||||||
|
display:inline-block;
|
||||||
|
line-height:1.5em;
|
||||||
|
text-align:left;
|
||||||
|
}
|
||||||
|
.mainlist>div:first-child{
|
||||||
|
text-align:left;
|
||||||
|
}
|
||||||
|
.mainlist>div:first-child+div{
|
||||||
|
text-align:center;
|
||||||
|
}
|
||||||
|
.mainlist>div:first-child+div+div{
|
||||||
|
text-align:right;
|
||||||
|
}
|
||||||
|
.mainlist>div>div>div{
|
||||||
|
display:inline-block;
|
||||||
|
}
|
||||||
|
.mainlist img{
|
||||||
|
vertical-align:top;
|
||||||
|
position:relative;
|
||||||
|
top:4px;
|
||||||
|
margin-right:10px;
|
||||||
|
float:left;
|
||||||
|
height:48px;
|
||||||
|
width:48px;
|
||||||
|
}
|
||||||
|
.maindesc{
|
||||||
|
max-width:760px;
|
||||||
|
margin:auto;
|
||||||
|
line-height:1.5em;
|
||||||
|
}
|
||||||
|
.mainbutton{
|
||||||
|
text-align:center;
|
||||||
|
}
|
||||||
|
.mainbutton a,
|
||||||
|
.mainbutton a:link,
|
||||||
|
.mainbutton a:visited,
|
||||||
|
.mainbutton a:active{
|
||||||
|
font-family:'Ubuntu', sans-serif;
|
||||||
|
font-weight:400;
|
||||||
|
font-size:150%;
|
||||||
|
text-shadow:0px 2px 6px rgba(0,0,0,0.6);
|
||||||
|
text-align:left;
|
||||||
|
display:inline-block;
|
||||||
|
background-color:#2c6fad;
|
||||||
|
border:1px solid #20598f;
|
||||||
|
background-image:linear-gradient(bottom, #20598f 14%, #2c6fad 70%);
|
||||||
|
background-image:-o-linear-gradient(bottom, #20598f 14%, #2c6fad 70%);
|
||||||
|
background-image:-moz-linear-gradient(bottom, #20598f 14%, #2c6fad 70%);
|
||||||
|
background-image:-webkit-linear-gradient(bottom, #20598f 14%, #2c6fad 70%);
|
||||||
|
background-image:-ms-linear-gradient(bottom, #20598f 14%, #2c6fad 70%);
|
||||||
|
color:#fff;
|
||||||
|
padding:15px 20px 20px 68px;
|
||||||
|
margin:40px 0px 40px 0px;
|
||||||
|
border-radius:12px;
|
||||||
|
-webkit-border-radius:12px;
|
||||||
|
}
|
||||||
|
.mainbutton a:hover{
|
||||||
|
background-image:none;
|
||||||
|
color:#fff;
|
||||||
|
}
|
||||||
|
.mainbutton img{
|
||||||
|
margin-right:10px;
|
||||||
|
margin-left:-52px;
|
||||||
|
margin-bottom:-12px;
|
||||||
|
height:42px;
|
||||||
|
width:42px;
|
||||||
|
}
|
||||||
|
.mainoverview{
|
||||||
|
font-size:130%;
|
||||||
|
text-align:center;
|
||||||
|
margin-bottom:10px;
|
||||||
|
}
|
||||||
|
.mainoverviews{
|
||||||
|
font-size:145%;
|
||||||
|
text-align:center;
|
||||||
|
margin-bottom:10px;
|
||||||
|
}
|
||||||
|
.mainoverviews a{
|
||||||
|
margin:5px 15px;
|
||||||
|
display:inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.start{
|
||||||
|
text-align:left;
|
||||||
|
}
|
||||||
|
.start>div:first-child+div{
|
||||||
|
border-top:1px solid #fad296;
|
||||||
|
}
|
||||||
|
.start div div{
|
||||||
|
display:inline-block;
|
||||||
|
width:380px;
|
||||||
|
vertical-align:top;
|
||||||
|
padding-bottom:15px;
|
||||||
|
}
|
||||||
|
.start>div>div:first-child{
|
||||||
|
padding-right:40px;
|
||||||
|
}
|
||||||
|
.start>div>div:first-child+div{
|
||||||
|
padding-left:40px;
|
||||||
|
border-left:1px solid #fad296;
|
||||||
|
}
|
||||||
|
.start div div div a,
|
||||||
|
.start div div div a:link,
|
||||||
|
.start div div div a:active,
|
||||||
|
.start div div div a:visited{
|
||||||
|
display:inline-block;
|
||||||
|
padding:6px 12px;
|
||||||
|
margin-bottom:10px;
|
||||||
|
font-size:115%;
|
||||||
|
color:#fff;
|
||||||
|
border:1px solid #d57700;
|
||||||
|
background-color:#ee9209;
|
||||||
|
background-image:linear-gradient(bottom, #e28700 14%, #ee9209 70%);
|
||||||
|
background-image:-o-linear-gradient(bottom, #e28700 14%, #ee9209 70%);
|
||||||
|
background-image:-moz-linear-gradient(bottom, #e28700 14%, #ee9209 70%);
|
||||||
|
background-image:-webkit-linear-gradient(bottom, #e28700 14%, #ee9209 70%);
|
||||||
|
background-image:-ms-linear-gradient(bottom, #e28700 14%, #ee9209 70%);
|
||||||
|
border-radius:3px;
|
||||||
|
-webkit-border-radius:3px;
|
||||||
|
}
|
||||||
|
.start div div div a:hover{
|
||||||
|
background-image:none;
|
||||||
|
color:#fff;
|
||||||
|
}
|
||||||
|
.start h2{
|
||||||
|
color:#0d579b;
|
||||||
|
}
|
||||||
|
.start h2 span{
|
||||||
|
font-size:200%;
|
||||||
|
color:#ee9209;
|
||||||
|
}
|
||||||
|
.start p{
|
||||||
|
text-align:justify;
|
||||||
|
}
|
||||||
|
.start div div div{
|
||||||
|
display:block;
|
||||||
|
width:auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.introlink{
|
||||||
|
text-align:center;
|
||||||
|
font-size:125%;
|
||||||
|
font-weight:bold;
|
||||||
|
margin-top:30px;
|
||||||
|
}
|
||||||
|
|
||||||
.titleicon{
|
.titleicon{
|
||||||
width:32px;
|
width:32px;
|
||||||
height:32px;
|
height:32px;
|
||||||
|
vertical-align:middle;
|
||||||
|
margin-right:8px;
|
||||||
|
position:relative;
|
||||||
|
top:-2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.index,.index ul,.index li{
|
.index,.index ul,.index li{
|
||||||
|
@ -473,20 +585,32 @@ li p{
|
||||||
}
|
}
|
||||||
|
|
||||||
.resources{
|
.resources{
|
||||||
|
text-align:left;
|
||||||
|
}
|
||||||
|
.resources>div:first-child+div{
|
||||||
|
border-top:1px solid #e0e0e0;
|
||||||
|
}
|
||||||
|
.resources div div{
|
||||||
|
display:inline-block;
|
||||||
|
width:380px;
|
||||||
|
vertical-align:top;
|
||||||
|
padding:10px 0px 25px 0px;
|
||||||
|
min-height:200px;
|
||||||
|
}
|
||||||
|
.resources>div>div:first-child{
|
||||||
|
padding-right:40px;
|
||||||
|
}
|
||||||
|
.resources>div>div:first-child+div{
|
||||||
|
padding-left:40px;
|
||||||
|
border-left:1px solid #e0e0e0;
|
||||||
|
}
|
||||||
|
.resources div div div{
|
||||||
|
display:block;
|
||||||
|
width:auto;
|
||||||
|
}
|
||||||
|
.resources p{
|
||||||
font-size:115%;
|
font-size:115%;
|
||||||
font-weight:bold;
|
margin:6px 0px;
|
||||||
}
|
|
||||||
.resources ul{
|
|
||||||
padding-top:5px;
|
|
||||||
}
|
|
||||||
.resources li{
|
|
||||||
padding-top:6px;
|
|
||||||
}
|
|
||||||
.resources a,.resources a:link,.resources a:active,.resources a:visited{
|
|
||||||
text-decoration:none;
|
|
||||||
}
|
|
||||||
.resources li ul li{
|
|
||||||
font-weight:normal;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#chatbox{
|
#chatbox{
|
||||||
|
@ -519,13 +643,7 @@ li p{
|
||||||
}
|
}
|
||||||
|
|
||||||
.preview{
|
.preview{
|
||||||
width:880px;
|
margin-top:-5px;
|
||||||
padding-left:40px;
|
|
||||||
padding-top:15px;
|
|
||||||
border:2px solid #eee;
|
|
||||||
margin-top:30px;
|
|
||||||
border-radius:8px;
|
|
||||||
-webkit-border-radius:8px;
|
|
||||||
}
|
}
|
||||||
.previewcol{
|
.previewcol{
|
||||||
clear:both;
|
clear:both;
|
||||||
|
@ -601,7 +719,7 @@ li p{
|
||||||
background:url(/img/bubblebottom.svg) bottom center no-repeat;
|
background:url(/img/bubblebottom.svg) bottom center no-repeat;
|
||||||
height:64px;
|
height:64px;
|
||||||
}
|
}
|
||||||
.previewrow>div>div>div>span{
|
.previewrow>div>div>div>span {
|
||||||
position:absolute;
|
position:absolute;
|
||||||
top:24px;
|
top:24px;
|
||||||
right:30px;
|
right:30px;
|
||||||
|
@ -688,10 +806,16 @@ h2 .rssicon{
|
||||||
margin-bottom:40px;
|
margin-bottom:40px;
|
||||||
max-width:600px;
|
max-width:600px;
|
||||||
}
|
}
|
||||||
|
.versiontext h1{
|
||||||
|
text-align:left;
|
||||||
|
}
|
||||||
|
|
||||||
.alerttext{
|
.alerttext{
|
||||||
margin-bottom:40px;
|
margin-bottom:40px;
|
||||||
}
|
}
|
||||||
|
.alerttext h1{
|
||||||
|
text-align:left;
|
||||||
|
}
|
||||||
.alertstatusinactive{
|
.alertstatusinactive{
|
||||||
font-size:130%;
|
font-size:130%;
|
||||||
color:#0d579b;
|
color:#0d579b;
|
||||||
|
@ -709,10 +833,45 @@ h2 .rssicon{
|
||||||
font-weight:bold;
|
font-weight:bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.download a{
|
.download{
|
||||||
font-size:125%;
|
text-align:center;
|
||||||
|
}
|
||||||
|
.download h1,.download h2{
|
||||||
|
text-align:center;
|
||||||
|
}
|
||||||
|
.download .mainbutton a{
|
||||||
|
margin:10px 0px 35px 0px;
|
||||||
|
}
|
||||||
|
.downloadbox{
|
||||||
|
display:inline-block;
|
||||||
|
text-align:center;
|
||||||
|
border:2px solid #fad296;
|
||||||
|
padding:20px;
|
||||||
|
font-size:125%;
|
||||||
|
border-radius:12px;
|
||||||
|
-webkit-border-radius:12px;
|
||||||
|
margin:0px auto 20px auto;
|
||||||
|
}
|
||||||
|
.downloadbox p{
|
||||||
|
margin:0;
|
||||||
|
margin-top:20px;
|
||||||
|
margin-bottom:0px;
|
||||||
|
}
|
||||||
|
.downloadbox p:first-child{
|
||||||
|
margin-top:0px;
|
||||||
|
margin-bottom:20px;
|
||||||
|
}
|
||||||
|
.downloadbox a{
|
||||||
|
display:inline-block;
|
||||||
|
}
|
||||||
|
.downloadbox div{
|
||||||
|
margin:10px 0px;
|
||||||
|
text-align:left;
|
||||||
|
}
|
||||||
|
.downloadbox span{
|
||||||
|
width:16px;
|
||||||
|
height:16px;
|
||||||
display:inline-block;
|
display:inline-block;
|
||||||
margin:5px 0px;
|
|
||||||
}
|
}
|
||||||
.download span{
|
.download span{
|
||||||
width:16px;
|
width:16px;
|
||||||
|
@ -723,20 +882,12 @@ h2 .rssicon{
|
||||||
.summary{
|
.summary{
|
||||||
font-size:125%;
|
font-size:125%;
|
||||||
margin-bottom:40px;
|
margin-bottom:40px;
|
||||||
|
text-align:center;
|
||||||
}
|
}
|
||||||
.summarytxt{
|
.summarytxt{
|
||||||
margin-bottom:40px;
|
margin-bottom:40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.foundation{
|
|
||||||
max-width:500px;
|
|
||||||
margin:40px auto;
|
|
||||||
border:2px dashed #dfdfdf;
|
|
||||||
padding:40px;
|
|
||||||
border-radius:9px;
|
|
||||||
-webkit-border-radius:9px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.press h2{
|
.press h2{
|
||||||
font-size:150%;
|
font-size:150%;
|
||||||
}
|
}
|
||||||
|
@ -751,7 +902,7 @@ h2 .rssicon{
|
||||||
width:400px;
|
width:400px;
|
||||||
height:150px;
|
height:150px;
|
||||||
display:inline-block;
|
display:inline-block;
|
||||||
margin-right:30px;
|
margin-right:20px;
|
||||||
margin-bottom:30px;
|
margin-bottom:30px;
|
||||||
vertical-align:top;
|
vertical-align:top;
|
||||||
}
|
}
|
||||||
|
@ -799,7 +950,7 @@ h2 .rssicon{
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
}
|
}
|
||||||
.press-faq>div{
|
.press-faq>div{
|
||||||
width:400px;
|
width:380px;
|
||||||
display:inline-block;
|
display:inline-block;
|
||||||
vertical-align:top;
|
vertical-align:top;
|
||||||
text-align:left;
|
text-align:left;
|
||||||
|
@ -840,7 +991,7 @@ h2 .rssicon{
|
||||||
}
|
}
|
||||||
.press-materials>div{
|
.press-materials>div{
|
||||||
display:inline-block;
|
display:inline-block;
|
||||||
width:300px;
|
width:278px;
|
||||||
vertical-align:top;
|
vertical-align:top;
|
||||||
position:relative;
|
position:relative;
|
||||||
}
|
}
|
||||||
|
@ -909,6 +1060,12 @@ h2 .rssicon{
|
||||||
img{
|
img{
|
||||||
max-width:100%;
|
max-width:100%;
|
||||||
}
|
}
|
||||||
|
h1{
|
||||||
|
text-align:left;
|
||||||
|
}
|
||||||
|
.summary{
|
||||||
|
text-align:left;
|
||||||
|
}
|
||||||
#head{
|
#head{
|
||||||
margin:0px;
|
margin:0px;
|
||||||
}
|
}
|
||||||
|
@ -967,26 +1124,18 @@ h2 .rssicon{
|
||||||
display:inline-block;
|
display:inline-block;
|
||||||
margin:10px;
|
margin:10px;
|
||||||
}
|
}
|
||||||
#rightbox,#rightbox.wide{
|
#content{
|
||||||
display:block;
|
|
||||||
position:static;
|
|
||||||
margin:30px auto 20px auto;
|
|
||||||
}
|
|
||||||
#content,#content.wide{
|
|
||||||
position:static;
|
position:static;
|
||||||
margin:0px 5px;
|
margin:0px 5px;
|
||||||
padding:15px 10px 20px 10px;
|
padding:15px 10px 20px 10px;
|
||||||
}
|
}
|
||||||
#footer{
|
#footer{
|
||||||
padding:0px 0px 20px 5px;
|
padding:20px 0px 20px 5px;
|
||||||
background-color:transparent;
|
background-color:transparent;
|
||||||
}
|
}
|
||||||
.contributors{
|
.contributors{
|
||||||
width:auto;
|
width:auto;
|
||||||
}
|
}
|
||||||
.foundation{
|
|
||||||
padding:20px;
|
|
||||||
}
|
|
||||||
.preview{
|
.preview{
|
||||||
display:none;
|
display:none;
|
||||||
}
|
}
|
||||||
|
@ -1023,11 +1172,66 @@ h2 .rssicon{
|
||||||
margin-right:0px;
|
margin-right:0px;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
.mainvideo{
|
||||||
|
position:relative;
|
||||||
|
padding-bottom:56.25%;
|
||||||
|
padding-top:30px;
|
||||||
|
height:0;
|
||||||
|
overflow:hidden;
|
||||||
|
}
|
||||||
|
.mainvideo iframe{
|
||||||
|
position:absolute;
|
||||||
|
top:0;
|
||||||
|
left:0;
|
||||||
|
width:100%;
|
||||||
|
height:100%;
|
||||||
|
}
|
||||||
|
.mainlist>div{
|
||||||
|
width:auto;
|
||||||
|
display:block;
|
||||||
|
}
|
||||||
|
.mainlist>div>div{
|
||||||
|
margin:10px;
|
||||||
|
}
|
||||||
|
.mainlist>div:first-child,.mainlist>div:first-child+div,.mainlist>div:first-child+div+div{
|
||||||
|
text-align:left;
|
||||||
|
}
|
||||||
|
.start>div:first-child+div{
|
||||||
|
border-top:0px;
|
||||||
|
}
|
||||||
|
.start div div{
|
||||||
|
display:block;
|
||||||
|
width:auto;
|
||||||
|
padding:0px;
|
||||||
|
}
|
||||||
|
.start>div>div:first-child{
|
||||||
|
padding-right:0px;
|
||||||
|
}
|
||||||
|
.start>div>div:first-child+div{
|
||||||
|
border-left:0px;
|
||||||
|
padding-left:0px;
|
||||||
|
}
|
||||||
|
.resources>div:first-child+div{
|
||||||
|
border-top:0px;
|
||||||
|
}
|
||||||
|
.resources div div{
|
||||||
|
display:block;
|
||||||
|
width:auto;
|
||||||
|
padding:0px 0px 10px 0px;
|
||||||
|
min-height:0;
|
||||||
|
}
|
||||||
|
.resources>div>div:first-child{
|
||||||
|
padding-right:0px;
|
||||||
|
}
|
||||||
|
.resources>div>div:first-child+div{
|
||||||
|
border-left:0px;
|
||||||
|
padding-left:0px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Deprecated styles (should be removed when translations are updated) */
|
/* Deprecated styles (should be removed when translations are updated) */
|
||||||
|
|
||||||
#menufor{
|
body.old #menufor{
|
||||||
margin:0px;
|
margin:0px;
|
||||||
position:absolute;
|
position:absolute;
|
||||||
top:8px;
|
top:8px;
|
||||||
|
@ -1035,7 +1239,16 @@ h2 .rssicon{
|
||||||
padding:0px;
|
padding:0px;
|
||||||
height:35px;
|
height:35px;
|
||||||
}
|
}
|
||||||
#menufor li{
|
body.old h1{
|
||||||
|
text-align:left;
|
||||||
|
}
|
||||||
|
body.old .summary{
|
||||||
|
text-align:left;
|
||||||
|
}
|
||||||
|
body.old .alert-message div div{
|
||||||
|
width:960px;
|
||||||
|
}
|
||||||
|
body.old #menufor li{
|
||||||
list-style:none;
|
list-style:none;
|
||||||
float:left;
|
float:left;
|
||||||
padding:0px;
|
padding:0px;
|
||||||
|
@ -1043,10 +1256,10 @@ h2 .rssicon{
|
||||||
border-radius:5px;
|
border-radius:5px;
|
||||||
-webkit-left-radius:5px;
|
-webkit-left-radius:5px;
|
||||||
}
|
}
|
||||||
#menufor li a,
|
body.old #menufor li a,
|
||||||
#menufor li a:active,
|
body.old #menufor li a:active,
|
||||||
#menufor li a:visited,
|
body.old #menufor li a:visited,
|
||||||
#menufor li a:link{
|
body.old #menufor li a:link{
|
||||||
font-family:'Ubuntu', sans-serif;
|
font-family:'Ubuntu', sans-serif;
|
||||||
font-weight:700;
|
font-weight:700;
|
||||||
font-size:105%;
|
font-size:105%;
|
||||||
|
@ -1056,22 +1269,21 @@ h2 .rssicon{
|
||||||
color:#2c6fad;
|
color:#2c6fad;
|
||||||
white-space:nowrap;
|
white-space:nowrap;
|
||||||
}
|
}
|
||||||
#menufor li:hover,
|
body.old #menufor li:hover,
|
||||||
#menufor li.active{
|
body.old #menufor li.active{
|
||||||
background-color:#2c6fad;
|
background-color:#2c6fad;
|
||||||
}
|
}
|
||||||
#menufor li:hover a,
|
body.old #menufor li:hover a,
|
||||||
#menufor li.active a{
|
body.old #menufor li.active a{
|
||||||
border-radius:5px;
|
border-radius:5px;
|
||||||
-webkit-left-radius:5px;
|
-webkit-left-radius:5px;
|
||||||
color:#fff;
|
color:#fff;
|
||||||
}
|
}
|
||||||
|
body.old #menu{
|
||||||
#menu{
|
|
||||||
padding:0px;
|
padding:0px;
|
||||||
margin:12px auto -12px 32px;
|
margin:12px auto -12px 32px;
|
||||||
}
|
}
|
||||||
#menu li{
|
body.old #menu li{
|
||||||
list-style:none;
|
list-style:none;
|
||||||
display:inline-block;
|
display:inline-block;
|
||||||
margin:0px;
|
margin:0px;
|
||||||
|
@ -1089,50 +1301,203 @@ h2 .rssicon{
|
||||||
border: 2px solid transparent;
|
border: 2px solid transparent;
|
||||||
white-space:nowrap;
|
white-space:nowrap;
|
||||||
}
|
}
|
||||||
#menu li:hover a,
|
body.old #menu li:hover a,
|
||||||
#menu li.active a{
|
body.old #menu li.active a{
|
||||||
color:#000;
|
color:#000;
|
||||||
background-color:#fff;
|
background-color:#fff;
|
||||||
border:2px solid #ebebeb;
|
border:2px solid #ebebeb;
|
||||||
border-radius:3px;
|
border-radius:3px;
|
||||||
-webkit-border-radius:3px;
|
-webkit-border-radius:3px;
|
||||||
}
|
}
|
||||||
|
body.old #head>div{
|
||||||
|
max-width:1050px;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.old #body{
|
||||||
|
max-width:1050px;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.old #content{
|
||||||
|
padding:20px 265px 30px 30px;
|
||||||
|
}
|
||||||
|
body.old #content.wide{
|
||||||
|
padding:20px 40px 30px 30px;
|
||||||
|
max-width:990px;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.old #rightbox{
|
||||||
|
width:210px;
|
||||||
|
position:absolute;
|
||||||
|
right:30px;
|
||||||
|
top:20px;
|
||||||
|
border-radius:5px;
|
||||||
|
-webkit-border-radius:5px;
|
||||||
|
padding:5px;
|
||||||
|
}
|
||||||
|
body.old #rightbox.wide{
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.old #choose a,
|
||||||
|
body.old #before a,
|
||||||
|
body.old #support a{
|
||||||
|
font-family:'Ubuntu', sans-serif;
|
||||||
|
font-weight:300;
|
||||||
|
padding:10px 8px 10px 48px;
|
||||||
|
color:#fff;
|
||||||
|
display:block;
|
||||||
|
text-align:left;
|
||||||
|
margin-bottom:10px;
|
||||||
|
text-decoration:none;
|
||||||
|
border-radius:5px;
|
||||||
|
-webkit-border-radius:5px;
|
||||||
|
}
|
||||||
|
body.old #choose img,
|
||||||
|
body.old #before img,
|
||||||
|
body.old #support img{
|
||||||
|
vertical-align:middle;
|
||||||
|
margin-right:8px;
|
||||||
|
margin-left:-40px;
|
||||||
|
width:32px;
|
||||||
|
height:32px;
|
||||||
|
}
|
||||||
|
body.old #before a,
|
||||||
|
body.old #support a{
|
||||||
|
background-color:#2c6fad;
|
||||||
|
border:1px solid #20598f;
|
||||||
|
background-image:linear-gradient(bottom, #20598f 14%, #2c6fad 70%);
|
||||||
|
background-image:-o-linear-gradient(bottom, #20598f 14%, #2c6fad 70%);
|
||||||
|
background-image:-moz-linear-gradient(bottom, #20598f 14%, #2c6fad 70%);
|
||||||
|
background-image:-webkit-linear-gradient(bottom, #20598f 14%, #2c6fad 70%);
|
||||||
|
background-image:-ms-linear-gradient(bottom, #20598f 14%, #2c6fad 70%);
|
||||||
|
}
|
||||||
|
body.old #choose a{
|
||||||
|
padding:12px 8px 12px 48px;
|
||||||
|
background-color:#e78406;
|
||||||
|
border:1px solid #d57700;
|
||||||
|
background-image:linear-gradient(bottom, #d57700 14%, #e78406 70%);
|
||||||
|
background-image:-o-linear-gradient(bottom, #d57700 14%, #e78406 70%);
|
||||||
|
background-image:-moz-linear-gradient(bottom, #d57700 14%, #e78406 70%);
|
||||||
|
background-image:-webkit-linear-gradient(bottom, #d57700 14%, #e78406 70%);
|
||||||
|
background-image:-ms-linear-gradient(bottom, #d57700 14%, #e78406 70%);
|
||||||
|
}
|
||||||
|
body.old #choose a:hover,
|
||||||
|
body.old #before a:hover,
|
||||||
|
body.old #support a:hover{
|
||||||
|
background-image:none;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.old .downloadold a{
|
||||||
|
font-size:125%;
|
||||||
|
display:inline-block;
|
||||||
|
margin:5px 0px;
|
||||||
|
}
|
||||||
|
body.old .downloadold span{
|
||||||
|
width:16px;
|
||||||
|
height:16px;
|
||||||
|
display:inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.old .preview{
|
||||||
|
margin-top:40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.old #footer{
|
||||||
|
max-width:1050px;
|
||||||
|
}
|
||||||
|
body.old .foundation{
|
||||||
|
max-width:500px;
|
||||||
|
margin:40px auto;
|
||||||
|
border:2px dashed #dfdfdf;
|
||||||
|
padding:40px;
|
||||||
|
border-radius:9px;
|
||||||
|
-webkit-border-radius:9px;
|
||||||
|
}
|
||||||
|
body.old .preview{
|
||||||
|
width:880px;
|
||||||
|
padding-left:40px;
|
||||||
|
padding-top:15px;
|
||||||
|
border:2px solid #eee;
|
||||||
|
border-radius:8px;
|
||||||
|
-webkit-border-radius:8px;
|
||||||
|
}
|
||||||
|
body.old .resourcesold{
|
||||||
|
font-size:115%;
|
||||||
|
font-weight:bold;
|
||||||
|
}
|
||||||
|
body.old .resourcesold ul{
|
||||||
|
padding-top:5px;
|
||||||
|
}
|
||||||
|
body.old .resourcesold li{
|
||||||
|
padding-top:6px;
|
||||||
|
}
|
||||||
|
body.old .resourcesold a,
|
||||||
|
body.old .resourcesold a:link,
|
||||||
|
body.old .resourcesold a:active,
|
||||||
|
body.old .resourcesold a:visited{
|
||||||
|
text-decoration:none;
|
||||||
|
}
|
||||||
|
body.old .resourcesold li ul li{
|
||||||
|
font-weight:normal;
|
||||||
|
}
|
||||||
|
|
||||||
/* Deprecated styles specific to mobiles (should be removed when translations are updated) */
|
/* Deprecated styles specific to mobiles (should be removed when translations are updated) */
|
||||||
|
|
||||||
@media handheld, only screen and (max-device-height: 37em), only screen and (max-device-width: 50em){
|
@media handheld, only screen and (max-device-height: 37em), only screen and (max-device-width: 50em){
|
||||||
#menufor,
|
body.old #menufor,
|
||||||
#menu,
|
body.old #menu{
|
||||||
#menusimple{
|
|
||||||
display:none;
|
display:none;
|
||||||
}
|
}
|
||||||
#menufor{
|
body.old #menufor{
|
||||||
position:static;
|
position:static;
|
||||||
bottom:0px;
|
bottom:0px;
|
||||||
margin:10px 0px 0px 0px;
|
margin:10px 0px 0px 0px;
|
||||||
height:auto;
|
height:auto;
|
||||||
}
|
}
|
||||||
#menufor li{
|
body.old #menufor li{
|
||||||
float:none;
|
float:none;
|
||||||
display:inline-block;
|
display:inline-block;
|
||||||
}
|
}
|
||||||
#menufor li a,#menufor li a:active,#menufor li a:visited,#menufor li a:link{
|
body.old #menufor li a,
|
||||||
|
body.old #menufor li a:active,
|
||||||
|
body.old #menufor li a:visited,
|
||||||
|
body.old #menufor li a:link{
|
||||||
padding:6px 6px 3px 6px;
|
padding:6px 6px 3px 6px;
|
||||||
}
|
}
|
||||||
#menufor li{
|
body.old #menufor li{
|
||||||
margin:6px;
|
margin:6px;
|
||||||
}
|
}
|
||||||
#menu{
|
body.old #menu{
|
||||||
position:static;
|
position:static;
|
||||||
height:auto;
|
height:auto;
|
||||||
margin:10px 0px 10px 0px;
|
margin:10px 0px 10px 0px;
|
||||||
}
|
}
|
||||||
#menu li{
|
body.old #menu li{
|
||||||
float:none;
|
float:none;
|
||||||
display:inline-block;
|
display:inline-block;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
}
|
}
|
||||||
#menu li a,#menu li a:active,#menu li a:visited,#menu li a:link{
|
body.old #menu li a,
|
||||||
|
body.old #menu li a:active,
|
||||||
|
body.old #menu li a:visited,
|
||||||
|
body.old #menu li a:link{
|
||||||
padding:5px;
|
padding:5px;
|
||||||
}
|
}
|
||||||
|
body.old #rightbox,
|
||||||
|
body.old #rightbox.wide{
|
||||||
|
display:block;
|
||||||
|
position:static;
|
||||||
|
margin:30px auto 20px auto;
|
||||||
|
}
|
||||||
|
body.old #content{
|
||||||
|
padding:15px 10px 20px 10px;
|
||||||
|
}
|
||||||
|
body.old #content.wide{
|
||||||
|
position:static;
|
||||||
|
margin:0px 5px;
|
||||||
|
padding:15px 10px 20px 10px;
|
||||||
|
}
|
||||||
|
body.old .foundation{
|
||||||
|
padding:20px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,3 +28,11 @@ id: bitcoin-for-businesses
|
||||||
|
|
||||||
<h2><img class="titleicon" src="/img/ico_transparency.svg" alt="Icon" />{% translate transparency %}</h2>
|
<h2><img class="titleicon" src="/img/ico_transparency.svg" alt="Icon" />{% translate transparency %}</h2>
|
||||||
<p>{% translate transparencytext %}</p>
|
<p>{% translate transparencytext %}</p>
|
||||||
|
|
||||||
|
{% case page.lang %}
|
||||||
|
{% when 'ar' or 'de' or 'es' or 'fa' or 'fr' or 'it' or 'nl' or 'pl' or 'ru' or 'tr' %}
|
||||||
|
{% else %}
|
||||||
|
<div class="introlink">{% translate merchantintro %}</div>
|
||||||
|
<div class="mainbutton"><a href="{% translate getting-started url %}"><img src="/img/but_bitcoin.svg" alt="icon">{% translate getstarted layout %}</a></div>
|
||||||
|
{% endcase %}
|
||||||
|
|
||||||
|
|
|
@ -22,3 +22,12 @@ id: bitcoin-for-developers
|
||||||
|
|
||||||
<h2><img class="titleicon" src="/img/ico_micro.svg" alt="Icon" />{% translate micro %}</h2>
|
<h2><img class="titleicon" src="/img/ico_micro.svg" alt="Icon" />{% translate micro %}</h2>
|
||||||
<p>{% translate microtext %}</p>
|
<p>{% translate microtext %}</p>
|
||||||
|
|
||||||
|
{% case page.lang %}
|
||||||
|
{% when 'ar' or 'de' or 'es' or 'fa' or 'fr' or 'it' or 'nl' or 'pl' or 'ru' or 'tr' %}
|
||||||
|
{% else %}
|
||||||
|
<div class="introlink">{% translate serviceslist %}</div>
|
||||||
|
<div class="introlink">{% translate apireference %}</div>
|
||||||
|
<div class="mainbutton"><a href="{% translate getting-started url %}"><img src="/img/but_bitcoin.svg" alt="icon">{% translate getstarted layout %}</a></div>
|
||||||
|
{% endcase %}
|
||||||
|
|
||||||
|
|
|
@ -22,3 +22,9 @@ id: bitcoin-for-individuals
|
||||||
|
|
||||||
<h2><img class="titleicon" src="/img/ico_anon.svg" alt="Icon" />{% translate anonymous %}</h2>
|
<h2><img class="titleicon" src="/img/ico_anon.svg" alt="Icon" />{% translate anonymous %}</h2>
|
||||||
<p>{% translate anonymoustext %}</p>
|
<p>{% translate anonymoustext %}</p>
|
||||||
|
|
||||||
|
{% case page.lang %}
|
||||||
|
{% when 'ar' or 'de' or 'es' or 'fa' or 'fr' or 'it' or 'nl' or 'pl' or 'ru' or 'tr' %}
|
||||||
|
{% else %}
|
||||||
|
<div class="mainbutton"><a href="{% translate getting-started url %}"><img src="/img/but_bitcoin.svg" alt="icon">{% translate getstarted layout %}</a></div>
|
||||||
|
{% endcase %}
|
||||||
|
|
|
@ -2,8 +2,11 @@
|
||||||
layout: base
|
layout: base
|
||||||
id: community
|
id: community
|
||||||
---
|
---
|
||||||
|
{% case page.lang %}
|
||||||
|
{% when 'ar' or 'de' or 'es' or 'fa' or 'fr' or 'it' or 'nl' or 'pl' or 'ru' or 'tr' %}
|
||||||
|
|
||||||
<h1>{% translate pagetitle %}</h1>
|
<h1>{% translate pagetitle %}</h1>
|
||||||
<ul class="resources">
|
<ul class="resourcesold">
|
||||||
<li>{% translate foundation %}</li>
|
<li>{% translate foundation %}</li>
|
||||||
{% case page.lang %}
|
{% case page.lang %}
|
||||||
{% when 'ar' or 'es' or 'fa' or 'it' or 'nl' or 'ru' %}
|
{% when 'ar' or 'es' or 'fa' or 'it' or 'nl' or 'ru' %}
|
||||||
|
@ -49,3 +52,55 @@ id: community
|
||||||
<li><a href="http://forum.bitcoin.pl/">Polski portal bitcoin.pl</a></li>
|
<li><a href="http://forum.bitcoin.pl/">Polski portal bitcoin.pl</a></li>
|
||||||
{% endcase %}
|
{% endcase %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
{% else %}
|
||||||
|
|
||||||
|
<h1>{% translate pagetitle %}</h1>
|
||||||
|
<p class="summary">{% translate pagedesc %}</p>
|
||||||
|
|
||||||
|
<div class="resources">
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<h2><img src="/img/ico_invoice.svg" class="titleicon" alt="Icon">{% translate forums %}</h2>
|
||||||
|
<p><a href="https://bitcoinfoundation.org/forum/">{% translate foundation %}</a></p>
|
||||||
|
<p>{% translate bitcointalk %}</p>
|
||||||
|
<p><a href="http://www.reddit.com/r/Bitcoin/">{% translate reddit %}</a></p>
|
||||||
|
<p><a href="http://bitcoin.stackexchange.com/">{% translate stackexchange %}</a></p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h2><img src="/img/ico_network.svg" class="titleicon" alt="Icon">{% translate social %}</h2>
|
||||||
|
<p>{% translate linkgoogle %}</p>
|
||||||
|
<p><a href="http://twitter.com/#!/search/bitcoin">{% translate linktwitter %}</a></p>
|
||||||
|
<p>{% translate facebook %}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<h2><img src="/img/ico_multi.svg" class="titleicon" alt="Icon">{% translate meetups %}</h2>
|
||||||
|
<p><a href="/{{ page.lang }}/{% translate events url %}">{% translate meetupevents %}</a></p>
|
||||||
|
<p><a href="http://bitcoin.meetup.com/">{% translate meetupgroup %}</a></p>
|
||||||
|
<p><a href="https://bitcointalk.org/index.php?board=86.0">{% translate meetupbitcointalk %}</a></p>
|
||||||
|
<p><a href="https://en.bitcoin.it/wiki/Meetups">{% translate meetupwiki %}</a></p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h2><img src="/img/ico_help.svg" class="titleicon" alt="Icon">{% translate irc %}</h2>
|
||||||
|
<p>{% translate ircjoin %}</p>
|
||||||
|
<p>#bitcoin {% translate chanbitcoin %}</li>
|
||||||
|
<p>#bitcoin-dev {% translate chandev %}</li>
|
||||||
|
<p>#bitcoin-otc {% translate chanotc %}</li>
|
||||||
|
<p>#bitcoin-market {% translate chanmarket %}</li>
|
||||||
|
<p>#bitcoin-mining {% translate chanmining %}</li>
|
||||||
|
{% case page.lang %}
|
||||||
|
{% when 'fr' %}
|
||||||
|
<p>#bitcoin-fr (Le Bitcoin en général, français)</li>
|
||||||
|
{% when 'es' %}
|
||||||
|
<p>#bitcoin-ar (Comunidad Bitcoin Argentina)</li>
|
||||||
|
<p>#bitcoin-es (Comunidad Bitcoin en español)</li>
|
||||||
|
<p>#bitcoin-otc-ar (Mercado OTC de Bitcoin en Argentina)</li>
|
||||||
|
{% endcase %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="introlink">{% translate wikiportal %}</div>
|
||||||
|
|
||||||
|
{% endcase %}
|
||||||
|
|
|
@ -3,6 +3,11 @@ layout: base
|
||||||
id: development
|
id: development
|
||||||
---
|
---
|
||||||
<h1>{% translate pagetitle %}</h1>
|
<h1>{% translate pagetitle %}</h1>
|
||||||
|
{% case page.lang %}
|
||||||
|
{% when 'ar' or 'de' or 'es' or 'fa' or 'fr' or 'it' or 'nl' or 'pl' or 'ru' or 'tr' %}
|
||||||
|
{% else %}
|
||||||
|
<p class="summary">{% translate summary %}</p>
|
||||||
|
{% endcase %}
|
||||||
|
|
||||||
<h2>{% translate spec %}</h2>
|
<h2>{% translate spec %}</h2>
|
||||||
<p>{% translate spectxt %}</p>
|
<p>{% translate spectxt %}</p>
|
||||||
|
|
|
@ -2,10 +2,13 @@
|
||||||
layout: base
|
layout: base
|
||||||
id: download
|
id: download
|
||||||
---
|
---
|
||||||
|
{% case page.lang %}
|
||||||
|
{% when 'ar' or 'de' or 'es' or 'fa' or 'fr' or 'it' or 'nl' or 'pl' or 'ru' or 'tr' %}
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="/en/rss/releases.rss" title="Bitcoin-Qt releases">
|
<link rel="alternate" type="application/rss+xml" href="/en/rss/releases.rss" title="Bitcoin-Qt releases">
|
||||||
<h1>{% translate pagetitle %}</h1>
|
<h1>{% translate pagetitle %}</h1>
|
||||||
<h2>{% translate latestversion %}{{site.DOWNLOAD_VERSION}}<a type="application/rss+xml" href="/en/rss/releases.rss"><img src="/img/icon_rss.svg" alt="rss" class="rssicon"></a></h2>
|
<h2>{% translate latestversion %}{{site.DOWNLOAD_VERSION}}<a type="application/rss+xml" href="/en/rss/releases.rss"><img src="/img/icon_rss.svg" alt="rss" class="rssicon"></a></h2>
|
||||||
<p class="download">
|
<p class="downloadold">
|
||||||
<img src="/img/dow-win.png"> <a href="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-win32.zip/download">{% translate downloadwinzip %}</a> <small>~13MB</small><br>
|
<img src="/img/dow-win.png"> <a href="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-win32.zip/download">{% translate downloadwinzip %}</a> <small>~13MB</small><br>
|
||||||
<img src="/img/dow-win.png"> <a href="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-win32-setup.exe/download">{% translate downloadwinexe %}</a> <small>~9MB</small><br>
|
<img src="/img/dow-win.png"> <a href="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-win32-setup.exe/download">{% translate downloadwinexe %}</a> <small>~9MB</small><br>
|
||||||
<img src="/img/dow-ubuntu.png"> <a href="https://launchpad.net/~bitcoin/+archive/bitcoin">{% translate downloadubu %}</a><br>
|
<img src="/img/dow-ubuntu.png"> <a href="https://launchpad.net/~bitcoin/+archive/bitcoin">{% translate downloadubu %}</a><br>
|
||||||
|
@ -17,3 +20,38 @@ id: download
|
||||||
<br>
|
<br>
|
||||||
<p>{% translate notelicense %}</p>
|
<p>{% translate notelicense %}</p>
|
||||||
<p>{% translate notesync %}</p>
|
<p>{% translate notesync %}</p>
|
||||||
|
|
||||||
|
{% else %}
|
||||||
|
|
||||||
|
<link rel="alternate" type="application/rss+xml" href="/en/rss/releases.rss" title="Bitcoin-Qt releases">
|
||||||
|
<div class="download">
|
||||||
|
<h1>{% translate pagetitle %}</h1>
|
||||||
|
<h2>{% translate latestversion %}{{site.DOWNLOAD_VERSION}}<a type="application/rss+xml" href="/en/rss/releases.rss"><img src="/img/icon_rss.svg" alt="rss" class="rssicon"></a></h2>
|
||||||
|
<div class="mainbutton"><a id="downloadbutton" href="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-win32-setup.exe/download"><img src="/img/but_windows.svg" alt="icon">{% translate download %}</a></div>
|
||||||
|
<div class="downloadbox">
|
||||||
|
<p>{% translate downloados %}</p>
|
||||||
|
<div><img src="/img/dow-win.png"> <a href="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-win32.zip/download">{% translate downloadwinzip %}</a> <small>~13MB</small></div>
|
||||||
|
<div id="download_windows"><img src="/img/dow-win.png"> <a href="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-win32-setup.exe/download">{% translate downloadwinexe %}</a> <small>~9MB</small></div>
|
||||||
|
<div><img src="/img/dow-ubuntu.png"> <a href="https://launchpad.net/~bitcoin/+archive/bitcoin">{% translate downloadubu %}</a> <small>~4MB</small></div>
|
||||||
|
<div><img src="/img/dow-linux.png"> <a href="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-linux.tar.gz/download">{% translate downloadlin %}</a> <small>~12MB</small></div>
|
||||||
|
<div><img src="/img/dow-osx-uni.png"> <a href="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-macosx.dmg/download">{% translate downloadmac %}</a> <small>~13MB</small></div>
|
||||||
|
<div><span></span> <a href="https://github.com/bitcoin/bitcoin">{% translate downloadsource %}</a> (GitHub)</div>
|
||||||
|
<p><a href="/en/version-history">{% translate versionhistory %}</a></p>
|
||||||
|
</div>
|
||||||
|
<p>{% translate notesync %}</p>
|
||||||
|
<p>{% translate notelicense %}</p>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
var os='windows';
|
||||||
|
if(navigator.userAgent.indexOf('Mac')!=-1)var os='mac'
|
||||||
|
if(navigator.userAgent.indexOf('Linux')!=-1)var os='ubuntu';
|
||||||
|
var but=document.getElementById('downloadbutton');
|
||||||
|
but.getElementsByTagName('IMG')[0].src='/img/but_'+os+'.svg';
|
||||||
|
switch(os){
|
||||||
|
case 'windows':but.href='http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-win32-setup.exe/download';break;
|
||||||
|
case 'ubuntu':but.href='https://launchpad.net/~bitcoin/+archive/bitcoin';break;
|
||||||
|
case 'mac':but.href='http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-macosx.dmg/download';break;
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
{% endcase %}
|
||||||
|
|
|
@ -13,7 +13,7 @@ id: events
|
||||||
{% endfilter_for %}
|
{% endfilter_for %}
|
||||||
</ul>
|
</ul>
|
||||||
<ul>
|
<ul>
|
||||||
|
<li>{% translate meetupgroup %}</li>
|
||||||
<li>{% translate meetupbitcointalk %}</li>
|
<li>{% translate meetupbitcointalk %}</li>
|
||||||
<li>{% translate meetupwiki %}</li>
|
<li>{% translate meetupwiki %}</li>
|
||||||
<li>{% translate meetupgroup %}</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
|
|
34
_templates/getting-started.html
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
---
|
||||||
|
layout: base
|
||||||
|
id: getting-started
|
||||||
|
---
|
||||||
|
<h1>{% translate pagetitle %}</h1>
|
||||||
|
|
||||||
|
<p class="summary">{% translate pagedesc %}</p>
|
||||||
|
|
||||||
|
<div class="start">
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<h2><span>1.</span> {% translate inform %}</h2>
|
||||||
|
<p>{% translate informtxt %}</p>
|
||||||
|
<div><a href="/{{ page.lang }}/{% translate you-need-to-know url %}">{% translate informbut %}</a></div>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h2><span>2.</span> {% translate choose %}</h2>
|
||||||
|
<p>{% translate choosetxt %}</p>
|
||||||
|
<div><a href="/{{ page.lang }}/{% translate choose-your-wallet url %}">{% translate choosebut %}</a></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<h2><span>3.</span> {% translate get %}</h2>
|
||||||
|
<p>{% translate gettxt %}</p>
|
||||||
|
<div><a href="http://howtobuybitcoins.info">{% translate getbut %}</a></div>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h2><span>4.</span> {% translate spend %}</h2>
|
||||||
|
<p>{% translate spendtxt %}</p>
|
||||||
|
<div><a href="http://usebitcoins.info">{% translate spendbut %}</a></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
|
@ -2,6 +2,9 @@
|
||||||
layout: base
|
layout: base
|
||||||
id: index
|
id: index
|
||||||
---
|
---
|
||||||
|
{% case page.lang %}
|
||||||
|
{% when 'ar' or 'de' or 'es' or 'fa' or 'fr' or 'it' or 'nl' or 'pl' or 'ru' or 'tr' %}
|
||||||
|
|
||||||
<h1>{% translate pagetitle %}</h1>
|
<h1>{% translate pagetitle %}</h1>
|
||||||
<p style="font-size:125%;">{% translate listintro %}</p>
|
<p style="font-size:125%;">{% translate listintro %}</p>
|
||||||
<ul style="font-size:125%;">
|
<ul style="font-size:125%;">
|
||||||
|
@ -12,3 +15,19 @@ id: index
|
||||||
</ul>
|
</ul>
|
||||||
<p>{% translate desc %}</p>
|
<p>{% translate desc %}</p>
|
||||||
<p>{% translate license %}</p>
|
<p>{% translate license %}</p>
|
||||||
|
|
||||||
|
{% else %}
|
||||||
|
|
||||||
|
<div class="mainsummary">{% translate listintro %}</div>
|
||||||
|
<div class="mainvideo"><iframe src="//www.youtube.com/embed/Um63OQz3bjo{% if page.lang != 'en' %}?cc_load_policy=1{% endif %}" frameborder="0" allowfullscreen></iframe></div>
|
||||||
|
<div class="mainlist">
|
||||||
|
<div><div><img src="/img/main_ico_instant.svg" alt="Icon"><div>{% translate list1 %}</div></div></div>
|
||||||
|
<div><div><img src="/img/main_ico_worldwide.svg" alt="Icon"><div>{% translate list2 %}</div></div></div>
|
||||||
|
<div><div><img src="/img/main_ico_lowfee.svg" alt="Icon"><div>{% translate list3 %}</div></div></div>
|
||||||
|
</div>
|
||||||
|
<div class="maindesc">{% translate desc %}</div>
|
||||||
|
<div class="mainbutton"><a href="{% translate getting-started url %}"><img src="/img/but_bitcoin.svg" alt="icon">{% translate getstarted layout %}</a></div>
|
||||||
|
<div class="mainoverview">{% translate overview %}</div>
|
||||||
|
<div class="mainoverviews"><a href="{% translate bitcoin-for-individuals url %}">{% translate menu-bitcoin-for-individuals layout %}</a> <a href="{% translate bitcoin-for-businesses url %}">{% translate menu-bitcoin-for-businesses layout %}</a> <a href="{% translate bitcoin-for-developers url %}">{% translate menu-bitcoin-for-developers layout %}</a></div>
|
||||||
|
|
||||||
|
{% endcase %}
|
||||||
|
|
|
@ -2,8 +2,11 @@
|
||||||
layout: base
|
layout: base
|
||||||
id: resources
|
id: resources
|
||||||
---
|
---
|
||||||
|
{% case page.lang %}
|
||||||
|
{% when 'ar' or 'de' or 'es' or 'fa' or 'fr' or 'it' or 'nl' or 'pl' or 'ru' or 'tr' %}
|
||||||
|
|
||||||
<h1>{% translate pagetitle %}</h1>
|
<h1>{% translate pagetitle %}</h1>
|
||||||
<ul class="resources">
|
<ul class="resourcesold">
|
||||||
<li>{% translate linkweusecoins %}</li>
|
<li>{% translate linkweusecoins %}</li>
|
||||||
<li>{% translate linkwallets %}</li>
|
<li>{% translate linkwallets %}</li>
|
||||||
<li>{% translate linkwiki %}
|
<li>{% translate linkwiki %}
|
||||||
|
@ -22,7 +25,8 @@ id: resources
|
||||||
<li><a>{% translate linknews %}</a>
|
<li><a>{% translate linknews %}</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li>{% translate linkbitcoinmagazine %}</li>
|
<li>{% translate linkbitcoinmagazine %}</li>
|
||||||
<li>{% translate linkbitcoinnews %}</li>
|
<li><a href="http://www.coindesk.com/">CoinDesk</a></li>
|
||||||
|
<li><a href="http://thegenesisblock.com/">The Genesis Block</a></li>
|
||||||
<li>{% translate linkforumpress %}</li>
|
<li>{% translate linkforumpress %}</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
@ -33,3 +37,44 @@ id: resources
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
{% else %}
|
||||||
|
|
||||||
|
<h1>{% translate pagetitle %}</h1>
|
||||||
|
<p class="summary">{% translate pagedesc %}</p>
|
||||||
|
|
||||||
|
<div class="resources">
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<h2><img src="/img/ico_simple.svg" class="titleicon" alt="Icon">{% translate useful %}</h2>
|
||||||
|
<p><a href="https://bitcoinfoundation.org/">Bitcoin Foundation</a></p>
|
||||||
|
<p>{% translate linkwiki %}</p>
|
||||||
|
<p><a href="https://weusecoins.com/">WeUseCoins.com</a></p>
|
||||||
|
<p><a href="http://bitcoinmining.com/">BitcoinMining.com</a></p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h2><img src="/img/ico_invoice.svg" class="titleicon" alt="Icon">{% translate directories %}</h2>
|
||||||
|
<p><a href="/{{ page.lang }}/{% translate choose-your-wallet url %}">{% translate linkwallets %}</a> - bitcoin.org</p>
|
||||||
|
<p><a href="http://usebitcoins.info/">{% translate linkmerchants %}</a> - usebitcoins.info</p>
|
||||||
|
<p><a href="http://howtobuybitcoins.info/">{% translate linkexchanges %}</a> - howtobuybitcoins.info</p>
|
||||||
|
<p><a href="https://en.bitcoin.it/wiki/Category:Shopping_Cart_Interfaces">{% translate linkmerchantstools %}</a> - en.bitcoin.it</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<h2><img src="/img/ico_spread.svg" class="titleicon" alt="Icon">{% translate news %}</h2>
|
||||||
|
<p><a href="http://bitcoinmagazine.com/">Bitcoin Magazine</a></p>
|
||||||
|
<p><a href="http://www.coindesk.com/">CoinDesk</a></p>
|
||||||
|
<p><a href="http://thegenesisblock.com/">The Genesis Block</a></p>
|
||||||
|
<p><a href="http://letstalkbitcoin.com/">Let's Talk Bitcoin</a></p>
|
||||||
|
<p><a href="https://bitcointalk.org/index.php?board=77.0">Bitcoin Forum / Press</a></p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h2><img src="/img/ico_market.svg" class="titleicon" alt="Icon">{% translate charts %}</h2>
|
||||||
|
<p><a href="http://blockchain.info/charts">Blockchain.info</a></p>
|
||||||
|
<p><a href="http://bitcoincharts.com/charts/">Bitcoincharts.com</a></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{% endcase %}
|
||||||
|
|
|
@ -17,6 +17,13 @@ id: support-bitcoin
|
||||||
<h2><img class="titleicon" src="/img/ico_donate.svg" alt="Icon" />{% translate donation %}</h2>
|
<h2><img class="titleicon" src="/img/ico_donate.svg" alt="Icon" />{% translate donation %}</h2>
|
||||||
<p>{% translate donationtxt %}</p>
|
<p>{% translate donationtxt %}</p>
|
||||||
|
|
||||||
|
{% case page.lang %}
|
||||||
|
{% when 'ar' or 'de' or 'es' or 'fa' or 'fr' or 'it' or 'nl' or 'pl' or 'ru' or 'tr' %}
|
||||||
|
{% else %}
|
||||||
|
<h2><img class="titleicon" src="/img/ico_foundation.svg" alt="Icon" />{% translate foundation %}</h2>
|
||||||
|
<p>{% translate foundationtxt %}</p>
|
||||||
|
{% endcase %}
|
||||||
|
|
||||||
<h2><img class="titleicon" src="/img/ico_spread.svg" alt="Icon" />{% translate spread %}</h2>
|
<h2><img class="titleicon" src="/img/ico_spread.svg" alt="Icon" />{% translate spread %}</h2>
|
||||||
<p>{% translate spreadtxt %}</p>
|
<p>{% translate spreadtxt %}</p>
|
||||||
|
|
||||||
|
|
|
@ -65,6 +65,7 @@ en:
|
||||||
multisigtext: "Bitcoin also includes a feature, not yet well known, which allows coins to be spent only if a subset of a group of people sign the transaction (so-called \"n of m\" transactions). This is the equivalent of the good old multi-signature cheque system that you might still use with banks today."
|
multisigtext: "Bitcoin also includes a feature, not yet well known, which allows coins to be spent only if a subset of a group of people sign the transaction (so-called \"n of m\" transactions). This is the equivalent of the good old multi-signature cheque system that you might still use with banks today."
|
||||||
transparency: "Accounting transparency"
|
transparency: "Accounting transparency"
|
||||||
transparencytext: "Many organizations are required to produce accounting documents about their activity and to adopt good transparency practices. Using Bitcoin offers the highest level of transparency since your balance and your transactions are public for your members so long as you keep them aware of your Bitcoin addresses."
|
transparencytext: "Many organizations are required to produce accounting documents about their activity and to adopt good transparency practices. Using Bitcoin offers the highest level of transparency since your balance and your transactions are public for your members so long as you keep them aware of your Bitcoin addresses."
|
||||||
|
merchantintro: "Visit the <a href=\"https://en.bitcoin.it/wiki/How_to_accept_Bitcoin,_for_small_businesses\">merchant introduction guide</a> on the wiki."
|
||||||
bitcoin-for-developers:
|
bitcoin-for-developers:
|
||||||
title: "Bitcoin for Developers - Bitcoin"
|
title: "Bitcoin for Developers - Bitcoin"
|
||||||
pagetitle: "Bitcoin for Developers"
|
pagetitle: "Bitcoin for Developers"
|
||||||
|
@ -81,6 +82,8 @@ en:
|
||||||
securitytext: "Most parts of the security are handled by the protocol on the client and Bitcoin network side. Authenticity is verified through private keys, and double-spends are prevented through the Bitcoin network. That means no need for PCI compliance nor fraud detection. We love things that just work, don't we?"
|
securitytext: "Most parts of the security are handled by the protocol on the client and Bitcoin network side. Authenticity is verified through private keys, and double-spends are prevented through the Bitcoin network. That means no need for PCI compliance nor fraud detection. We love things that just work, don't we?"
|
||||||
micro: "Cheap micro payments"
|
micro: "Cheap micro payments"
|
||||||
microtext: "Bitcoin offers the lowest payment processing fees for any type of transaction, including micro-payments. This means that it can also be used to design and implement new creative online services that could not exist before only because of financial limitations."
|
microtext: "Bitcoin offers the lowest payment processing fees for any type of transaction, including micro-payments. This means that it can also be used to design and implement new creative online services that could not exist before only because of financial limitations."
|
||||||
|
serviceslist: "Visit the <a href=\"https://en.bitcoin.it/wiki/How_to_accept_Bitcoin,_for_small_businesses#Merchant_Services\">merchant services list</a> on the wiki."
|
||||||
|
apireference: "Or read Bitcoin-Qt <a href=\"https://en.bitcoin.it/wiki/API_reference_(JSON-RPC)\">API reference</a> and <a href=\"https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_Calls_list\">API calls list</a>."
|
||||||
bitcoin-for-individuals:
|
bitcoin-for-individuals:
|
||||||
title: "Bitcoin for Individuals - Bitcoin"
|
title: "Bitcoin for Individuals - Bitcoin"
|
||||||
pagetitle: "Bitcoin for Individuals"
|
pagetitle: "Bitcoin for Individuals"
|
||||||
|
@ -100,24 +103,32 @@ en:
|
||||||
community:
|
community:
|
||||||
title: "Community - Bitcoin"
|
title: "Community - Bitcoin"
|
||||||
pagetitle: "Bitcoin communities"
|
pagetitle: "Bitcoin communities"
|
||||||
foundation: "<a href=\"https://bitcoinfoundation.org/forum/\">Bitcoin Foundation Forum (members only)</a>"
|
pagedesc: "Find interesting people, groups and communities around Bitcoin."
|
||||||
wikiportal: "<a href=\"https://en.bitcoin.it/wiki/Bitcoin:Community_portal\">Bitcoin Wiki - Community portal</a>"
|
forums: "Forums"
|
||||||
stackexchange: "<a href=\"http://bitcoin.stackexchange.com/\">Bitcoin StackExchange (Q&A)</a>"
|
foundation: "Bitcoin Foundation Forum (members only)"
|
||||||
bitcointalk: "<a href=\"https://bitcointalk.org/\">BitcoinTalk Forum</a>"
|
bitcointalk: "<a href=\"https://bitcointalk.org/\">BitcoinTalk Forum</a>"
|
||||||
ircjoin: "Join the project's lively IRC channels on the <a href=\"http://freenode.net/\">FreeNode</a> network<br>or use the <a href=\"http://webchat.freenode.net/?channels=bitcoin&uio=d4\">FreeNode Web IRC</a>."
|
reddit: "Reddit's Bitcoin Community"
|
||||||
|
stackexchange: "Bitcoin StackExchange (Q&A)"
|
||||||
|
irc: "IRC Chat"
|
||||||
|
ircjoin: "IRC Channels on <a href=\"http://webchat.freenode.net/?channels=bitcoin&uio=d4\">FreeNode</a>."
|
||||||
chanbitcoin: "(General Bitcoin-related)"
|
chanbitcoin: "(General Bitcoin-related)"
|
||||||
chandev: "(Development and technical)"
|
chandev: "(Development and technical)"
|
||||||
chanotc: "(Over The Counter exchange)"
|
chanotc: "(Over The Counter exchange)"
|
||||||
chanmarket: "(Live quotes from markets)"
|
chanmarket: "(Live quotes from markets)"
|
||||||
chanmining: "(Bitcoin mining related)"
|
chanmining: "(Bitcoin mining related)"
|
||||||
linkgoogle: "<a href=\"https://plus.google.com/communities/115591368588047305300\">Google+ Bitcoin community</a>"
|
social: "Social networks"
|
||||||
linktwitter: "<a href=\"http://twitter.com/#!/search/bitcoin\">Twitter Search</a>"
|
linkgoogle: "<a href=\"https://plus.google.com/communities/115591368588047305300\">Google+ Bitcoin Community</a>"
|
||||||
|
linktwitter: "Twitter Search"
|
||||||
facebook: "<a href=\"https://www.facebook.com/pages/Bitcoin-P2P-Cryptocurrency/134466763256650\">Facebook Page</a>"
|
facebook: "<a href=\"https://www.facebook.com/pages/Bitcoin-P2P-Cryptocurrency/134466763256650\">Facebook Page</a>"
|
||||||
reddit: "<a href=\"http://www.reddit.com/r/Bitcoin/\">Reddit's Bitcoin community</a>"
|
meetups: "Meetups"
|
||||||
linkmeetup: "<a href=\"http://bitcoin.meetup.com/\">Bitcoin Meetup Groups</a>"
|
meetupevents: "Bitcoin Conferences And Events"
|
||||||
|
meetupgroup: "Bitcoin Meetup Groups"
|
||||||
|
meetupbitcointalk: "Bitcoin Meetups On BitcoinTalk"
|
||||||
|
meetupwiki: "Bitcoin Meetups On The Wiki"
|
||||||
|
wikiportal: "Visit the <a href=\"https://en.bitcoin.it/wiki/Bitcoin:Community_portal\">Community portal</a> on the wiki."
|
||||||
choose-your-wallet:
|
choose-your-wallet:
|
||||||
title: "Choose your wallet - Bitcoin"
|
title: "Choose your wallet - Bitcoin"
|
||||||
pagetitle: "Choose your wallet"
|
pagetitle: "Choose your Bitcoin wallet"
|
||||||
summary: "Your Bitcoin wallet is what allows you to transact with the world. It gives you ownership of Bitcoin <i>addresses</i> that you can use to receive coins from other users and then lets you send those coins onwards. Just like email, you can receive bitcoins when you are offline, and all wallets are compatible with each other. Before you start with Bitcoin, <b>be sure to read <a href=\"#you-need-to-know#\">what you need to know</a></b> first."
|
summary: "Your Bitcoin wallet is what allows you to transact with the world. It gives you ownership of Bitcoin <i>addresses</i> that you can use to receive coins from other users and then lets you send those coins onwards. Just like email, you can receive bitcoins when you are offline, and all wallets are compatible with each other. Before you start with Bitcoin, <b>be sure to read <a href=\"#you-need-to-know#\">what you need to know</a></b> first."
|
||||||
getstarted: "Get started fast and easy"
|
getstarted: "Get started fast and easy"
|
||||||
getstartedsum: "If you are new to Bitcoin, these wallets are a good place to begin."
|
getstartedsum: "If you are new to Bitcoin, these wallets are a good place to begin."
|
||||||
|
@ -149,6 +160,7 @@ en:
|
||||||
development:
|
development:
|
||||||
title: "Development - Bitcoin"
|
title: "Development - Bitcoin"
|
||||||
pagetitle: "Bitcoin development"
|
pagetitle: "Bitcoin development"
|
||||||
|
summary: "Find more information about current specification, software and developers."
|
||||||
spec: "Specification"
|
spec: "Specification"
|
||||||
spectxt: "If you are interested in learning more about the technical details of Bitcoin, it is recommended you start with these documents."
|
spectxt: "If you are interested in learning more about the technical details of Bitcoin, it is recommended you start with these documents."
|
||||||
speclink1: "<a href=\"/bitcoin.pdf\">Bitcoin: A Peer-to-Peer Electronic Cash System</a>"
|
speclink1: "<a href=\"/bitcoin.pdf\">Bitcoin: A Peer-to-Peer Electronic Cash System</a>"
|
||||||
|
@ -166,6 +178,8 @@ en:
|
||||||
title: "Download - Bitcoin"
|
title: "Download - Bitcoin"
|
||||||
pagetitle: "Download Bitcoin-Qt"
|
pagetitle: "Download Bitcoin-Qt"
|
||||||
latestversion: "Latest version : "
|
latestversion: "Latest version : "
|
||||||
|
download: "Download Bitcoin-Qt"
|
||||||
|
downloados: "Or choose your operating system"
|
||||||
downloadwinzip: "Download for Windows (zip)"
|
downloadwinzip: "Download for Windows (zip)"
|
||||||
downloadwinexe: "Download for Windows (exe)"
|
downloadwinexe: "Download for Windows (exe)"
|
||||||
downloadubu: "Download for Ubuntu (PPA)"
|
downloadubu: "Download for Ubuntu (PPA)"
|
||||||
|
@ -182,15 +196,26 @@ en:
|
||||||
meetupbitcointalk: "<a href=\"https://bitcointalk.org/index.php?board=86.0\">Bitcoin meetups on BitcoinTalk</a>"
|
meetupbitcointalk: "<a href=\"https://bitcointalk.org/index.php?board=86.0\">Bitcoin meetups on BitcoinTalk</a>"
|
||||||
meetupwiki: "<a href=\"https://en.bitcoin.it/wiki/Meetups\">Bitcoin meetups on the Wiki</a>"
|
meetupwiki: "<a href=\"https://en.bitcoin.it/wiki/Meetups\">Bitcoin meetups on the Wiki</a>"
|
||||||
meetupgroup: "<a href=\"http://bitcoin.meetup.com/\">Bitcoin meetup groups</a>"
|
meetupgroup: "<a href=\"http://bitcoin.meetup.com/\">Bitcoin meetup groups</a>"
|
||||||
foundation:
|
getting-started:
|
||||||
title: "Bitcoin Foundation - Bitcoin"
|
title: "Getting started - Bitcoin"
|
||||||
pagetitle: "Bitcoin Foundation"
|
pagetitle: "Getting started with Bitcoin"
|
||||||
mission: "Bitcoin Foundation standardizes, protects, and promotes the use of Bitcoin cryptographic money for the benefit of users worldwide."
|
pagedesc: "Using Bitcoin to pay and get paid anywhere is easy. No rocket science involved."
|
||||||
visit: "Visit Bitcoin Foundation Website"
|
inform: "Inform yourself"
|
||||||
|
informtxt: "Bitcoin is different than what you know and use every day. Before you start using Bitcoin, there are a few things that you need to know in order to use it securely and avoid common pitfalls."
|
||||||
|
informbut: "Read more"
|
||||||
|
choose: "Choose your wallet"
|
||||||
|
choosetxt: "You can bring a Bitcoin wallet in your everyday life with your mobile or you can have a wallet only for online payments on your computer. In any case, choosing your wallet can be done in a minute."
|
||||||
|
choosebut: "Choose your wallet"
|
||||||
|
get: "Get bitcoins"
|
||||||
|
gettxt: "You can get bitcoins by accepting them as a payment for goods and services or by buying them from a friend or someone near you. You can also buy them directly from an exchange with your bank account."
|
||||||
|
getbut: "Find an exchange"
|
||||||
|
spend: "Spend bitcoins"
|
||||||
|
spendtxt: "There is a growing number of services and merchants accepting Bitcoin all over the world. You can use Bitcoin to pay them and rate your experience to help honest businesses to gain more visibility."
|
||||||
|
spendbut: "Find merchants"
|
||||||
how-it-works:
|
how-it-works:
|
||||||
title: "How does Bitcoin work? - Bitcoin"
|
title: "How does Bitcoin work? - Bitcoin"
|
||||||
pagetitle: "How does Bitcoin work?"
|
pagetitle: "How does Bitcoin work?"
|
||||||
intro: "OK, this is a question that often causes confusion. Here's a quick explanation!"
|
intro: "This is a question that often causes confusion. Here's a quick explanation!"
|
||||||
basics: "The basics for a new user"
|
basics: "The basics for a new user"
|
||||||
basicstxt1: "As a new user, you only need to <a href=\"#choose-your-wallet#\">choose a wallet</a> that you will install on your computer or on your mobile phone. Once you have your wallet installed, it will generate your first Bitcoin address and you can create more whenever you need one. You can disclose one of your Bitcoin addresses to your friends so that they can pay you or vice versa, you can pay your friends if they give you their addresses. In fact, this is pretty similar to how email works. So all that is left to do at this point is to get some bitcoins and to <a href=\"#secure-your-wallet#\">keep them safe</a>. In order to start using Bitcoin, you are not required to understand the technical details."
|
basicstxt1: "As a new user, you only need to <a href=\"#choose-your-wallet#\">choose a wallet</a> that you will install on your computer or on your mobile phone. Once you have your wallet installed, it will generate your first Bitcoin address and you can create more whenever you need one. You can disclose one of your Bitcoin addresses to your friends so that they can pay you or vice versa, you can pay your friends if they give you their addresses. In fact, this is pretty similar to how email works. So all that is left to do at this point is to get some bitcoins and to <a href=\"#secure-your-wallet#\">keep them safe</a>. In order to start using Bitcoin, you are not required to understand the technical details."
|
||||||
basicstxt2: "However, if you want to know more, keep reading!"
|
basicstxt2: "However, if you want to know more, keep reading!"
|
||||||
|
@ -203,15 +228,16 @@ en:
|
||||||
readmore: "Going down the rabbit hole"
|
readmore: "Going down the rabbit hole"
|
||||||
readmoretxt: "This is only a very short and concise summary of the system. If you want to get into the details, you can <a href=\"/bitcoin.pdf\">read the original paper</a> that describes the system's design, and explore the <a href=\"https://en.bitcoin.it/wiki/Main_Page\">Bitcoin wiki</a>."
|
readmoretxt: "This is only a very short and concise summary of the system. If you want to get into the details, you can <a href=\"/bitcoin.pdf\">read the original paper</a> that describes the system's design, and explore the <a href=\"https://en.bitcoin.it/wiki/Main_Page\">Bitcoin wiki</a>."
|
||||||
index:
|
index:
|
||||||
title: "Bitcoin - Open source P2P digital currency"
|
title: "Bitcoin - Open source P2P money"
|
||||||
pagetitle: "An open source P2P digital currency"
|
listintro: "Bitcoin is an innovative payment network and a new kind of money."
|
||||||
listintro: "Bitcoin is a digital currency, a protocol, and a software that enables"
|
list1: "Instant peer-to-peer<br>transactions"
|
||||||
list1: "Instant peer-to-peer transactions"
|
list2: "Worldwide<br>payments"
|
||||||
list2: "Worldwide payments"
|
list3: "Zero or low<br>processing fees"
|
||||||
list3: "Almost no processing fees"
|
desc: "Bitcoin uses peer-to-peer technology to operate with no central authority or banks; managing transactions and the issuing of bitcoins is carried out collectively by the network. <b>Bitcoin is open-source; its design is public, nobody owns or controls Bitcoin and everyone can take part</b>. Through many of its unique properties, Bitcoin allows exciting uses that could not be covered by any previous payment system."
|
||||||
list4: "And much more"
|
overview: "Or get a quick overview for"
|
||||||
desc: "Bitcoin uses peer-to-peer technology to operate with no central authority; managing transactions and the issuing of bitcoins is carried out <b>collectively by the network</b>. Through many of its unique properties, Bitcoin allows exciting uses that could not be covered by any previous payment systems."
|
individuals: "Individuals"
|
||||||
license: "The software is a community-driven, <a href=\"http://www.fsf.org/about/what-is-free-software\">free, open-source</a> project released under the <a href=\"http://creativecommons.org/licenses/MIT/\">MIT license</a>."
|
businesses: "Businesses"
|
||||||
|
developers: "Developers"
|
||||||
innovation:
|
innovation:
|
||||||
title: "Innovation - Bitcoin"
|
title: "Innovation - Bitcoin"
|
||||||
pagetitle: "Why Bitcoin is changing the world"
|
pagetitle: "Why Bitcoin is changing the world"
|
||||||
|
@ -233,28 +259,22 @@ en:
|
||||||
resources:
|
resources:
|
||||||
title: "Resources - Bitcoin"
|
title: "Resources - Bitcoin"
|
||||||
pagetitle: "Bitcoin resources"
|
pagetitle: "Bitcoin resources"
|
||||||
linkweusecoins: "<a href=\"http://www.weusecoins.com\">We Use Coins. Start here!</a>"
|
pagedesc: "Find useful websites and resources about Bitcoin."
|
||||||
linkwallets: "<a href=\"#choose-your-wallet#\">Bitcoin wallets</a>"
|
useful: "Useful places"
|
||||||
linkwiki: "<a href=\"https://en.bitcoin.it/wiki/Main_Page\">Bitcoin Wiki</a>"
|
linkwiki: "<a href=\"https://en.bitcoin.it/\">Bitcoin Wiki</a>"
|
||||||
linkwikifaq: "<a href=\"https://bitcoin.it/wiki/FAQ\">FAQ</a>"
|
directories: "Directories"
|
||||||
linkwikisites: "<a href=\"https://bitcoin.it/wiki/Trade\">Sites That Accept Bitcoin</a>"
|
linkwallets: "Wallets"
|
||||||
linkwikimerchant: "<a href=\"https://en.bitcoin.it/wiki/Merchant_Howto\">Merchant How-to</a>"
|
linkmerchants: "Merchants"
|
||||||
linkcharts: "Bitcoin Charts"
|
linkexchanges: "Exchanges"
|
||||||
linkbitcoincharts: "<a href=\"http://bitcoincharts.com/\">Bitcoin Charts - Markets</a>"
|
linkmerchantstools: "Merchant tools"
|
||||||
linkblockchaininfo: "<a href=\"http://blockchain.info/charts\">Blockchain.info - Stats and graphics</a>"
|
charts: "Charts and statistics"
|
||||||
linknews: "Bitcoin News"
|
news: "News"
|
||||||
linkbitcoinmagazine: "<a href=\"http://bitcoinmagazine.com/\">Bitcoin Magazine</a>"
|
|
||||||
linkbitcoinnews: "<a href=\"http://www.bitcoinnews.com/\">Bitcoin News</a>"
|
|
||||||
linkforumpress: "<a href=\"https://bitcointalk.org/index.php?board=77.0\">Bitcoin Forum / Press</a>"
|
|
||||||
linkspec: "Bitcoin Specification"
|
|
||||||
linkpdf: "<a href=\"/bitcoin.pdf\">Bitcoin: A Peer-to-Peer Electronic Cash System</a>"
|
|
||||||
linkprotocol: "<a href=\"https://en.bitcoin.it/wiki/Protocol_rules\">Protocol rules</a>"
|
|
||||||
secure-your-wallet:
|
secure-your-wallet:
|
||||||
title: "Securing your wallet - Bitcoin"
|
title: "Securing your wallet - Bitcoin"
|
||||||
pagetitle: "Securing your wallet"
|
pagetitle: "Securing your wallet"
|
||||||
summary: "Like in real life, your wallet must be secured. Bitcoin allows the transfer of value worldwide easier than ever. Such great features also come with great security concerns. At the same time, Bitcoin can provide very high levels of security if used correctly. <b>Always remember that it is your responsibility to adopt good practices in order to protect your money</b>. Here are some things you should consider."
|
summary: "Like in real life, your wallet must be secured. Bitcoin makes it possible to transfer value anywhere in a very easy way and it allows you to be in control of your money. Such great features also come with great security concerns. At the same time, Bitcoin can provide very high levels of security if used correctly. <b>Always remember that it is your responsibility to adopt good practices in order to protect your money</b>."
|
||||||
online: "Be careful with online wallets"
|
online: "Be careful with online wallets and exchanges"
|
||||||
onlinetxt: "Online wallets look like online banks. You are trusting someone to store and protect your bitcoins while you have to remember your password. However, you should always choose such services carefully. As of today, no online wallet provides enough insurance and security to be used to store value like a bank. Using security features like two-factor authentication can also increase the security of your acccounts."
|
onlinetxt: "Online wallets and exchanges look like online banks. However, you should always choose such services carefully. As of today, these services generally don't provide enough insurance and security to be used to store your money like a bank. Using security features like two-factor authentication can help to increase the security of your acccounts."
|
||||||
backup: "Backup your wallet"
|
backup: "Backup your wallet"
|
||||||
backuptxt: "Bitcoin services and software allow you to backup your wallet. Stored in a safe place, a backup can protect you against computer failures and many human mistakes."
|
backuptxt: "Bitcoin services and software allow you to backup your wallet. Stored in a safe place, a backup can protect you against computer failures and many human mistakes."
|
||||||
backupwhole: "Backup your entire wallet"
|
backupwhole: "Backup your entire wallet"
|
||||||
|
@ -307,15 +327,17 @@ en:
|
||||||
develop: "Development"
|
develop: "Development"
|
||||||
developtxt: "Bitcoin is open-source. So if you are a developer, you can use your super-powers to do good and <a href=\"#development#\">improve Bitcoin</a>. Or you can build amazing new services or software that can use Bitcoin."
|
developtxt: "Bitcoin is open-source. So if you are a developer, you can use your super-powers to do good and <a href=\"#development#\">improve Bitcoin</a>. Or you can build amazing new services or software that can use Bitcoin."
|
||||||
donation: "Donation"
|
donation: "Donation"
|
||||||
donationtxt: "The easiest way to help is to <a href=\"https://bitcoinfoundation.org/donate\">donate</a> a few bitcoins or to join the Bitcoin Foundation. The Foundation funds the salary for the maintainers of the core Bitcoin software, organizes conferences, and provides other important resources."
|
donationtxt: "The easiest way to help is to <a href=\"https://bitcoinfoundation.org/donate\">donate</a> a few bitcoins to the Bitcoin Foundation. Or you can help funding any project related to Bitcoin that you believe will be helpful in the future."
|
||||||
|
foundation: "Join the Foundation"
|
||||||
|
foundationtxt: "The <a href=\"https://bitcoinfoundation.org/\">Bitcoin Foundation</a> is one of the largest organizations dedicated to standardize, protect and promote Bitcoin. It funds the salary for Bitcoin software maintainers, organizes conferences, and provides many important resources."
|
||||||
spread: "Spread"
|
spread: "Spread"
|
||||||
spreadtxt: "Speak about Bitcoin to interested people. Write about it on your blog. Tell your favorite shops you would like to pay with Bitcoin. Or be creative and make yourself a nice Bitcoin T-shirt."
|
spreadtxt: "Speak about Bitcoin to interested people. Write about it on your blog. Tell your favorite shops you would like to pay with Bitcoin. Or be creative and make yourself a nice Bitcoin T-shirt."
|
||||||
wiki: "Wiki"
|
wiki: "Wiki"
|
||||||
wikitxt: "The <a href=\"http://en.bitcoin.it/\">Bitcoin wiki</a> is full of useful and detailed information and we are constantly improving the information it contains - just like Wikipedia. You can help keep the wiki accurate and up-to-date."
|
wikitxt: "The <a href=\"http://en.bitcoin.it/\">Bitcoin wiki</a> is full of useful and detailed information and we are constantly improving the information it contains - just like Wikipedia. You can help keep the wiki accurate and up-to-date."
|
||||||
translate: "Translate"
|
translate: "Translate"
|
||||||
translatetxt: "You can help to increase Bitcoin availability by translating or improving translations inside important parts of the Bitcoin ecosystem. Just pick a project you would like to help."
|
translatetxt: "You can help to increase Bitcoin availability by translating or improving translations inside important parts of the Bitcoin ecosystem. Just pick a project you would like to help."
|
||||||
help: "Help"
|
help: "Meet the communities"
|
||||||
helptxt: "You can join Bitcoin <a href=\"#community#\">communities</a> to give help to new users. You can talk about Bitcoin with other people, and you can learn more about it every day."
|
helptxt: "You can join Bitcoin <a href=\"#community#\">communities</a> and talk with other Bitcoin enthusiasts. You can learn more about Bitcoin every day, give help to new users and get involved in interesting projects."
|
||||||
vocabulary:
|
vocabulary:
|
||||||
title: "Vocabulary - Bitcoin"
|
title: "Vocabulary - Bitcoin"
|
||||||
pagetitle: "Some Bitcoin words you might hear"
|
pagetitle: "Some Bitcoin words you might hear"
|
||||||
|
@ -352,9 +374,9 @@ en:
|
||||||
you-need-to-know:
|
you-need-to-know:
|
||||||
title: "Some things you need to know - Bitcoin"
|
title: "Some things you need to know - Bitcoin"
|
||||||
pagetitle: "Some things you need to know"
|
pagetitle: "Some things you need to know"
|
||||||
summary: "If you are about to explore Bitcoin, there are a few things you should know. Bitcoin does not let you send emails or take pictures; it lets you exchange money and value. As such, Bitcoin must be treated with the same care as your regular wallet, or even more in some cases!"
|
summary: "If you are about to explore Bitcoin, there are a few things you should know. Bitcoin lets you exchange money in a different way than with usual banks. As such, you should take time to inform yourself before using Bitcoin for any serious transaction. Bitcoin should be treated with the same care as your regular wallet, or even more in some cases!"
|
||||||
secure: "Securing your wallet"
|
secure: "Securing your wallet"
|
||||||
securetxt: "Like in real life, your wallet must be secured. Bitcoin allows the transfer of value worldwide easier than ever. Such great features also come with great security concerns. At the same time, Bitcoin can provide very high levels of security if used correctly. Always remember that it is your responsibility to adopt good practices in order to protect your money. <a href=\"#secure-your-wallet#\"><b>Read more about securing your wallet</b></a>."
|
securetxt: "Like in real life, your wallet must be secured. Bitcoin makes it possible to transfer value anywhere in a very easy way and it allows you to be in control of your money. Such great features also come with great security concerns. At the same time, Bitcoin can provide very high levels of security if used correctly. Always remember that it is your responsibility to adopt good practices in order to protect your money. <a href=\"#secure-your-wallet#\"><b>Read more about securing your wallet</b></a>."
|
||||||
volatile: "Bitcoin price is volatile"
|
volatile: "Bitcoin price is volatile"
|
||||||
volatiletxt: "The price of a bitcoin can unpredictably increase or decrease over a short period of time due to its young economy, novel nature, and sometimes illiquid markets. Consequently, keeping your savings in bitcoin is not recommended at this point. Bitcoin should be considered as a high risk asset, and you should never store money that you cannot afford to lose with Bitcoin. If you receive payments with Bitcoin, many service providers allow you to convert them instantly to your local currency."
|
volatiletxt: "The price of a bitcoin can unpredictably increase or decrease over a short period of time due to its young economy, novel nature, and sometimes illiquid markets. Consequently, keeping your savings in bitcoin is not recommended at this point. Bitcoin should be considered as a high risk asset, and you should never store money that you cannot afford to lose with Bitcoin. If you receive payments with Bitcoin, many service providers allow you to convert them instantly to your local currency."
|
||||||
irreversible: "Bitcoin payments are irreversible"
|
irreversible: "Bitcoin payments are irreversible"
|
||||||
|
@ -374,24 +396,25 @@ en:
|
||||||
blockchain: the Block chain
|
blockchain: the Block chain
|
||||||
blockchaintxt: (a shared public transaction log)
|
blockchaintxt: (a shared public transaction log)
|
||||||
layout:
|
layout:
|
||||||
menu-intro: Introduction
|
menu-about: About
|
||||||
menu-bitcoin-for-individuals: Individuals
|
menu-about-us: "About bitcoin.org"
|
||||||
menu-bitcoin-for-businesses: Businesses
|
menu-bitcoin-for-businesses: Businesses
|
||||||
menu-bitcoin-for-developers: Developers
|
menu-bitcoin-for-developers: Developers
|
||||||
menu-how-it-works: "How it works"
|
menu-bitcoin-for-individuals: Individuals
|
||||||
menu-resources: Resources
|
|
||||||
menu-vocabulary: Vocabulary
|
|
||||||
menu-community: Community
|
menu-community: Community
|
||||||
menu-development: Development
|
menu-development: Development
|
||||||
menu-events: Events
|
menu-events: Events
|
||||||
menu-innovation: Innovation
|
|
||||||
menu-foundation: Foundation
|
menu-foundation: Foundation
|
||||||
menu-about: About
|
menu-getting-started: "Getting started"
|
||||||
menu-about-us: "About bitcoin.org"
|
menu-how-it-works: "How it works"
|
||||||
button-wallet: "Choose your wallet"
|
menu-innovation: Innovation
|
||||||
button-know: "You need to know"
|
menu-intro: Introduction
|
||||||
button-support: "Support Bitcoin"
|
menu-resources: Resources
|
||||||
|
menu-support-bitcoin: Participate
|
||||||
|
menu-vocabulary: Vocabulary
|
||||||
|
menu-you-need-to-know: "You need to know"
|
||||||
footer: "© Bitcoin Project 2009–2013 Released under the <a href=\"http://creativecommons.org/licenses/MIT/\" target=\"_blank\">MIT license</a>"
|
footer: "© Bitcoin Project 2009–2013 Released under the <a href=\"http://creativecommons.org/licenses/MIT/\" target=\"_blank\">MIT license</a>"
|
||||||
|
getstarted: "Get started with Bitcoin"
|
||||||
url:
|
url:
|
||||||
about: about
|
about: about
|
||||||
about-us: about-us
|
about-us: about-us
|
||||||
|
@ -405,6 +428,7 @@ en:
|
||||||
download: download
|
download: download
|
||||||
events: events
|
events: events
|
||||||
foundation: foundation
|
foundation: foundation
|
||||||
|
getting-started: getting-started
|
||||||
how-it-works: how-it-works
|
how-it-works: how-it-works
|
||||||
innovation: innovation
|
innovation: innovation
|
||||||
resources: resources
|
resources: resources
|
||||||
|
|
|
@ -11,10 +11,6 @@ h1,h2{
|
||||||
h1,h2,h3{
|
h1,h2,h3{
|
||||||
text-align:right;
|
text-align:right;
|
||||||
}
|
}
|
||||||
h1 img,h2 img,h3 img{
|
|
||||||
margin-right:auto;
|
|
||||||
margin-left:5px;
|
|
||||||
}
|
|
||||||
ul{
|
ul{
|
||||||
padding-right:20px;
|
padding-right:20px;
|
||||||
padding-left:auto;
|
padding-left:auto;
|
||||||
|
@ -40,33 +36,25 @@ p{
|
||||||
#menusimple li a:link{
|
#menusimple li a:link{
|
||||||
font-family:'DroidNaskh', sans-serif;
|
font-family:'DroidNaskh', sans-serif;
|
||||||
}
|
}
|
||||||
#content{
|
|
||||||
padding:20px 30px 30px 265px;
|
|
||||||
}
|
|
||||||
#rightbox{
|
|
||||||
left:30px;
|
|
||||||
right:auto;
|
|
||||||
}
|
|
||||||
#footer{
|
#footer{
|
||||||
text-align:right;
|
text-align:right;
|
||||||
padding:20px 40px 20px 0px;
|
padding:20px 40px 20px 0px;
|
||||||
}
|
}
|
||||||
#rightbox{
|
#footer>div>a{
|
||||||
left:30px;
|
margin-right:0px;
|
||||||
right:auto;
|
margin-left:15px;
|
||||||
}
|
}
|
||||||
#choose img,
|
.titleicon{
|
||||||
#before img,
|
margin-right:auto;
|
||||||
#support img,
|
margin-left:5px;
|
||||||
#choose .ieimg,
|
|
||||||
#before .ieimg,
|
|
||||||
#support .ieimg{
|
|
||||||
margin-right:-40px;
|
|
||||||
margin-left:8px;
|
|
||||||
}
|
}
|
||||||
#choose>a:first-child,#before>a:first-child,#support>a:first-child{
|
h1 .rssicon{
|
||||||
text-align:right;
|
margin-left:0px;
|
||||||
padding:10px 48px 10px 8px;
|
margin-right:10px;
|
||||||
|
}
|
||||||
|
h2 .rssicon{
|
||||||
|
margin-left:0px;
|
||||||
|
margin-right:10px;
|
||||||
}
|
}
|
||||||
.previewrow>div{
|
.previewrow>div{
|
||||||
margin-right:auto;
|
margin-right:auto;
|
||||||
|
@ -78,7 +66,7 @@ p{
|
||||||
.previewrow>div.last{
|
.previewrow>div.last{
|
||||||
margin-left:0px;
|
margin-left:0px;
|
||||||
}
|
}
|
||||||
.previewrow>div>div>div>span{
|
.previewrow>div>div>div>span {
|
||||||
right:auto;
|
right:auto;
|
||||||
left:30px;
|
left:30px;
|
||||||
}
|
}
|
||||||
|
@ -121,23 +109,57 @@ p{
|
||||||
|
|
||||||
/* Deprecated styles (should be removed when translations are updated) */
|
/* Deprecated styles (should be removed when translations are updated) */
|
||||||
|
|
||||||
#menufor li a,
|
body.old #menufor li a,
|
||||||
#menufor li a:active,
|
body.old #menufor li a:active,
|
||||||
#menufor li a:visited,
|
body.old #menufor li a:visited,
|
||||||
#menufor li a:link{
|
body.old #menufor li a:link{
|
||||||
font-family:'DroidNaskh', sans-serif;
|
font-family:'DroidNaskh', sans-serif;
|
||||||
}
|
}
|
||||||
#menu li a,
|
body.old #menu li a,
|
||||||
#menu li a:active,
|
body.old #menu li a:active,
|
||||||
#menu li a:visited,
|
body.old #menu li a:visited,
|
||||||
#menu li a:link{
|
body.old #menu li a:link{
|
||||||
font-family:'DroidNaskh', sans-serif;
|
font-family:'DroidNaskh', sans-serif;
|
||||||
}
|
}
|
||||||
|
body.old h1,body.old h2{
|
||||||
|
font-family:'DroidNaskh', sans-serif;
|
||||||
|
}
|
||||||
|
body.old h1,body.old h2,body.old h3{
|
||||||
|
text-align:right;
|
||||||
|
}
|
||||||
|
body.old .summary{
|
||||||
|
text-align:right;
|
||||||
|
}
|
||||||
|
body.old #content{
|
||||||
|
padding:20px 30px 30px 265px;
|
||||||
|
}
|
||||||
|
body.old #rightbox{
|
||||||
|
left:30px;
|
||||||
|
right:auto;
|
||||||
|
}
|
||||||
|
body.old #choose img,
|
||||||
|
body.old #before img,
|
||||||
|
body.old #support img,
|
||||||
|
body.old #choose .ieimg,
|
||||||
|
body.old #before .ieimg,
|
||||||
|
body.old #support .ieimg{
|
||||||
|
margin-right:-40px;
|
||||||
|
margin-left:8px;
|
||||||
|
}
|
||||||
|
body.old #choose>a:first-child,
|
||||||
|
body.old #before>a:first-child,
|
||||||
|
body.old #support>a:first-child{
|
||||||
|
text-align:right;
|
||||||
|
padding:10px 48px 10px 8px;
|
||||||
|
}
|
||||||
|
|
||||||
/* Deprecated styles specific to mobiles (should be removed when translations are updated) */
|
/* Deprecated styles specific to mobiles (should be removed when translations are updated) */
|
||||||
|
|
||||||
@media handheld, only screen and (max-device-height: 37em), only screen and (max-device-width: 50em){
|
@media handheld, only screen and (max-device-height: 37em), only screen and (max-device-width: 50em){
|
||||||
#menufor{
|
body.old #menufor{
|
||||||
bottom:0px;
|
bottom:0px;
|
||||||
}
|
}
|
||||||
|
body.old #content{
|
||||||
|
padding:15px 10px 20px 10px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
202
css/ie.css
|
@ -2,21 +2,15 @@ body{
|
||||||
/*Allows to use :hover on any html tag using javascript*/
|
/*Allows to use :hover on any html tag using javascript*/
|
||||||
behavior:url("/css/csshover.htc");
|
behavior:url("/css/csshover.htc");
|
||||||
}
|
}
|
||||||
h1 .ieimg,
|
|
||||||
h2 .ieimg,
|
|
||||||
h3 .ieimg{
|
|
||||||
vertical-align:middle;
|
|
||||||
margin-right:5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#head div{
|
#head div{
|
||||||
width:expression(this.parentNode.id&&this.parentNode.id=='head'?'1000px':'');
|
width:expression(this.parentNode.id&&this.parentNode.id=='head'?'940px':'');
|
||||||
margin:expression(this.parentNode.id&&this.parentNode.id=='head'?'auto':'');
|
margin:expression(this.parentNode.id&&this.parentNode.id=='head'?'auto':'');
|
||||||
position:expression(this.parentNode.id&&this.parentNode.id=='head'?'relative':'');
|
position:expression(this.parentNode.id&&this.parentNode.id=='head'?'relative':'');
|
||||||
z-index:expression(this.parentNode.id&&this.parentNode.id=='head'?'100':'');
|
z-index:expression(this.parentNode.id&&this.parentNode.id=='head'?'100':'');
|
||||||
}
|
}
|
||||||
#body{
|
#body{
|
||||||
width:1000px;
|
width:940px;
|
||||||
}
|
}
|
||||||
#footer{
|
#footer{
|
||||||
width:800px;
|
width:800px;
|
||||||
|
@ -24,13 +18,6 @@ h3 .ieimg{
|
||||||
#footer div a{
|
#footer div a{
|
||||||
margin-right:expression(this.parentNode.nodeName=='DIV'?'15px':'');
|
margin-right:expression(this.parentNode.nodeName=='DIV'?'15px':'');
|
||||||
}
|
}
|
||||||
#content{
|
|
||||||
width:690px;
|
|
||||||
overflow:hidden;
|
|
||||||
}
|
|
||||||
#content.wide{
|
|
||||||
width:920px;
|
|
||||||
}
|
|
||||||
#lang{
|
#lang{
|
||||||
border-left:2px solid #f7f7f7;
|
border-left:2px solid #f7f7f7;
|
||||||
border-right:2px solid #f7f7f7;
|
border-right:2px solid #f7f7f7;
|
||||||
|
@ -61,15 +48,121 @@ h3 .ieimg{
|
||||||
color:#fff;
|
color:#fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
#choose a,#before a,#support a{
|
.titleicon{
|
||||||
font-family:sans-serif;
|
|
||||||
}
|
|
||||||
#choose .ieimg,
|
|
||||||
#before .ieimg,
|
|
||||||
#support .ieimg {
|
|
||||||
vertical-align:middle;
|
vertical-align:middle;
|
||||||
margin-right:8px;
|
margin-right:5px;
|
||||||
margin-left:-40px;
|
}
|
||||||
|
|
||||||
|
.mainlist div{
|
||||||
|
/*This one is also required for IE7*/
|
||||||
|
zoom:1;
|
||||||
|
display:inline;
|
||||||
|
width:250px;
|
||||||
|
}
|
||||||
|
.mainlist div div{
|
||||||
|
zoom:1;
|
||||||
|
display:inline;
|
||||||
|
line-height:1.5em;
|
||||||
|
text-align:left;
|
||||||
|
width:auto;
|
||||||
|
}
|
||||||
|
.mainlist div div{
|
||||||
|
text-align:left;
|
||||||
|
}
|
||||||
|
.mainlist div:first-child + div {
|
||||||
|
text-align:center;
|
||||||
|
}
|
||||||
|
.mainlist div:first-child + div + div {
|
||||||
|
text-align:right;
|
||||||
|
}
|
||||||
|
.mainlist .ieimg{
|
||||||
|
vertical-align:top;
|
||||||
|
position:relative;
|
||||||
|
top:4px;
|
||||||
|
margin-right:10px;
|
||||||
|
float:left;
|
||||||
|
height:48px;
|
||||||
|
width:48px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mainbutton a,
|
||||||
|
.mainbutton a:link,
|
||||||
|
.mainbutton a:visited,
|
||||||
|
.mainbutton a:active{
|
||||||
|
/*This one is also required for IE7*/
|
||||||
|
zoom:1;
|
||||||
|
display:inline;
|
||||||
|
}
|
||||||
|
.mainbutton a:hover,
|
||||||
|
.mainbutton a:link:hover,
|
||||||
|
.mainbutton a:visited:hover,
|
||||||
|
.mainbutton a:active:hover{
|
||||||
|
background-image:none;
|
||||||
|
color:#fff;
|
||||||
|
}
|
||||||
|
.mainbutton .ieimg{
|
||||||
|
margin-right:10px;
|
||||||
|
margin-left:-52px;
|
||||||
|
margin-bottom:-12px;
|
||||||
|
height:42px;
|
||||||
|
width:42px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.start div{
|
||||||
|
border-top:expression((this.parentNode.getElementsByTagName('DIV')[5]==this)?'1px solid #fad296':'');
|
||||||
|
}
|
||||||
|
.start div div{
|
||||||
|
/*This one is also required for IE7*/
|
||||||
|
zoom:1;
|
||||||
|
display:inline;
|
||||||
|
padding-top:25px;
|
||||||
|
padding-right:expression(this.parentNode.getElementsByTagName('DIV')[0]==this?'40px':'');
|
||||||
|
padding-left:expression(this.parentNode.getElementsByTagName('DIV')[2]==this?'40px':'');
|
||||||
|
border-left:expression(this.parentNode.getElementsByTagName('DIV')[2]==this?'1px solid #fad296':'');
|
||||||
|
}
|
||||||
|
.start div div div{
|
||||||
|
padding-top:0px;
|
||||||
|
}
|
||||||
|
.start>div>div:first-child+div{
|
||||||
|
/*This one is for IE7 only*/
|
||||||
|
border-top:0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.resources div{
|
||||||
|
border-top:expression((this.parentNode.getElementsByTagName('DIV')[3]==this)?'1px solid #e0e0e0':'');
|
||||||
|
}
|
||||||
|
.resources div div{
|
||||||
|
/*This one is also required for IE7*/
|
||||||
|
zoom:1;
|
||||||
|
display:inline;
|
||||||
|
padding-top:25px;
|
||||||
|
padding-right:expression(this.parentNode.getElementsByTagName('DIV')[0]==this?'40px':'');
|
||||||
|
padding-left:expression(this.parentNode.getElementsByTagName('DIV')[1]==this?'40px':'');
|
||||||
|
border-left:expression(this.parentNode.getElementsByTagName('DIV')[1]==this?'1px solid #e0e0e0':'');
|
||||||
|
}
|
||||||
|
.resources>div>div:first-child+div{
|
||||||
|
/*This one is for IE7 only*/
|
||||||
|
border-top:0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.downloadbox{
|
||||||
|
/*This one is also required for IE7*/
|
||||||
|
zoom:1;
|
||||||
|
display:inline;
|
||||||
|
}
|
||||||
|
.downloadbox p{
|
||||||
|
margin-top:expression(this.parentNode.getElementsByTagName('P')[0]==this?'0px':'20px');
|
||||||
|
margin-bottom:expression(this.parentNode.getElementsByTagName('P')[0]==this?'20px':'0px');
|
||||||
|
}
|
||||||
|
.downloadbox a{
|
||||||
|
/*This one is also required for IE7*/
|
||||||
|
zoom:1;
|
||||||
|
display:inline;
|
||||||
|
}
|
||||||
|
.downloadbox span{
|
||||||
|
/*This one is also required for IE7*/
|
||||||
|
zoom:1;
|
||||||
|
display:inline;
|
||||||
}
|
}
|
||||||
|
|
||||||
.alert-message a:hover,
|
.alert-message a:hover,
|
||||||
|
@ -255,13 +348,12 @@ h3 .ieimg{
|
||||||
border:1px solid #a04246;
|
border:1px solid #a04246;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.press-volunteer div div{
|
.press-volunteer div div{
|
||||||
width: 400px;
|
width: 400px;
|
||||||
height: 150px;
|
height: 150px;
|
||||||
display: inline;
|
display: inline;
|
||||||
zoom:1;
|
zoom:1;
|
||||||
margin-right: 30px;
|
margin-right: 20px;
|
||||||
margin-bottom: 30px;
|
margin-bottom: 30px;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
@ -292,7 +384,7 @@ h3 .ieimg{
|
||||||
vertical-align:top;
|
vertical-align:top;
|
||||||
text-align:left;
|
text-align:left;
|
||||||
margin-bottom:15px;
|
margin-bottom:15px;
|
||||||
margin-right:30px;
|
margin-right:20px;
|
||||||
}
|
}
|
||||||
.press-faq div a{
|
.press-faq div a{
|
||||||
display:inline;
|
display:inline;
|
||||||
|
@ -321,7 +413,7 @@ h3 .ieimg{
|
||||||
.press-materials div {
|
.press-materials div {
|
||||||
display:inline;
|
display:inline;
|
||||||
zoom:1;
|
zoom:1;
|
||||||
width:300px;
|
width:278px;
|
||||||
vertical-align:top;
|
vertical-align:top;
|
||||||
position:relative;
|
position:relative;
|
||||||
}
|
}
|
||||||
|
@ -360,32 +452,62 @@ h3 .ieimg{
|
||||||
|
|
||||||
/* Deprecated styles (should be removed when translations are updated) */
|
/* Deprecated styles (should be removed when translations are updated) */
|
||||||
|
|
||||||
#menu li{
|
body.old #menu li{
|
||||||
/*This one is also required for IE7*/
|
/*This one is also required for IE7*/
|
||||||
zoom:1;
|
zoom:1;
|
||||||
display:inline;
|
display:inline;
|
||||||
}
|
}
|
||||||
#menu li a,
|
body.old #menu li a,
|
||||||
#menu li a:active,
|
body.old #menu li a:active,
|
||||||
#menu li a:visited,
|
body.old #menu li a:visited,
|
||||||
#menu li a:link{
|
body.old #menu li a:link{
|
||||||
font-family:sans-serif;
|
font-family:sans-serif;
|
||||||
border:2px solid #f7f7f7;
|
border:2px solid #f7f7f7;
|
||||||
}
|
}
|
||||||
#menu li:hover a,
|
body.old #menu li:hover a,
|
||||||
#menu li.active a{
|
body.old #menu li.active a{
|
||||||
color: #000;
|
color: #000;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
border: 2px solid #ebebeb;
|
border: 2px solid #ebebeb;
|
||||||
}
|
}
|
||||||
|
|
||||||
#menufor li a,
|
body.old #menufor li a,
|
||||||
#menufor li a:active,
|
body.old #menufor li a:active,
|
||||||
#menufor li a:visited,
|
body.old #menufor li a:visited,
|
||||||
#menufor li a:link{
|
body.old #menufor li a:link{
|
||||||
font-family:sans-serif;
|
font-family:sans-serif;
|
||||||
}
|
}
|
||||||
#menufor li:hover a,
|
body.old #menufor li:hover a,
|
||||||
#menufor li.active a{
|
body.old #menufor li.active a{
|
||||||
color:#fff;
|
color:#fff;
|
||||||
}
|
}
|
||||||
|
body.old #choose a,
|
||||||
|
body.old #before a,
|
||||||
|
body.old #support a{
|
||||||
|
font-family:sans-serif;
|
||||||
|
}
|
||||||
|
body.old #choose .ieimg,
|
||||||
|
body.old #before .ieimg,
|
||||||
|
body.old #support .ieimg {
|
||||||
|
vertical-align:middle;
|
||||||
|
margin-right:8px;
|
||||||
|
margin-left:-40px;
|
||||||
|
}
|
||||||
|
body.old #content{
|
||||||
|
overflow:hidden;
|
||||||
|
width:690px;
|
||||||
|
}
|
||||||
|
body.old #content.wide{
|
||||||
|
width:920px;
|
||||||
|
}
|
||||||
|
body.old #head div{
|
||||||
|
width:expression(this.parentNode.id&&this.parentNode.id=='head'?'1000px':'');
|
||||||
|
}
|
||||||
|
body.old #body{
|
||||||
|
width:1000px;
|
||||||
|
}
|
||||||
|
body.old .downloadold span{
|
||||||
|
/*This one is also required for IE7*/
|
||||||
|
zoom:1;
|
||||||
|
display:inline;
|
||||||
|
}
|
||||||
|
|
|
@ -3,7 +3,6 @@ layout: base
|
||||||
lang: en
|
lang: en
|
||||||
id: press
|
id: press
|
||||||
title: "Bitcoin Press Center - Bitcoin"
|
title: "Bitcoin Press Center - Bitcoin"
|
||||||
mode: wide
|
|
||||||
|
|
||||||
dialogs:
|
dialogs:
|
||||||
title: "Bitcoin Press Center - Bitcoin"
|
title: "Bitcoin Press Center - Bitcoin"
|
||||||
|
@ -65,7 +64,7 @@ dialogs:
|
||||||
faqponzitxt1: "A Ponzi scheme is a fraudulent investment operation that pays returns to its investors from their own money, or the money paid by subsequent investors, instead of from profit earned by the individual or organization running the operation."
|
faqponzitxt1: "A Ponzi scheme is a fraudulent investment operation that pays returns to its investors from their own money, or the money paid by subsequent investors, instead of from profit earned by the individual or organization running the operation."
|
||||||
faqponzitxt2: "Bitcoin is an open-source software project with no central authority and consequently no one is in a position to make fraudulent representations about investment returns. Like other major currencies such as gold, United States dollars, Euros, Yen, etc. there is no guaranteed purchasing power and the exchange rate freely floats. This can lead to volatility where owners of bitcoins can make or lose value."
|
faqponzitxt2: "Bitcoin is an open-source software project with no central authority and consequently no one is in a position to make fraudulent representations about investment returns. Like other major currencies such as gold, United States dollars, Euros, Yen, etc. there is no guaranteed purchasing power and the exchange rate freely floats. This can lead to volatility where owners of bitcoins can make or lose value."
|
||||||
faqponzitxt3: "Bitcoin is an innovative currency and payment system and not a Ponzi scheme. However, since Bitcoin transactions are irreversible it can be attractive for a Ponzi scam operator, and there have been several notable Ponzi scams which have failed and did use Bitcoin."
|
faqponzitxt3: "Bitcoin is an innovative currency and payment system and not a Ponzi scheme. However, since Bitcoin transactions are irreversible it can be attractive for a Ponzi scam operator, and there have been several notable Ponzi scams which have failed and did use Bitcoin."
|
||||||
faqsatoshi: "Who is Satoshi Nakamoto, the creator of Bitcoin?"
|
faqsatoshi: "Who is Satoshi Nakamoto?"
|
||||||
faqsatoshitxt: "The creator of Bitcoin never revealed his real identity and simply left his invention to the world. Satoshi created the first Bitcoin implementation and remained active in the development for a few years before choosing to leave the project. Meanwhile, a strong community of developers, miners, users, and supporters have spontaneously emerged to continue the project."
|
faqsatoshitxt: "The creator of Bitcoin never revealed his real identity and simply left his invention to the world. Satoshi created the first Bitcoin implementation and remained active in the development for a few years before choosing to leave the project. Meanwhile, a strong community of developers, miners, users, and supporters have spontaneously emerged to continue the project."
|
||||||
faqworthless: "Can bitcoins become worthless?"
|
faqworthless: "Can bitcoins become worthless?"
|
||||||
faqworthlesstxt1: "Yes. There are thousands of currencies in the fiat currency graveyard as a result of hyperinflation, such as the German Mark, United States gold and silver certificates, Argentine Peso, and, more recently, the Zimbabwe Dollar. Unlike a physical currency, such as gold, Bitcoin is a completely virtual currency. While Bitcoin was designed to be censorship-resistant, to enable it to continue existing if there were to be some type of technological problem of significant severity, it is still possible, although more unlikely every day, that Bitcoin could stop working as intended. Then all bitcoins could become worthless."
|
faqworthlesstxt1: "Yes. There are thousands of currencies in the fiat currency graveyard as a result of hyperinflation, such as the German Mark, United States gold and silver certificates, Argentine Peso, and, more recently, the Zimbabwe Dollar. Unlike a physical currency, such as gold, Bitcoin is a completely virtual currency. While Bitcoin was designed to be censorship-resistant, to enable it to continue existing if there were to be some type of technological problem of significant severity, it is still possible, although more unlikely every day, that Bitcoin could stop working as intended. Then all bitcoins could become worthless."
|
||||||
|
|
|
@ -11,10 +11,6 @@ h1,h2{
|
||||||
h1,h2,h3{
|
h1,h2,h3{
|
||||||
text-align:right;
|
text-align:right;
|
||||||
}
|
}
|
||||||
h1 img,h2 img,h3 img{
|
|
||||||
margin-right:auto;
|
|
||||||
margin-left:5px;
|
|
||||||
}
|
|
||||||
ul{
|
ul{
|
||||||
padding-right:20px;
|
padding-right:20px;
|
||||||
padding-left:auto;
|
padding-left:auto;
|
||||||
|
@ -40,33 +36,25 @@ p{
|
||||||
#menusimple li a:link{
|
#menusimple li a:link{
|
||||||
font-family:'DroidNaskh', sans-serif;
|
font-family:'DroidNaskh', sans-serif;
|
||||||
}
|
}
|
||||||
#content{
|
|
||||||
padding:20px 30px 30px 265px;
|
|
||||||
}
|
|
||||||
#rightbox{
|
|
||||||
left:30px;
|
|
||||||
right:auto;
|
|
||||||
}
|
|
||||||
#footer{
|
#footer{
|
||||||
text-align:right;
|
text-align:right;
|
||||||
padding:20px 40px 20px 0px;
|
padding:20px 40px 20px 0px;
|
||||||
}
|
}
|
||||||
#rightbox{
|
#footer>div>a{
|
||||||
left:30px;
|
margin-right:0px;
|
||||||
right:auto;
|
margin-left:15px;
|
||||||
}
|
}
|
||||||
#choose img,
|
.titleicon{
|
||||||
#before img,
|
margin-right:auto;
|
||||||
#support img,
|
margin-left:5px;
|
||||||
#choose .ieimg,
|
|
||||||
#before .ieimg,
|
|
||||||
#support .ieimg{
|
|
||||||
margin-right:-40px;
|
|
||||||
margin-left:8px;
|
|
||||||
}
|
}
|
||||||
#choose>a:first-child,#before>a:first-child,#support>a:first-child{
|
h1 .rssicon{
|
||||||
text-align:right;
|
margin-left:0px;
|
||||||
padding:10px 48px 10px 8px;
|
margin-right:10px;
|
||||||
|
}
|
||||||
|
h2 .rssicon{
|
||||||
|
margin-left:0px;
|
||||||
|
margin-right:10px;
|
||||||
}
|
}
|
||||||
.previewrow>div{
|
.previewrow>div{
|
||||||
margin-right:auto;
|
margin-right:auto;
|
||||||
|
@ -78,7 +66,7 @@ p{
|
||||||
.previewrow>div.last{
|
.previewrow>div.last{
|
||||||
margin-left:0px;
|
margin-left:0px;
|
||||||
}
|
}
|
||||||
.previewrow>div>div>div>span{
|
.previewrow>div>div>div>span {
|
||||||
right:auto;
|
right:auto;
|
||||||
left:30px;
|
left:30px;
|
||||||
}
|
}
|
||||||
|
@ -121,23 +109,57 @@ p{
|
||||||
|
|
||||||
/* Deprecated styles (should be removed when translations are updated) */
|
/* Deprecated styles (should be removed when translations are updated) */
|
||||||
|
|
||||||
#menufor li a,
|
body.old #menufor li a,
|
||||||
#menufor li a:active,
|
body.old #menufor li a:active,
|
||||||
#menufor li a:visited,
|
body.old #menufor li a:visited,
|
||||||
#menufor li a:link{
|
body.old #menufor li a:link{
|
||||||
font-family:'DroidNaskh', sans-serif;
|
font-family:'DroidNaskh', sans-serif;
|
||||||
}
|
}
|
||||||
#menu li a,
|
body.old #menu li a,
|
||||||
#menu li a:active,
|
body.old #menu li a:active,
|
||||||
#menu li a:visited,
|
body.old #menu li a:visited,
|
||||||
#menu li a:link{
|
body.old #menu li a:link{
|
||||||
font-family:'DroidNaskh', sans-serif;
|
font-family:'DroidNaskh', sans-serif;
|
||||||
}
|
}
|
||||||
|
body.old h1,body.old h2{
|
||||||
|
font-family:'DroidNaskh', sans-serif;
|
||||||
|
}
|
||||||
|
body.old h1,body.old h2,body.old h3{
|
||||||
|
text-align:right;
|
||||||
|
}
|
||||||
|
body.old .summary{
|
||||||
|
text-align:right;
|
||||||
|
}
|
||||||
|
body.old #content{
|
||||||
|
padding:20px 30px 30px 265px;
|
||||||
|
}
|
||||||
|
body.old #rightbox{
|
||||||
|
left:30px;
|
||||||
|
right:auto;
|
||||||
|
}
|
||||||
|
body.old #choose img,
|
||||||
|
body.old #before img,
|
||||||
|
body.old #support img,
|
||||||
|
body.old #choose .ieimg,
|
||||||
|
body.old #before .ieimg,
|
||||||
|
body.old #support .ieimg{
|
||||||
|
margin-right:-40px;
|
||||||
|
margin-left:8px;
|
||||||
|
}
|
||||||
|
body.old #choose>a:first-child,
|
||||||
|
body.old #before>a:first-child,
|
||||||
|
body.old #support>a:first-child{
|
||||||
|
text-align:right;
|
||||||
|
padding:10px 48px 10px 8px;
|
||||||
|
}
|
||||||
|
|
||||||
/* Deprecated styles specific to mobiles (should be removed when translations are updated) */
|
/* Deprecated styles specific to mobiles (should be removed when translations are updated) */
|
||||||
|
|
||||||
@media handheld, only screen and (max-device-height: 37em), only screen and (max-device-width: 50em){
|
@media handheld, only screen and (max-device-height: 37em), only screen and (max-device-width: 50em){
|
||||||
#menufor{
|
body.old #menufor{
|
||||||
bottom:0px;
|
bottom:0px;
|
||||||
}
|
}
|
||||||
|
body.old #content{
|
||||||
|
padding:15px 10px 20px 10px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Before Width: | Height: | Size: 825 B After Width: | Height: | Size: 1.4 KiB |
|
@ -9,17 +9,30 @@
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
width="32px"
|
width="42"
|
||||||
height="32px"
|
height="42"
|
||||||
id="svg5494"
|
id="svg5494"
|
||||||
version="1.1"
|
version="1.1"
|
||||||
inkscape:version="0.48.3.1 r9886"
|
inkscape:version="0.48.4 r9939"
|
||||||
sodipodi:docname="icon-bitcoin.svg"
|
sodipodi:docname="but_bitcoin.svg"
|
||||||
inkscape:export-filename="/var/www/img/ico-bitcoin.png"
|
inkscape:export-filename="/var/www/img/ico-bitcoin.png"
|
||||||
inkscape:export-xdpi="90"
|
inkscape:export-xdpi="90"
|
||||||
inkscape:export-ydpi="90">
|
inkscape:export-ydpi="90">
|
||||||
<defs
|
<defs
|
||||||
id="defs5496" />
|
id="defs5496">
|
||||||
|
<filter
|
||||||
|
inkscape:collect="always"
|
||||||
|
id="filter3813"
|
||||||
|
x="-0.16729393"
|
||||||
|
width="1.3345879"
|
||||||
|
y="-0.12640011"
|
||||||
|
height="1.2528002">
|
||||||
|
<feGaussianBlur
|
||||||
|
inkscape:collect="always"
|
||||||
|
stdDeviation="1.8737393"
|
||||||
|
id="feGaussianBlur3815" />
|
||||||
|
</filter>
|
||||||
|
</defs>
|
||||||
<sodipodi:namedview
|
<sodipodi:namedview
|
||||||
id="base"
|
id="base"
|
||||||
pagecolor="#ffffff"
|
pagecolor="#ffffff"
|
||||||
|
@ -28,8 +41,8 @@
|
||||||
inkscape:pageopacity="0.0"
|
inkscape:pageopacity="0.0"
|
||||||
inkscape:pageshadow="2"
|
inkscape:pageshadow="2"
|
||||||
inkscape:zoom="15.836083"
|
inkscape:zoom="15.836083"
|
||||||
inkscape:cx="42.393869"
|
inkscape:cx="12.843655"
|
||||||
inkscape:cy="19.372589"
|
inkscape:cy="16.621856"
|
||||||
inkscape:current-layer="layer1"
|
inkscape:current-layer="layer1"
|
||||||
showgrid="true"
|
showgrid="true"
|
||||||
inkscape:grid-bbox="true"
|
inkscape:grid-bbox="true"
|
||||||
|
@ -47,18 +60,25 @@
|
||||||
<dc:format>image/svg+xml</dc:format>
|
<dc:format>image/svg+xml</dc:format>
|
||||||
<dc:type
|
<dc:type
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
<dc:title></dc:title>
|
<dc:title />
|
||||||
</cc:Work>
|
</cc:Work>
|
||||||
</rdf:RDF>
|
</rdf:RDF>
|
||||||
</metadata>
|
</metadata>
|
||||||
<g
|
<g
|
||||||
id="layer1"
|
id="layer1"
|
||||||
inkscape:label="Layer 1"
|
inkscape:label="Layer 1"
|
||||||
inkscape:groupmode="layer">
|
inkscape:groupmode="layer"
|
||||||
|
transform="translate(0,10)">
|
||||||
|
<path
|
||||||
|
style="opacity:0.6;fill:#000000;fill-opacity:1;filter:url(#filter3813)"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="M 31.900182,10.611703 C 32.459328,6.8728845 29.612487,4.8637886 25.720324,3.5230902 L 26.982595,-1.5408202 23.90047,-2.3091083 22.670975,2.6213566 C 21.859766,2.4192374 21.028268,2.2288234 20.200671,2.040361 l 1.237297,-4.9632411 -3.080172,-0.7682873 -1.263833,5.063129 C 16.423223,1.2190067 15.764969,1.0683927 15.125447,0.90919432 l 0.003,-0.0156067 -4.250729,-1.0613215 -0.820183,3.29204838 c 0,0 2.286914,0.5240282 2.238531,0.5568042 1.248612,0.3117635 1.473755,1.1377989 1.436296,1.7925415 l -1.437764,5.7689838 c 0.08585,0.02224 0.197047,0.05307 0.320349,0.103009 -0.103009,-0.02574 -0.212656,-0.05346 -0.32542,-0.08078 l -2.01569,8.08088 c -0.152992,0.379271 -0.5404524,0.94856 -1.4129213,0.732395 0.030825,0.04448 -2.2416521,-0.559146 -2.2416521,-0.559146 l -1.5295517,3.527725 4.0111721,1.000059 c 0.7456563,0.186904 1.478046,0.381999 2.19756,0.56695 l -1.274757,5.122049 3.079006,0.768287 1.263049,-5.067423 c 0.842034,0.227875 1.658316,0.438968 2.457428,0.637574 l -1.258759,5.04362 3.082516,0.768288 1.275926,-5.112293 c 5.257056,0.994208 9.210088,0.593091 10.873087,-4.160617 1.341091,-3.827781 -0.06633,-6.035876 -2.832014,-7.476073 2.013782,-0.464329 3.531627,-1.789423 3.936256,-4.525446 z m -7.042572,9.876146 c -0.953629,3.828173 -7.398035,1.758594 -9.488683,1.239249 l 1.69265,-6.785046 c 2.089476,0.520906 8.791023,1.553355 7.796033,5.545797 z m 0.952069,-9.931162 c -0.868566,3.482073 -6.233315,1.712552 -7.973573,1.278659 l 1.534236,-6.1541057 c 1.739867,0.4338938 7.34497,1.2435411 6.439337,4.8754467 z"
|
||||||
|
id="path167"
|
||||||
|
transform="matrix(0.97494932,0,0,0.97494932,1.6748239,-1.9231465)" />
|
||||||
<path
|
<path
|
||||||
style="fill:#ffffff"
|
style="fill:#ffffff"
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
d="M 27.081102,13.078581 C 27.552913,9.92374 25.150729,8.2284511 21.866495,7.0971606 L 22.931608,2.8241982 20.33089,2.1759115 19.293433,6.3362716 C 18.60893,6.165722 17.907306,6.0050494 17.208974,5.8460235 l 1.04404,-4.1880169 -2.599071,-0.6482861 -1.066431,4.272303 C 14.021537,5.1529591 13.466098,5.02587 12.926465,4.8915373 l 0.0025,-0.013169 L 9.3421705,3.982818 8.6500943,6.760671 c 0,0 1.9297147,0.4421785 1.8888887,0.4698352 1.053587,0.2630682 1.243564,0.9600825 1.211956,1.5125588 l -1.213195,4.867908 c 0.07244,0.01877 0.16627,0.04478 0.270313,0.08692 -0.08692,-0.02172 -0.179441,-0.04511 -0.274592,-0.06816 l -1.7008532,6.818702 c -0.1290645,0.320028 -0.4560063,0.800398 -1.1922015,0.617997 0.02601,0.03753 -1.8915215,-0.471811 -1.8915215,-0.471811 l -1.2906462,2.976718 3.3846546,0.843857 c 0.6291899,0.157711 1.2471857,0.322333 1.8543163,0.478396 l -1.0756484,4.32202 2.5980859,0.648286 1.06577,-4.275926 c 0.710514,0.192282 1.399298,0.370404 2.073594,0.537989 l -1.062149,4.255841 2.601048,0.648287 1.076635,-4.313788 c 4.43594,0.83892 7.771536,0.500454 9.174786,-3.510757 1.131621,-3.229908 -0.05597,-5.093114 -2.389673,-6.308362 1.699243,-0.391804 2.980011,-1.509927 3.32144,-3.818602 z m -5.942571,8.333559 c -0.804679,3.230239 -6.242513,1.483914 -8.006616,1.045687 l 1.42827,-5.725268 c 1.763114,0.439544 7.417925,1.310731 6.578346,4.679581 z m 0.803362,-8.379982 c -0.732902,2.938197 -5.259714,1.445063 -6.728155,1.078941 l 1.294599,-5.1928765 c 1.468111,0.3661225 6.197736,1.0493085 5.433556,4.1139355 z"
|
d="M 32.794757,6.4899949 C 33.339898,2.8448361 30.564372,0.88606944 26.76971,-0.42104325 L 28.00036,-5.3580998 24.995443,-6.1071417 23.79675,-1.3001881 C 23.005862,-1.497244 22.195194,-1.6828879 21.388328,-1.8666298 l 1.206302,-4.8389085 -3.003011,-0.749041 -1.232173,4.9362944 c -0.653938,-0.1491234 -1.295703,-0.2959644 -1.919203,-0.4511743 l 0.0028,-0.015218 -4.144246,-1.0347343 -0.799636,3.20957986 c 0,0 2.229624,0.51090069 2.182454,0.54285568 1.217334,0.30395417 1.436836,1.1092964 1.400315,1.74763766 l -1.401747,5.6244658 c 0.0837,0.021685 0.192112,0.051744 0.312324,0.1004308 -0.100434,-0.025097 -0.207327,-0.052119 -0.317268,-0.078756 l -1.965195,7.8784497 c -0.149159,0.369769 -0.526913,0.924797 -1.377527,0.714047 0.03006,0.04336 -2.1854968,-0.545137 -2.1854968,-0.545137 l -1.4912348,3.439351 3.9106886,0.975007 c 0.726977,0.182222 1.44102,0.372432 2.14251,0.552749 l -1.242823,4.993738 3.001876,0.749039 1.231407,-4.94048 c 0.820942,0.222166 1.616774,0.427972 2.395869,0.621603 l -1.227227,4.917273 3.005296,0.749042 1.243963,-4.984226 c 5.125365,0.969302 8.97937,0.578233 10.600709,-4.056391 1.307496,-3.731892 -0.06466,-5.884673 -2.761069,-7.288792 1.963335,-0.452698 3.443158,-1.7445965 3.837649,-4.412081 z m -6.866149,9.6287421 c -0.929739,3.732275 -7.21271,1.714539 -9.250985,1.208205 l 1.650248,-6.615076 c 2.037132,0.507857 8.570801,1.514443 7.600737,5.406871 z m 0.92822,-9.6823804 c -0.84681,3.394845 -6.077167,1.6696522 -7.773831,1.2466281 l 1.495802,-5.9999411 c 1.696281,0.4230247 7.160974,1.2123894 6.278029,4.753313 z"
|
||||||
id="path167" />
|
id="path167-0" />
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 5.3 KiB |
BIN
img/but_mac.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
137
img/but_mac.svg
Normal file
|
@ -0,0 +1,137 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="42"
|
||||||
|
height="42"
|
||||||
|
id="svg4964"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.48.4 r9939"
|
||||||
|
sodipodi:docname="dowbut_mac.svg">
|
||||||
|
<defs
|
||||||
|
id="defs4966">
|
||||||
|
<clipPath
|
||||||
|
id="clp12">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 45.315,71.927 12.92,0 0,15.867 -12.92,0 0,-15.867 z"
|
||||||
|
id="path184" />
|
||||||
|
</clipPath>
|
||||||
|
<clipPath
|
||||||
|
id="clp12-7">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 45.315,71.927 12.92,0 0,15.867 -12.92,0 0,-15.867 z"
|
||||||
|
id="path184-7" />
|
||||||
|
</clipPath>
|
||||||
|
<filter
|
||||||
|
inkscape:collect="always"
|
||||||
|
id="filter4945"
|
||||||
|
x="-0.16042192"
|
||||||
|
width="1.3208439"
|
||||||
|
y="-0.13062799"
|
||||||
|
height="1.261256"
|
||||||
|
color-interpolation-filters="sRGB">
|
||||||
|
<feGaussianBlur
|
||||||
|
inkscape:collect="always"
|
||||||
|
stdDeviation="47.368683"
|
||||||
|
id="feGaussianBlur4947" />
|
||||||
|
</filter>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="11.197802"
|
||||||
|
inkscape:cx="-0.37959222"
|
||||||
|
inkscape:cy="12.470484"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:grid-bbox="true"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:window-width="1680"
|
||||||
|
inkscape:window-height="1026"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="24"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata4969">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
id="layer1"
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
transform="translate(0,10)">
|
||||||
|
<g
|
||||||
|
transform="matrix(0.03989409,0,0,0.03989409,-36.502552,-72.72794)"
|
||||||
|
id="layer1-8-2"
|
||||||
|
style="opacity:0.6;fill:#000000;filter:url(#filter4945)">
|
||||||
|
<g
|
||||||
|
transform="translate(19.48863,19.49672)"
|
||||||
|
id="g25472-3"
|
||||||
|
style="fill:#000000">
|
||||||
|
<g
|
||||||
|
transform="matrix(54.85033,0,0,-54.85033,-1411.313,6454.729)"
|
||||||
|
style="fill:#000000;fill-rule:nonzero;stroke:none"
|
||||||
|
clip-path="url(#clp12-7)"
|
||||||
|
id="g186-4">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 56.105,79.364 c -0.018,2.008 1.64,2.972 1.715,3.019 -0.933,1.365 -2.385,1.552 -2.903,1.574 -1.235,0.125 -2.411,-0.727 -3.037,-0.727 -0.626,0 -1.594,0.709 -2.618,0.689 -1.348,-0.02 -2.589,-0.783 -3.283,-1.989 -1.399,-2.427 -0.357,-6.024 1.005,-7.994 0.667,-0.963 1.461,-2.048 2.505,-2.008 1.006,0.04 1.386,0.65 2.6,0.65 1.214,0 1.556,-0.65 2.619,-0.631 1.081,0.021 1.767,0.984 2.429,1.95 0.764,1.118 1.08,2.2 1.098,2.257 -0.024,0.01 -2.108,0.809 -2.13,3.21"
|
||||||
|
style="fill:#000000;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path188-7" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 1556.5087,1778.2074 c 30.3865,-36.8044 50.9002,-87.9802 45.2501,-138.9887 -43.7736,1.7571 -96.7556,29.1808 -128.1856,65.9852 -28.1373,32.5275 -52.8196,84.6335 -46.131,134.6035 48.8183,3.7847 98.675,-24.8497 129.0665,-61.6"
|
||||||
|
style="fill:#000000;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path190-0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(0.03989409,0,0,0.03989409,-36.460313,-74.76695)"
|
||||||
|
id="layer1-8"
|
||||||
|
style="fill:#ffffff">
|
||||||
|
<g
|
||||||
|
transform="translate(19.48863,19.49672)"
|
||||||
|
id="g25472"
|
||||||
|
style="fill:#ffffff">
|
||||||
|
<g
|
||||||
|
transform="matrix(54.85033,0,0,-54.85033,-1411.313,6454.729)"
|
||||||
|
style="fill:#ffffff;fill-rule:nonzero;stroke:none"
|
||||||
|
clip-path="url(#clp12)"
|
||||||
|
id="g186">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 56.105,79.364 c -0.018,2.008 1.64,2.972 1.715,3.019 -0.933,1.365 -2.385,1.552 -2.903,1.574 -1.235,0.125 -2.411,-0.727 -3.037,-0.727 -0.626,0 -1.594,0.709 -2.618,0.689 -1.348,-0.02 -2.589,-0.783 -3.283,-1.989 -1.399,-2.427 -0.357,-6.024 1.005,-7.994 0.667,-0.963 1.461,-2.048 2.505,-2.008 1.006,0.04 1.386,0.65 2.6,0.65 1.214,0 1.556,-0.65 2.619,-0.631 1.081,0.021 1.767,0.984 2.429,1.95 0.764,1.118 1.08,2.2 1.098,2.257 -0.024,0.01 -2.108,0.809 -2.13,3.21"
|
||||||
|
style="fill:#ffffff;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path188" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 1556.5087,1778.2074 c 30.3865,-36.8044 50.9002,-87.9802 45.2501,-138.9887 -43.7736,1.7571 -96.7556,29.1808 -128.1856,65.9852 -28.1373,32.5275 -52.8196,84.6335 -46.131,134.6035 48.8183,3.7847 98.675,-24.8497 129.0665,-61.6"
|
||||||
|
style="fill:#ffffff;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path190" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 5.3 KiB |
BIN
img/but_ubuntu.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
182
img/but_ubuntu.svg
Normal file
|
@ -0,0 +1,182 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="42"
|
||||||
|
height="42"
|
||||||
|
id="svg4894"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.48.4 r9939"
|
||||||
|
sodipodi:docname="dowbut_ubuntu.svg">
|
||||||
|
<defs
|
||||||
|
id="defs4896">
|
||||||
|
<filter
|
||||||
|
inkscape:collect="always"
|
||||||
|
id="filter5501"
|
||||||
|
x="-0.14643653"
|
||||||
|
width="1.2928731"
|
||||||
|
y="-0.14164322"
|
||||||
|
height="1.2832864">
|
||||||
|
<feGaussianBlur
|
||||||
|
inkscape:collect="always"
|
||||||
|
stdDeviation="1.6258307"
|
||||||
|
id="feGaussianBlur5503" />
|
||||||
|
</filter>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="11.197802"
|
||||||
|
inkscape:cx="22.119309"
|
||||||
|
inkscape:cy="13.159622"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:grid-bbox="true"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:window-width="1680"
|
||||||
|
inkscape:window-height="1026"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="24"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata4899">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
id="layer1"
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
transform="translate(0,10)">
|
||||||
|
<g
|
||||||
|
id="g4949-9"
|
||||||
|
style="opacity:0.6;fill:#000000;filter:url(#filter5501)"
|
||||||
|
transform="matrix(1.2349379,0,0,1.2349379,1.7891528,-8.1287733)">
|
||||||
|
<circle
|
||||||
|
sodipodi:ry="9.1239996"
|
||||||
|
sodipodi:rx="9.1239996"
|
||||||
|
sodipodi:cy="46.903999"
|
||||||
|
sodipodi:cx="9.1239996"
|
||||||
|
style="fill:#000000"
|
||||||
|
id="circle4-8"
|
||||||
|
transform="matrix(0.29372361,0,0,0.29372361,1.8465121,2.1615085)"
|
||||||
|
r="9.1239996"
|
||||||
|
cy="46.903999"
|
||||||
|
cx="9.1239996"
|
||||||
|
d="m 18.247999,46.903999 c 0,5.039046 -4.084954,9.124 -9.1239994,9.124 C 4.0849538,56.027999 0,51.943045 0,46.903999 0,41.864953 4.0849538,37.78 9.1239996,37.78 c 5.0390454,0 9.1239994,4.084953 9.1239994,9.123999 z" />
|
||||||
|
<circle
|
||||||
|
sodipodi:ry="9.1239996"
|
||||||
|
sodipodi:rx="9.1239996"
|
||||||
|
sodipodi:cy="84.667"
|
||||||
|
sodipodi:cx="74.547997"
|
||||||
|
style="fill:#000000"
|
||||||
|
id="circle6-9"
|
||||||
|
transform="matrix(0.29372361,0,0,0.29372361,1.8465121,2.1615085)"
|
||||||
|
r="9.1239996"
|
||||||
|
cy="84.667"
|
||||||
|
cx="74.547997"
|
||||||
|
d="m 83.671996,84.667 c 0,5.039046 -4.084954,9.123999 -9.123999,9.123999 -5.039046,0 -9.124,-4.084953 -9.124,-9.123999 0,-5.039046 4.084954,-9.124 9.124,-9.124 5.039045,0 9.123999,4.084954 9.123999,9.124 z" />
|
||||||
|
<path
|
||||||
|
style="fill:#000000"
|
||||||
|
id="path19-6"
|
||||||
|
d="m 17.337202,9.3069224 c 3.336994,0 6.105634,2.4778556 6.564135,5.6903086 l 4.591487,0 C 28.284281,12.472967 27.237743,10.120244 25.488032,8.2647915 24.367477,8.8354971 22.98962,8.8463641 21.819131,8.1708014 20.647762,7.4943553 19.968085,6.2947887 19.902878,5.0376511 19.071347,4.8437942 18.212205,4.74334 17.337203,4.74334 c -1.675399,0 -3.294404,0.3656853 -4.766842,1.0591674 l 2.298683,3.9814233 c 0.763386,-0.307235 1.596388,-0.4770073 2.468159,-0.4770073 l 0,0 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:#000000"
|
||||||
|
id="path21-9"
|
||||||
|
d="m 23.901632,16.876476 c -0.457328,3.213627 -3.226556,5.69295 -6.56443,5.69295 -0.87236,0 -1.705654,-0.169774 -2.46904,-0.477594 l -2.298974,3.981717 c 1.472141,0.693772 3.091733,1.059753 4.76772,1.059753 0.875592,0 1.735908,-0.101039 2.567733,-0.294895 0.06403,-1.25861 0.744001,-2.460234 1.916251,-3.136973 1.170783,-0.676152 2.549227,-0.665283 3.670077,-0.0934 1.748243,-1.85575 2.793605,-4.208183 3.001561,-6.731558 l -4.590898,0 0,0 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:#000000"
|
||||||
|
id="path10-8"
|
||||||
|
d="m 10.706098,15.938319 c 0,-2.112755 0.993079,-3.997574 2.536597,-5.212711 L 10.944601,6.744772 C 10.405618,7.121326 9.8957142,7.5475186 9.4207633,8.0221755 8.0907826,9.3521563 7.1370617,10.95794 6.6121778,12.71059 c 1.0574047,0.684963 1.7576424,1.873956 1.7576424,3.227729 0,1.353478 -0.7002377,2.542764 -1.7576424,3.227434 0.5248839,1.75265 1.4786048,3.358439 2.8085855,4.688415 0.4746574,0.474664 0.9839737,0.900267 1.5226637,1.277118 l 2.298386,-3.98113 c -1.543224,-1.215138 -2.535715,-3.099964 -2.535715,-5.211837 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<circle
|
||||||
|
sodipodi:ry="9.1239996"
|
||||||
|
sodipodi:rx="9.1239996"
|
||||||
|
sodipodi:cy="9.1260004"
|
||||||
|
sodipodi:cx="74.540001"
|
||||||
|
style="fill:#000000"
|
||||||
|
id="circle12-6"
|
||||||
|
transform="matrix(0.29372361,0,0,0.29372361,1.8465121,2.1615085)"
|
||||||
|
r="9.1239996"
|
||||||
|
cy="9.1260004"
|
||||||
|
cx="74.540001"
|
||||||
|
d="m 83.664001,9.1260004 c 0,5.0390456 -4.084954,9.1239996 -9.124,9.1239996 -5.039046,0 -9.124,-4.084954 -9.124,-9.1239996 0,-5.0390458 4.084954,-9.12399959 9.124,-9.12399959 5.039046,0 9.124,4.08495379 9.124,9.12399959 z" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g4949"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
transform="matrix(1.2349379,0,0,1.2349379,1.8394737,-9.9587784)">
|
||||||
|
<circle
|
||||||
|
sodipodi:ry="9.1239996"
|
||||||
|
sodipodi:rx="9.1239996"
|
||||||
|
sodipodi:cy="46.903999"
|
||||||
|
sodipodi:cx="9.1239996"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="circle4"
|
||||||
|
transform="matrix(0.29372361,0,0,0.29372361,1.8465121,2.1615085)"
|
||||||
|
r="9.1239996"
|
||||||
|
cy="46.903999"
|
||||||
|
cx="9.1239996"
|
||||||
|
d="m 18.247999,46.903999 c 0,5.039046 -4.084954,9.124 -9.1239994,9.124 C 4.0849538,56.027999 0,51.943045 0,46.903999 0,41.864953 4.0849538,37.78 9.1239996,37.78 c 5.0390454,0 9.1239994,4.084953 9.1239994,9.123999 z" />
|
||||||
|
<circle
|
||||||
|
sodipodi:ry="9.1239996"
|
||||||
|
sodipodi:rx="9.1239996"
|
||||||
|
sodipodi:cy="84.667"
|
||||||
|
sodipodi:cx="74.547997"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="circle6"
|
||||||
|
transform="matrix(0.29372361,0,0,0.29372361,1.8465121,2.1615085)"
|
||||||
|
r="9.1239996"
|
||||||
|
cy="84.667"
|
||||||
|
cx="74.547997"
|
||||||
|
d="m 83.671996,84.667 c 0,5.039046 -4.084954,9.123999 -9.123999,9.123999 -5.039046,0 -9.124,-4.084953 -9.124,-9.123999 0,-5.039046 4.084954,-9.124 9.124,-9.124 5.039045,0 9.123999,4.084954 9.123999,9.124 z" />
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path19"
|
||||||
|
d="m 17.337202,9.3069224 c 3.336994,0 6.105634,2.4778556 6.564135,5.6903086 l 4.591487,0 C 28.284281,12.472967 27.237743,10.120244 25.488032,8.2647915 24.367477,8.8354971 22.98962,8.8463641 21.819131,8.1708014 20.647762,7.4943553 19.968085,6.2947887 19.902878,5.0376511 19.071347,4.8437942 18.212205,4.74334 17.337203,4.74334 c -1.675399,0 -3.294404,0.3656853 -4.766842,1.0591674 l 2.298683,3.9814233 c 0.763386,-0.307235 1.596388,-0.4770073 2.468159,-0.4770073 l 0,0 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path21"
|
||||||
|
d="m 23.901632,16.876476 c -0.457328,3.213627 -3.226556,5.69295 -6.56443,5.69295 -0.87236,0 -1.705654,-0.169774 -2.46904,-0.477594 l -2.298974,3.981717 c 1.472141,0.693772 3.091733,1.059753 4.76772,1.059753 0.875592,0 1.735908,-0.101039 2.567733,-0.294895 0.06403,-1.25861 0.744001,-2.460234 1.916251,-3.136973 1.170783,-0.676152 2.549227,-0.665283 3.670077,-0.0934 1.748243,-1.85575 2.793605,-4.208183 3.001561,-6.731558 l -4.590898,0 0,0 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="path10"
|
||||||
|
d="m 10.706098,15.938319 c 0,-2.112755 0.993079,-3.997574 2.536597,-5.212711 L 10.944601,6.744772 C 10.405618,7.121326 9.8957142,7.5475186 9.4207633,8.0221755 8.0907826,9.3521563 7.1370617,10.95794 6.6121778,12.71059 c 1.0574047,0.684963 1.7576424,1.873956 1.7576424,3.227729 0,1.353478 -0.7002377,2.542764 -1.7576424,3.227434 0.5248839,1.75265 1.4786048,3.358439 2.8085855,4.688415 0.4746574,0.474664 0.9839737,0.900267 1.5226637,1.277118 l 2.298386,-3.98113 c -1.543224,-1.215138 -2.535715,-3.099964 -2.535715,-5.211837 z"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<circle
|
||||||
|
sodipodi:ry="9.1239996"
|
||||||
|
sodipodi:rx="9.1239996"
|
||||||
|
sodipodi:cy="9.1260004"
|
||||||
|
sodipodi:cx="74.540001"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
id="circle12"
|
||||||
|
transform="matrix(0.29372361,0,0,0.29372361,1.8465121,2.1615085)"
|
||||||
|
r="9.1239996"
|
||||||
|
cy="9.1260004"
|
||||||
|
cx="74.540001"
|
||||||
|
d="m 83.664001,9.1260004 c 0,5.0390456 -4.084954,9.1239996 -9.124,9.1239996 -5.039046,0 -9.124,-4.084954 -9.124,-9.1239996 0,-5.0390458 4.084954,-9.12399959 9.124,-9.12399959 5.039046,0 9.124,4.08495379 9.124,9.12399959 z" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 9 KiB |
BIN
img/but_windows.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
120
img/but_windows.svg
Normal file
|
@ -0,0 +1,120 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="42"
|
||||||
|
height="42"
|
||||||
|
id="svg4838"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.48.4 r9939"
|
||||||
|
sodipodi:docname="dowbut_windows.svg">
|
||||||
|
<defs
|
||||||
|
id="defs4840">
|
||||||
|
<filter
|
||||||
|
inkscape:collect="always"
|
||||||
|
id="filter4361"
|
||||||
|
x="-0.13552417"
|
||||||
|
width="1.2710483"
|
||||||
|
y="-0.15360673"
|
||||||
|
height="1.3072135">
|
||||||
|
<feGaussianBlur
|
||||||
|
inkscape:collect="always"
|
||||||
|
stdDeviation="1.9235664"
|
||||||
|
id="feGaussianBlur4363" />
|
||||||
|
</filter>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="15.836083"
|
||||||
|
inkscape:cx="13.818319"
|
||||||
|
inkscape:cy="23.023112"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:grid-bbox="true"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:window-width="1680"
|
||||||
|
inkscape:window-height="1026"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="24"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata4843">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
id="layer1"
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
transform="translate(0,10)">
|
||||||
|
<g
|
||||||
|
transform="matrix(1.0701265,0,0,1.0701265,-1.9135779,2.4052538)"
|
||||||
|
id="g3813-4"
|
||||||
|
style="opacity:0.6;filter:url(#filter4361)">
|
||||||
|
<path
|
||||||
|
id="path3443-2"
|
||||||
|
d="M 7.6492696,7.8858322 C 14.240602,5.1707947 17.430971,6.6190994 20.288294,8.5593731 L 16.988199,19.900154 c -2.867221,-1.927881 -5.985042,-3.51564 -12.60256,-0.77937 L 7.6110461,7.9021111 7.6492338,7.8858276 z"
|
||||||
|
style="fill:#000000"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path3665-1"
|
||||||
|
d="m 22.016911,9.6558573 c 2.865098,1.9275357 5.795681,3.3411517 12.530356,1.0380917 L 31.40397,21.629125 c -6.610443,2.734149 -9.78418,1.18639 -12.646446,-0.753886 L 22.016911,9.6558573 z"
|
||||||
|
style="fill:#000000"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path3838-0"
|
||||||
|
d="M 20.837596,6.5146823 C 19.113223,5.3527147 17.256836,4.2668461 14.620377,4.2473799 12.88149,4.2339575 10.810621,4.728731 8.1812363,5.8145984 L 11.4385,-5.4738012 c 6.613277,-2.7344954 9.7909,-1.184621 12.656363,0.7531758 L 20.837596,6.5146823 z"
|
||||||
|
style="fill:#000000"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path4024-1"
|
||||||
|
d="m 38.450112,-2.8054825 c -6.604079,2.72919603 -9.777805,1.1945281 -12.636539,-0.731587 L 22.555596,7.7608907 c 2.856613,1.9370876 6.308892,3.5259023 12.640793,0.6930095 l 3.253723,-11.2593827 z"
|
||||||
|
style="fill:#000000"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g3813"
|
||||||
|
transform="matrix(1.0701265,0,0,1.0701265,-1.0908332,0.56984294)"
|
||||||
|
style="fill:#ffffff">
|
||||||
|
<path
|
||||||
|
id="path3443"
|
||||||
|
d="M 7.6492696,7.8858322 C 14.240602,5.1707947 17.430971,6.6190994 20.288294,8.5593731 L 16.988199,19.900154 c -2.867221,-1.927881 -5.985042,-3.51564 -12.60256,-0.77937 L 7.6110461,7.9021111 7.6492338,7.8858276 z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path3665"
|
||||||
|
d="m 22.016911,9.6558573 c 2.865098,1.9275357 5.795681,3.3411517 12.530356,1.0380917 L 31.40397,21.629125 c -6.610443,2.734149 -9.78418,1.18639 -12.646446,-0.753886 L 22.016911,9.6558573 z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path3838"
|
||||||
|
d="M 20.837596,6.5146823 C 19.113223,5.3527147 17.256836,4.2668461 14.620377,4.2473799 12.88149,4.2339575 10.810621,4.728731 8.1812363,5.8145984 L 11.4385,-5.4738012 c 6.613277,-2.7344954 9.7909,-1.184621 12.656363,0.7531758 L 20.837596,6.5146823 z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
id="path4024"
|
||||||
|
d="m 38.450112,-2.8054825 c -6.604079,2.72919603 -9.777805,1.1945281 -12.636539,-0.731587 L 22.555596,7.7608907 c 2.856613,1.9370876 6.308892,3.5259023 12.640793,0.6930095 l 3.253723,-11.2593827 z"
|
||||||
|
style="fill:#ffffff"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 4.8 KiB |
BIN
img/ico_foundation.png
Normal file
After Width: | Height: | Size: 902 B |
96
img/ico_foundation.svg
Normal file
|
@ -0,0 +1,96 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="32"
|
||||||
|
height="32"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.48.4 r9939"
|
||||||
|
sodipodi:docname="ico_foundation.svg"
|
||||||
|
inkscape:export-filename="/media/X/bitcoin.org/current/img/ico_foundation.png"
|
||||||
|
inkscape:export-xdpi="90"
|
||||||
|
inkscape:export-ydpi="90">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="11.2"
|
||||||
|
inkscape:cx="-4.8438387"
|
||||||
|
inkscape:cy="19.493945"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="1680"
|
||||||
|
inkscape:window-height="1026"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="24"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Calque 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-1020.3622)">
|
||||||
|
<rect
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:6.08075952999999991;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||||
|
id="rect2985"
|
||||||
|
width="15.744824"
|
||||||
|
height="15.744824"
|
||||||
|
x="12.045151"
|
||||||
|
y="1024.5721"
|
||||||
|
ry="0" />
|
||||||
|
<path
|
||||||
|
sodipodi:type="arc"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2.23633099;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||||
|
id="path3763"
|
||||||
|
sodipodi:cx="22.232143"
|
||||||
|
sodipodi:cy="9.7678576"
|
||||||
|
sodipodi:rx="4.5535717"
|
||||||
|
sodipodi:ry="4.5535717"
|
||||||
|
d="m 26.785715,9.7678576 a 4.5535717,4.5535717 0 1 1 -9.107143,0 4.5535717,4.5535717 0 1 1 9.107143,0 z"
|
||||||
|
transform="matrix(1.600608,0,0,1.600608,-15.646706,1016.86)" />
|
||||||
|
<path
|
||||||
|
sodipodi:type="arc"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||||
|
id="path3765"
|
||||||
|
sodipodi:cx="9.2410717"
|
||||||
|
sodipodi:cy="24.633928"
|
||||||
|
sodipodi:rx="4.4196429"
|
||||||
|
sodipodi:ry="4.4196429"
|
||||||
|
d="m 13.660715,24.633928 a 4.4196429,4.4196429 0 1 1 -8.8392862,0 4.4196429,4.4196429 0 1 1 8.8392862,0 z"
|
||||||
|
transform="matrix(0.97487001,0,0,0.97487001,-2.4503431,1021.7967)" />
|
||||||
|
<rect
|
||||||
|
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="rect3771"
|
||||||
|
width="5.5908623"
|
||||||
|
height="5.5908623"
|
||||||
|
x="3.6219461"
|
||||||
|
y="1042.9623"
|
||||||
|
rx="0"
|
||||||
|
ry="2.4356229" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.4 KiB |
BIN
img/main_ico_instant.png
Normal file
After Width: | Height: | Size: 1 KiB |
78
img/main_ico_instant.svg
Normal file
|
@ -0,0 +1,78 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="48"
|
||||||
|
height="48"
|
||||||
|
id="svg2985"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.48.4 r9939"
|
||||||
|
sodipodi:docname="main_ico_instant.svg"
|
||||||
|
inkscape:export-filename="/media/X/bitcoin.org/current/img/main_ico_instant.png"
|
||||||
|
inkscape:export-xdpi="90"
|
||||||
|
inkscape:export-ydpi="90">
|
||||||
|
<defs
|
||||||
|
id="defs2987" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="5.598901"
|
||||||
|
inkscape:cx="-4.1214162"
|
||||||
|
inkscape:cy="36.344903"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:grid-bbox="true"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:window-width="1017"
|
||||||
|
inkscape:window-height="668"
|
||||||
|
inkscape:window-x="159"
|
||||||
|
inkscape:window-y="114"
|
||||||
|
inkscape:window-maximized="0" />
|
||||||
|
<metadata
|
||||||
|
id="metadata2990">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
id="layer1"
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
transform="translate(0,16)">
|
||||||
|
<path
|
||||||
|
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.29912865px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
|
||||||
|
d="m 3.5993437,-2.6383503 20.0218613,-0.235374 c 0,0 0.136174,0.3193043 0.166585,4.2481911 l 9.376203,-6.3159624 -9.626807,-6.7759634 0.103161,4.3374114 c 2.204037,0.06523 -20.0716489,0.2724795 -20.0716489,0.2724795 z"
|
||||||
|
id="path2992"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccccccc" />
|
||||||
|
<path
|
||||||
|
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.29912865px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
|
||||||
|
d="m 10.257958,10.109367 25.65622,-0.2353728 c 0,0 0.136174,0.3193028 0.166584,4.2481888 l 9.376202,-6.3159601 -9.626805,-6.7759636 0.103164,4.3374099 c 2.204036,0.065218 -25.706006,0.272479 -25.706006,0.272479 z"
|
||||||
|
id="path2992-2"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccccccc" />
|
||||||
|
<path
|
||||||
|
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.29912865px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
|
||||||
|
d="M 32.091674,23.444014 12.069812,23.208639 c 0,0 -0.136173,0.319304 -0.166585,4.248191 L 2.5270246,21.140868 12.15383,14.364904 12.05067,18.702316 c -2.2040357,0.06522 20.07165,0.27248 20.07165,0.27248 z"
|
||||||
|
id="path2992-3"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccccccc" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.1 KiB |
BIN
img/main_ico_lowfee.png
Normal file
After Width: | Height: | Size: 1,005 B |
82
img/main_ico_lowfee.svg
Normal file
|
@ -0,0 +1,82 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="48"
|
||||||
|
height="48"
|
||||||
|
id="svg4578"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.48.4 r9939"
|
||||||
|
sodipodi:docname="main_ico_lowfee.svg"
|
||||||
|
inkscape:export-filename="/media/X/bitcoin.org/current/img/main_ico_lowfee.png"
|
||||||
|
inkscape:export-xdpi="90"
|
||||||
|
inkscape:export-ydpi="90">
|
||||||
|
<defs
|
||||||
|
id="defs4580" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="11.197802"
|
||||||
|
inkscape:cx="39.083831"
|
||||||
|
inkscape:cy="24.909063"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:grid-bbox="true"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:window-width="1280"
|
||||||
|
inkscape:window-height="1000"
|
||||||
|
inkscape:window-x="1680"
|
||||||
|
inkscape:window-y="24"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata4583">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
id="layer1"
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
transform="translate(0,16)">
|
||||||
|
<path
|
||||||
|
style="fill:#000000;stroke:#000000;stroke-width:1.46510804px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||||
|
d="M 28.952967,-5.4831927 18.420435,-0.18421734 5.140289,17.348194 20.121341,28.273241 33.139811,10.086635 34.448196,-2.0159617 z"
|
||||||
|
id="path4586"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccccccc" />
|
||||||
|
<path
|
||||||
|
sodipodi:type="arc"
|
||||||
|
style="opacity:0.98999999;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||||
|
id="path5098"
|
||||||
|
sodipodi:cx="19.071823"
|
||||||
|
sodipodi:cy="11.242579"
|
||||||
|
sodipodi:rx="1.4567591"
|
||||||
|
sodipodi:ry="1.4567591"
|
||||||
|
d="m 20.528582,11.242579 a 1.4567591,1.4567591 0 1 1 -2.913518,0 1.4567591,1.4567591 0 1 1 2.913518,0 z"
|
||||||
|
transform="matrix(1.9265148,0,0,1.9265148,-7.0111621,-22.574489)" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:2.34417295;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||||
|
d="m 30.307614,-1.8916985 c 0,0 2.481386,-4.4105668 4.285937,-6.1316285 1.968378,-1.8773077 3.968679,0.3159765 7.709069,-2.61598"
|
||||||
|
id="path4588"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="csc" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3 KiB |
BIN
img/main_ico_worldwide.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
109
img/main_ico_worldwide.svg
Normal file
|
@ -0,0 +1,109 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="48"
|
||||||
|
height="48"
|
||||||
|
id="svg2984"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.48.4 r9939"
|
||||||
|
sodipodi:docname="main_ico_worldwide.svg"
|
||||||
|
inkscape:export-filename="/media/X/bitcoin.org/bitcoin.org_icon/img/for_international.png"
|
||||||
|
inkscape:export-xdpi="90"
|
||||||
|
inkscape:export-ydpi="90">
|
||||||
|
<defs
|
||||||
|
id="defs2986" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="7.9195959"
|
||||||
|
inkscape:cx="52.779419"
|
||||||
|
inkscape:cy="25.094065"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="1680"
|
||||||
|
inkscape:window-height="1026"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="24"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata2989">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Calque 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(0,-1004.3622)">
|
||||||
|
<path
|
||||||
|
sodipodi:type="arc"
|
||||||
|
style="opacity:0.98999999;fill:#ffffff;fill-opacity:0;stroke:none"
|
||||||
|
id="path2992"
|
||||||
|
sodipodi:cx="49.750011"
|
||||||
|
sodipodi:cy="49.744911"
|
||||||
|
sodipodi:rx="49.750011"
|
||||||
|
sodipodi:ry="49.750011"
|
||||||
|
d="m 99.500023,49.744911 a 49.750011,49.750011 0 1 1 -99.500023,0 49.750011,49.750011 0 1 1 99.500023,0 z"
|
||||||
|
transform="matrix(0.39076067,0,0,0.39076067,4.8112577,1009.0119)" />
|
||||||
|
<path
|
||||||
|
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
d="m 39.629661,1030.3741 1.201834,0.6555 -1.529609,1.8575 -1.201836,0.8743 -0.218521,2.6219 -0.820065,2.6801 -1.941836,0.8288 -0.02488,1.0178 -1.375142,1.3373 -0.696049,1.0867 -1.830068,0.7086 -0.579567,-2.6977 0.05653,-2.3393 -0.218526,-2.0759 0.437031,-1.7483 -0.655544,-0.5461 -1.311096,-0.6558 -1.748124,0.2172 -2.185155,-0.7646 -0.218525,-2.8408 0,-1.9666 1.96664,-2.2946 1.748124,-2.4037 3.059218,-1.2018 1.201834,1.4203 1.638869,0 1.863659,1.1012 0.102979,1.9582 2.294412,2.2941"
|
||||||
|
id="path2996"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccccccccccccccccccccccccccccc" />
|
||||||
|
<path
|
||||||
|
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
d="m 9.0233336,1034.9124 0.678614,-2.3074 1.6286664,-3.5967 1.900114,-0.8821 0.542892,0.95 1.764388,0.8144 0,1.2215 1.221503,0 0.950057,1.2895 0.678614,0.4072 1.560806,0.746 1.764392,1.0861 0.746475,0.4071 -0.271455,0.9501 -0.407167,0.8822 -1.221499,1.0179 0.610749,1.8324 0,2.1034 -2.443003,1.2896 -1.085781,2.6465 -0.591459,0.7355 -1.78288,-0.8085 -2.975513,-1.8217 0.12453,-1.0912 -0.407164,-2.7142 -1.56081,-1.7649 -0.4750287,-1.6283 z"
|
||||||
|
id="path3766"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccccccccccccccccccccccccccc" />
|
||||||
|
<path
|
||||||
|
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
d="m 9.8873495,1031.1503 -0.2700077,-0.5402 -0.1620042,-1.296 -0.4320069,0.4323 -0.2700077,-0.8642 0.1620049,-1.566 -0.4860082,0 -0.432007,0.7021 0,0.5942 -0.864016,-0.3783 -0.1080034,-1.8359 0.3780077,-1.1342 2.1229785,-0.7296 0.8100145,0 0.70201,0.486 0.486012,0 -0.216006,-1.2959 1.026021,-0.702 0.756013,-0.1622 1.458024,-1.566 1.620027,-0.432 1.026022,-0.9182 0.486007,-0.972 0.432007,-0.9179 -0.810013,0 -0.378006,0.1621 0.324005,-0.432 1.174521,-0.5265 1.768532,-0.6886 0.08101,-0.891 -1.069959,-1.4708 -1.161021,-0.8368 -0.499509,0.1213 -0.310505,0.8642 -0.756013,1.1338 -0.756016,0 -0.886945,-0.6196 c 0,0 -0.0382,-0.8099 0.177834,-0.8099 0.216007,0 1.573142,-0.7844 1.573142,-0.7844 l 0.648012,-0.9721 1.485027,-0.5938 -0.675012,-0.594 -1.890035,0.5399 -1.67403,0.2692 -0.204488,-0.052 -3.359572,2.1582 c 0,0 -2.6185023,3.0358 -3.5225069,4.8037 -1.3526982,2.6449 -2.3111601,5.6935 -2.7416059,8.4808 -0.1460172,0.9455 2.1600388,1.89 2.1600388,1.89 l 1.2420238,1.1881 1.5660274,0.9179 0.8100148,0.1619 0.270008,-0.324 z"
|
||||||
|
id="path3806"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccsccccccccsscccccc" />
|
||||||
|
<path
|
||||||
|
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
d="m 21.100299,1013.096 0.09548,0.8111 0.257735,0.8021 1.269632,-0.3915 0.544133,-1.2888 0.525034,-0.2198 1.221904,-0.5537 0.992795,-0.2285 0.229116,-1.5273 c 0,0 -0.229116,-0.6875 -0.534583,-0.6875 -0.305478,0 -1.756485,-0.3436 -1.756485,-0.3436 l -1.069165,-0.1137 -2.520173,0.7637 -0.84006,0.5344 0.07636,0.9166 1.183717,0.3629 0.696866,0.22 0.02864,0.4869 z"
|
||||||
|
id="path3826"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccccccccsccccccccc" />
|
||||||
|
<path
|
||||||
|
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||||
|
d="m 37.577307,1025.0342 0.687554,0.8509 0.756011,1.1612 0.756013,0.5669 -0.08101,1.3499 1.16102,-0.324 1.795536,-3.1589 -0.688515,-0.8909 -0.864016,-0.028 -1.701028,-1.6201 -0.351007,-1.2691 2.349042,2.2682 c 0,0 0.363828,-0.4783 0.743186,-0.6097 0.379357,-0.1306 0.666238,-0.4553 0.620337,-0.5786 -1.056741,-2.8416 -2.430141,-5.3573 -4.320078,-7.5599 -1.224147,-1.4269 -4.414577,-3.5103 -4.414577,-3.5103 l -2.160039,0.9721 -1.215022,0.4048 0.243009,-0.4588 1.026017,-0.269 -0.135016,-0.3513 -0.999016,0.2432 -1.296024,-0.1367 -1.836033,1.08 -0.783015,0.9181 0.054,0.4593 0.837018,-0.2974 0.648012,0.4862 0.432004,-1.0262 0.513011,-0.4589 0.161999,0.7828 -0.432007,0.1623 1.053021,-0.1059 -0.999022,0.4319 -0.135001,0.2689 -1.053019,0.4592 -0.97202,0.243 -0.405005,-0.081 -0.702014,-0.8369 -0.405005,0.057 0.270008,0.8907 0.351004,0.7022 -0.054,0.8097 -0.567011,0.9181 1.161019,2.5111 -0.918015,1.377 -0.216006,1.1072 0.432006,1.08 0.502884,0 0.421882,0.6248 1.154274,-0.7024 0.540005,-2.4029 1.296026,-1.5929 1.242021,0.3238 -0.054,0.8373 0.594011,-1.1611 0.594011,0.621 0,0.1879 0,0.324 1.13402,0.3241 0.567011,1.1072 1.539028,-0.2432 1.195136,0.9269 -1.208402,1.9375 0.435447,0.8924 1.202481,-0.8992"
|
||||||
|
id="path3828"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccccccccccccssaccccccccccccccccccccccccccccccccccccccccccccccccccc" />
|
||||||
|
<path
|
||||||
|
sodipodi:type="arc"
|
||||||
|
style="opacity:0.98999999;fill:none;stroke:#000000;stroke-width:7.83737087;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||||
|
id="path2992-7"
|
||||||
|
sodipodi:cx="49.750011"
|
||||||
|
sodipodi:cy="49.744911"
|
||||||
|
sodipodi:rx="49.750011"
|
||||||
|
sodipodi:ry="49.750011"
|
||||||
|
d="m 99.500023,49.744911 a 49.750011,49.750011 0 1 1 -99.500023,0 49.750011,49.750011 0 1 1 99.500023,0 z"
|
||||||
|
transform="matrix(0.39076067,0,0,0.39076067,4.8000744,1009.0009)" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 7.1 KiB |
21
index.html
|
@ -12,13 +12,14 @@ lang=lang.split('_')[0];
|
||||||
if(!langs[lang])lang='en';
|
if(!langs[lang])lang='en';
|
||||||
setTimeout(function(){window.location.href='/'+lang+'/';},200);
|
setTimeout(function(){window.location.href='/'+lang+'/';},200);
|
||||||
</script>
|
</script>
|
||||||
<h1>{%translate pagetitle%}</h1>
|
<div class="mainsummary">{% translate listintro %}</div>
|
||||||
<p style="font-size:125%;">{%translate listintro%}</p>
|
<div class="mainvideo"><iframe src="//www.youtube.com/embed/Um63OQz3bjo{% if page.lang != 'en' %}?cc_load_policy=1{% endif %}" frameborder="0" allowfullscreen></iframe></div>
|
||||||
<ul style="font-size:125%;">
|
<div class="mainlist">
|
||||||
<li>{%translate list1%}</li>
|
<div><div><img src="/img/main_ico_instant.svg" alt="Icon"><div>{% translate list1 %}</div></div></div>
|
||||||
<li>{%translate list2%}</li>
|
<div><div><img src="/img/main_ico_worldwide.svg" alt="Icon"><div>{% translate list2 %}</div></div></div>
|
||||||
<li>{%translate list3%}</li>
|
<div><div><img src="/img/main_ico_lowfee.svg" alt="Icon"><div>{% translate list3 %}</div></div></div>
|
||||||
<li>{%translate list4%}</li>
|
</div>
|
||||||
</ul>
|
<div class="maindesc">{% translate desc %}</div>
|
||||||
<p>{%translate desc%}</p>
|
<div class="mainbutton"><a href="{% translate getting-started url %}"><img src="/img/but_bitcoin.svg" alt="icon">{% translate getstarted layout %}</a></div>
|
||||||
<p>{%translate license%}</p>
|
<div class="mainoverview">{% translate overview %}</div>
|
||||||
|
<div class="mainoverviews"><a href="{% translate bitcoin-for-individuals url %}">{% translate menu-bitcoin-for-individuals layout %}</a> <a href="{% translate bitcoin-for-businesses url %}">{% translate menu-bitcoin-for-businesses layout %}</a> <a href="{% translate bitcoin-for-developers url %}">{% translate menu-bitcoin-for-developers layout %}</a></div>
|
||||||
|
|