Adapt choose-your-wallet page to work with dynamic height
This fixes all issues related to translations that overflow fixed height in many cases Remove some steps in the README that are not necessary anymore Fix two display bugs in IE7 Fix one display bug in IE9 Optimize images with optipng
|
@ -34,7 +34,7 @@ Installing dependencies on older Ubuntu and Debian distributions
|
|||
5. Images, Update the few images that contain text with any vector image editing software like Inkscape.
|
||||
6. Languages, Make sure that the languages are listed in alphabetical order in _config.yml
|
||||
7. Post, Remove sections that use _posts such as "version-history" and "news". Those are not meant to be translated yet.
|
||||
8. Preview, Check that fixed size texts don't overflow. For example, each wallet description, right side buttons and some titles have height or width restrictions. You can preview your work without building the website. Just visit the existing english page, open the javascript console of your browser (CTRL + SHIFT + J on Google Chrome) and copy the following command to make the page editable : document.body.contentEditable=true . This will allow you to edit and preview the page in your browser like a document.
|
||||
8. Preview, Check that texts that are limited in size display nicely. For example, right side buttons and some titles have height or width restrictions. You can preview your work without building the website. Just visit the existing english page, open the javascript console of your browser (CTRL + SHIFT + J on Google Chrome) and copy the following command to make the page editable : document.body.contentEditable=true . This will allow you to edit and preview the page in your browser like a document.
|
||||
|
||||
### Update
|
||||
|
||||
|
|
|
@ -451,6 +451,17 @@ li{
|
|||
.previewrow>h2{
|
||||
font-size:115%;
|
||||
}
|
||||
.previewrow>div{
|
||||
display:inline-block;
|
||||
zoom:1;*display:inline;/*IE7 support*/
|
||||
position:relative;
|
||||
margin-right:17px;
|
||||
margin-bottom:12px;
|
||||
vertical-align:top;
|
||||
}
|
||||
.previewrow>div.last{
|
||||
margin-right:0px;
|
||||
}
|
||||
.previewrow>div>a>img{
|
||||
display:block;
|
||||
margin:auto;
|
||||
|
@ -477,64 +488,70 @@ li{
|
|||
position:absolute;
|
||||
left:-110px;
|
||||
right:-110px;
|
||||
padding:0px 30px;
|
||||
margin-top:-270px;
|
||||
background:url(/img/bubble.svg) bottom center no-repeat;
|
||||
bottom:100px;
|
||||
padding:0px;
|
||||
z-index:1000;
|
||||
overflow:hidden;
|
||||
}
|
||||
.previewrow>div>div>h2{
|
||||
margin-top:20px;
|
||||
}
|
||||
.previewrow>div:hover>div{
|
||||
opacity:1;
|
||||
width:auto;
|
||||
height:280px;
|
||||
height:auto;
|
||||
}
|
||||
.previewrow>div{
|
||||
display:inline-block;
|
||||
zoom:1;*display:inline;/*IE7 support*/
|
||||
position:relative;
|
||||
margin-right:18px;
|
||||
margin-bottom:12px;
|
||||
vertical-align:top;
|
||||
.previewrow>div>div>div:first-child{
|
||||
background:url(/img/bubbletop.svg) bottom center no-repeat;
|
||||
height:10px;
|
||||
}
|
||||
.previewrow>div.last{
|
||||
margin-right:0px;
|
||||
.previewrow>div>div>div:first-child+div{
|
||||
background:url(/img/bubblemiddle.svg) bottom center repeat-y;
|
||||
padding:0px 30px;
|
||||
}
|
||||
.previewrow>div>div>span{
|
||||
.previewrow>div>div>div:first-child+div+div{
|
||||
background:url(/img/bubblebottom.svg) bottom center no-repeat;
|
||||
height:64px;
|
||||
}
|
||||
.previewrow>div>div>div>span{
|
||||
position:absolute;
|
||||
top:24px;
|
||||
right:30px;
|
||||
}
|
||||
.previewrow>div>div>span>img{
|
||||
.previewrow>div>div>div>h2{
|
||||
margin:0px;
|
||||
padding-top:10px;
|
||||
}
|
||||
.previewrow>div>div>div>span>img{
|
||||
margin-left:4px;
|
||||
}
|
||||
.previewrow>div>div>h2:first-child+span+p{
|
||||
.previewrow>div>div>div>h2:first-child+span+p{
|
||||
font-size:95%;
|
||||
line-height: 1.2em;
|
||||
line-height:1.2em;
|
||||
margin:0px;
|
||||
padding:10px 0px;
|
||||
}
|
||||
.previewrow>div>div>h2:first-child+span+p+p{
|
||||
text-align:center;
|
||||
position:absolute;
|
||||
width:290px;
|
||||
top:190px;
|
||||
left:0px;
|
||||
.previewrow>div>div>div>h2:first-child+span+p+p{
|
||||
text-align: center;
|
||||
margin:0px;
|
||||
padding:0px;
|
||||
position:relative;
|
||||
bottom:-10px;
|
||||
}
|
||||
.previewrow>div>div a,.previewrow>div>div a:link,.previewrow>div>div a:visited,.previewrow>div>div a:active{
|
||||
font-weight:bold;
|
||||
text-decoration:none;
|
||||
font-size:125%;
|
||||
}
|
||||
.previewrow .walletwarning>div:first-child{
|
||||
background:url(/img/bubblewarntop.svg) bottom center no-repeat;
|
||||
}
|
||||
.previewrow .walletwarning>div:first-child+div{
|
||||
background:url(/img/bubblewarnmiddle.svg) bottom center repeat-y;
|
||||
}
|
||||
.previewrow .walletwarning>div:first-child+div+div{
|
||||
background:url(/img/bubblewarnbottom.svg) bottom center no-repeat;
|
||||
}
|
||||
.previewrow .walletwarning a,.previewrow .walletwarning a:link,.previewrow .walletwarning a:visited,.previewrow .walletwarning a:active{
|
||||
color:#b95357;
|
||||
}
|
||||
.previewrow .walletwarning{
|
||||
background:url(/img/bubblewarn.svg) bottom center no-repeat;
|
||||
}
|
||||
.previewrow .walletnormal{
|
||||
background:url(/img/bubble.svg) bottom center no-repeat;
|
||||
}
|
||||
|
||||
.versiontext{
|
||||
text-align:left;
|
||||
|
|
|
@ -17,108 +17,160 @@ title: Choose your wallet - Bitcoin
|
|||
<p><img src="/img/icon-be-the-network.svg" alt="Network" style="float:left;margin-right:10px;"/>Do you have a computer that you keep switched on all the time, that's connected to the internet? You can help the community by simply running the <a href="download"><b>original Bitcoin client</b></a> on it. The original client is more resource intensive and will take a complete day to synchronize. After that your computer will contribute to the network by checking and relaying transactions.</p>
|
||||
|
||||
<div class="preview">
|
||||
|
||||
<div class="previewcol">
|
||||
|
||||
<div class="previewrow">
|
||||
<h2><img src="/img/ico_software.svg" alt="Software wallets" />Software wallets</h2>
|
||||
<p>Software wallets are installed on your computer. They give you complete control of your wallet. You are responsible for doing backups and protecting your money.</p>
|
||||
</div>
|
||||
<div class="previewrow">
|
||||
<h2><img src="/img/ico_mobile.svg" alt="mobile wallets" />Mobile wallets</h2>
|
||||
<p>Mobile wallets allow you to bring Bitcoin with you in your pocket. You can exchange coins easily and pay in physical stores by scanning a QR code or using NFC "tap to pay".</p>
|
||||
</div>
|
||||
<div class="previewrow">
|
||||
<h2><img src="/img/ico_international.svg" alt="web wallets" />Web wallets</h2>
|
||||
<p>Web wallets allow you to use Bitcoin anywhere with less effort to protect your wallet. However, you must choose your web wallet service with care as they host your bitcoins.</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="previewcol">
|
||||
|
||||
<div class="previewrow">
|
||||
<h2><img src="/img/ico_software.svg" alt="Software wallets" />Software wallets</h2>
|
||||
<p>Software wallets are installed on your computer. They give you complete control of your wallet. You are responsible for doing backups and protecting your money.</p>
|
||||
<div>
|
||||
<div>
|
||||
<h2>Bitcoin-Qt</h2>
|
||||
<span><img src="/img/dow-win.png" alt="Windows" title="Windows" /><img src="/img/dow-linux.png" alt="Linux" title="Linux" /><img src="/img/dow-osx-uni.png" alt="Mac OS X" title="Mac OS X" /></span>
|
||||
<p>Bitcoin-Qt is the original Bitcoin client and it builds the backbone of the network. It offers the highest levels of security, privacy and stability. However it has fewer features and it takes a lot of space and memory.</p>
|
||||
<p><a href="download">Download</a></p>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Bitcoin-Qt</h2>
|
||||
<span><img src="/img/dow-win.png" alt="Windows" title="Windows" /><img src="/img/dow-linux.png" alt="Linux" title="Linux" /><img src="/img/dow-osx-uni.png" alt="Mac OS X" title="Mac OS X" /></span>
|
||||
<p>Bitcoin-Qt is the original Bitcoin client and it builds the backbone of the network. It offers the highest levels of security, privacy and stability. However it has fewer features and it takes a lot of space and memory.</p>
|
||||
<p><a href="download">Download</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="#" onclick="return false;"><img src="/img/clients/lo-bitcoin.png" alt="bitcoin-qt" />Bitcoin-Qt</a>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<h2>Multibit</h2>
|
||||
<span><img src="/img/dow-win.png" alt="Windows" title="Windows" /><img src="/img/dow-linux.png" alt="Linux" title="Linux" /><img src="/img/dow-osx-uni.png" alt="Mac OS X" title="Mac OS X" /></span>
|
||||
<p>Multibit is a lightweight client that focuses on being fast and easy to use. It synchronizes with the network and is ready to use in minutes. Multibit also supports many languages. It is a good choice for non-technical users.</p>
|
||||
<p><a href="https://multibit.org/">Visit website</a></p>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Multibit</h2>
|
||||
<span><img src="/img/dow-win.png" alt="Windows" title="Windows" /><img src="/img/dow-linux.png" alt="Linux" title="Linux" /><img src="/img/dow-osx-uni.png" alt="Mac OS X" title="Mac OS X" /></span>
|
||||
<p>Multibit is a lightweight client that focuses on being fast and easy to use. It synchronizes with the network and is ready to use in minutes. Multibit also supports many languages. It is a good choice for non-technical users.</p>
|
||||
<p><a href="https://multibit.org/">Visit website</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="#" onclick="return false;"><img src="/img/clients/lo-multibit.png" alt="multibit" />Multibit</a>
|
||||
</div>
|
||||
<div class="last">
|
||||
<div>
|
||||
<h2>Armory</h2>
|
||||
<span><img src="/img/dow-win.png" alt="Windows" title="Windows" /><img src="/img/dow-linux.png" alt="Linux" title="Linux" /></span>
|
||||
<p>Armory is an advanced Bitcoin client that runs on top of Bitcoin-Qt. Expanding its features for Bitcoin power users. It offers many backup and encryption features, and it allows secure cold-storage on offline computers.</p>
|
||||
<p><a href="http://bitcoinarmory.com/">Visit website</a></p>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Armory</h2>
|
||||
<span><img src="/img/dow-win.png" alt="Windows" title="Windows" /><img src="/img/dow-linux.png" alt="Linux" title="Linux" /></span>
|
||||
<p>Armory is an advanced Bitcoin client that runs on top of Bitcoin-Qt. Expanding its features for Bitcoin power users. It offers many backup and encryption features, and it allows secure cold-storage on offline computers.</p>
|
||||
<p><a href="http://bitcoinarmory.com/">Visit website</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="#" onclick="return false;"><img src="/img/clients/lo-armory.png" alt="armory" />Armory</a>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<h2>Electrum</h2>
|
||||
<span><img src="/img/dow-win.png" alt="Windows" title="Windows" /><img src="/img/dow-linux.png" alt="Linux" title="Linux" /><img src="/img/dow-osx-uni.png" alt="Mac OS X" title="Mac OS X" /><img src="/img/dow-android.png" alt="Android" title="Android" /></span>
|
||||
<p>Electrum's focus is speed and simplicity, with low resource usage. It uses remote servers that handle the most complicated parts of the Bitcoin system, and it allows you to recover your wallet from a secret phrase.</p>
|
||||
<p><a href="http://electrum.org/">Visit website</a></p>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Electrum</h2>
|
||||
<span><img src="/img/dow-win.png" alt="Windows" title="Windows" /><img src="/img/dow-linux.png" alt="Linux" title="Linux" /><img src="/img/dow-osx-uni.png" alt="Mac OS X" title="Mac OS X" /><img src="/img/dow-android.png" alt="Android" title="Android" /></span>
|
||||
<p>Electrum's focus is speed and simplicity, with low resource usage. It uses remote servers that handle the most complicated parts of the Bitcoin system, and it allows you to recover your wallet from a secret phrase.</p>
|
||||
<p><a href="http://electrum.org/">Visit website</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="#" onclick="return false;"><img src="/img/clients/lo-electrum.png" alt="electrum" />Electrum</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="previewrow">
|
||||
<h2><img src="/img/ico_mobile.svg" alt="mobile wallets" />Mobile wallets</h2>
|
||||
<p>Mobile wallets allow you to bring Bitcoin with you in your pocket. You can exchange coins easily and pay in physical stores by scanning a QR code or using NFC "tap to pay".</p>
|
||||
<div>
|
||||
<div>
|
||||
<h2>Bitcoin Wallet</h2>
|
||||
<span><img src="/img/dow-android.png" alt="Android" title="Android" /><img src="/img/dow-blackberry.png" alt="BlackBerry OS" title="BlackBerry OS" /></span>
|
||||
<p>Bitcoin Wallet is a lightweight mobile client for Android and BlackBerry OS. This client does not need to be associated with any online service to work. It is compatible with QR code scanning and NFC.</p>
|
||||
<p><a href="https://play.google.com/store/apps/details?id=de.schildbach.wallet">Visit website</a></p>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Bitcoin Wallet</h2>
|
||||
<span><img src="/img/dow-android.png" alt="Android" title="Android" /><img src="/img/dow-blackberry.png" alt="BlackBerry OS" title="BlackBerry OS" /></span>
|
||||
<p>Bitcoin Wallet is a lightweight mobile client for Android and BlackBerry OS. This client does not need to be associated with any online service to work. It is compatible with QR code scanning and NFC.</p>
|
||||
<p><a href="https://play.google.com/store/apps/details?id=de.schildbach.wallet">Visit website</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="#" onclick="return false;"><img src="/img/clients/lo-bitcoinwallet.png" alt="bitcoin wallet" />Bitcoin<br>Wallet</a>
|
||||
</div>
|
||||
<div data-id="blockchainmobile">
|
||||
<div class="walletwarning">
|
||||
<h2>Be careful</h2>
|
||||
<span></span>
|
||||
<p>Web wallets host your bitcoins. That means it is possible for them to lose your bitcoins following any incident on their side. As of today, no web wallet service provide enough insurance to be used to store value like a bank.</p>
|
||||
<p><a href="javascript:walletshow();">OK, I understand</a></p>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Be careful</h2>
|
||||
<span></span>
|
||||
<p>Web wallets host your bitcoins. That means it is possible for them to lose your bitcoins following any incident on their side. As of today, no web wallet service provide enough insurance to be used to store value like a bank.</p>
|
||||
<p><a href="javascript:walletshow();">OK, I understand</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="#" onclick="return false;"><img src="/img/clients/lo-hidden.png" alt="hidden" /></a>
|
||||
</div>
|
||||
<div data-id="paytunia" class="last">
|
||||
<div class="walletwarning">
|
||||
<h2>Be careful</h2>
|
||||
<span></span>
|
||||
<p>Web wallets host your bitcoins. That means it is possible for them to lose your bitcoins following any incident on their side. As of today, no web wallet service provide enough insurance to be used to store value like a bank.</p>
|
||||
<p><a href="javascript:walletshow();">OK, I understand</a></p>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Be careful</h2>
|
||||
<span></span>
|
||||
<p>Web wallets host your bitcoins. That means it is possible for them to lose your bitcoins following any incident on their side. As of today, no web wallet service provide enough insurance to be used to store value like a bank.</p>
|
||||
<p><a href="javascript:walletshow();">OK, I understand</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="#" onclick="return false;"><img src="/img/clients/lo-hidden.png" alt="hidden" /></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="previewrow">
|
||||
<h2><img src="/img/ico_international.svg" alt="web wallets" />Web wallets</h2>
|
||||
<p>Web wallets allow you to use Bitcoin anywhere with less effort to protect your wallet. However, you must choose your web wallet service with care as they host your bitcoins.</p>
|
||||
<div data-id="blockchaindesktop">
|
||||
<div class="walletwarning">
|
||||
<h2>Be careful</h2>
|
||||
<span></span>
|
||||
<p>Web wallets host your bitcoins. That means it is possible for them to lose your bitcoins following any incident on their side. As of today, no web wallet service provide enough insurance to be used to store value like a bank.</p>
|
||||
<p><a href="javascript:walletshow();">OK, I understand</a></p>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Be careful</h2>
|
||||
<span></span>
|
||||
<p>Web wallets host your bitcoins. That means it is possible for them to lose your bitcoins following any incident on their side. As of today, no web wallet service provide enough insurance to be used to store value like a bank.</p>
|
||||
<p><a href="javascript:walletshow();">OK, I understand</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="#" onclick="return false;"><img src="/img/clients/lo-hidden.png" alt="hidden" /></a>
|
||||
</div>
|
||||
<div data-id="bips">
|
||||
<div class="walletwarning">
|
||||
<h2>Be careful</h2>
|
||||
<span></span>
|
||||
<p>Web wallets host your bitcoins. That means it is possible for them to lose your bitcoins following any incident on their side. As of today, no web wallet service provide enough insurance to be used to store value like a bank.</p>
|
||||
<p><a href="javascript:walletshow();">OK, I understand</a></p>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Be careful</h2>
|
||||
<span></span>
|
||||
<p>Web wallets host your bitcoins. That means it is possible for them to lose your bitcoins following any incident on their side. As of today, no web wallet service provide enough insurance to be used to store value like a bank.</p>
|
||||
<p><a href="javascript:walletshow();">OK, I understand</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="#" onclick="return false;"><img src="/img/clients/lo-hidden.png" alt="hidden" /></a>
|
||||
</div>
|
||||
<div data-id="coinbase" class="last">
|
||||
<div class="walletwarning">
|
||||
<h2>Be careful</h2>
|
||||
<span></span>
|
||||
<p>Web wallets host your bitcoins. That means it is possible for them to lose your bitcoins following any incident on their side. As of today, no web wallet service provide enough insurance to be used to store value like a bank.</p>
|
||||
<p><a href="javascript:walletshow();">OK, I understand</a></p>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Be careful</h2>
|
||||
<span></span>
|
||||
<p>Web wallets host your bitcoins. That means it is possible for them to lose your bitcoins following any incident on their side. As of today, no web wallet service provide enough insurance to be used to store value like a bank.</p>
|
||||
<p><a href="javascript:walletshow();">OK, I understand</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="#" onclick="return false;"><img src="/img/clients/lo-hidden.png" alt="hidden" /></a>
|
||||
</div>
|
||||
|
@ -127,49 +179,69 @@ title: Choose your wallet - Bitcoin
|
|||
|
||||
<div class="previewcol">.</div>
|
||||
|
||||
<div style="display:none;">
|
||||
<div class="previewrow" style="display:none;">
|
||||
<div id="blockchainmobile">
|
||||
<div class="walletnormal">
|
||||
<h2>Blockchain.info</h2>
|
||||
<span><img src="/img/dow-android.png" alt="Android" title="Android" /><img src="/img/dow-ios.png" alt="iOS" title="iOS" /></span>
|
||||
<p>Blockchain.info is an hybrid web wallet for mobiles. It is also available for iPhone in a restricted mode to fit Apple policies. It includes many blockchain.info features like web wallet backup.</p>
|
||||
<p><a href="https://blockchain.info/wallet/">Visit website</a></p>
|
||||
<div>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Blockchain.info</h2>
|
||||
<span><img src="/img/dow-android.png" alt="Android" title="Android" /><img src="/img/dow-ios.png" alt="iOS" title="iOS" /></span>
|
||||
<p>Blockchain.info is an hybrid web wallet for mobiles. It is also available for iPhone in a restricted mode to fit Apple policies. It includes many blockchain.info features like web wallet backup.</p>
|
||||
<p><a href="https://blockchain.info/wallet/">Visit website</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="https://blockchain.info/wallet/"><img src="/img/clients/lo-blockchain.png" alt="blockchain" />Blockchain<br>.info</a>
|
||||
</div>
|
||||
<div id="blockchaindesktop">
|
||||
<div class="walletnormal">
|
||||
<h2>Blockchain.info</h2>
|
||||
<span></span>
|
||||
<p>Blockchain.info is a user-friendly hybrid wallet. It stores an encrypted version of your wallet online but decryption happens in your browser. For security reasons, you should always use the browser extension and email backups.</p>
|
||||
<p><a href="http://blockchain.info/wallet/chrome-extension">Visit website</a></p>
|
||||
<div>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Blockchain.info</h2>
|
||||
<span></span>
|
||||
<p>Blockchain.info is a user-friendly hybrid wallet. It stores an encrypted version of your wallet online but decryption happens in your browser. For security reasons, you should always use the browser extension and email backups.</p>
|
||||
<p><a href="http://blockchain.info/wallet/chrome-extension">Visit website</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="http://blockchain.info/wallet/chrome-extension"><img src="/img/clients/lo-blockchain.png" alt="blockchain" />Blockchain<br>.info</a>
|
||||
</div>
|
||||
<div id="paytunia">
|
||||
<div class="walletnormal">
|
||||
<h2>Paytunia</h2>
|
||||
<span><img src="/img/dow-ios.png" alt="iOS" title="iOS" /></span>
|
||||
<p>Paytunia is a mobile web wallet powered by Paymium that works with Bitcoin-central to give you access to Bitcoin exchanges right from your mobile. It is available for iPhone and Android support is coming soon.</p>
|
||||
<p><a href="https://paytunia.com/">Visit website</a></p>
|
||||
<div>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Paytunia</h2>
|
||||
<span><img src="/img/dow-ios.png" alt="iOS" title="iOS" /></span>
|
||||
<p>Paytunia is a mobile web wallet powered by Paymium that works with Bitcoin-central to give you access to Bitcoin exchanges right from your mobile. It is available for iPhone and Android support is coming soon.</p>
|
||||
<p><a href="https://paytunia.com/">Visit website</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="https://paytunia.com/"><img src="/img/clients/lo-paytunia.png" alt="paytunia" />Paytunia</a>
|
||||
</div>
|
||||
<div id="bips">
|
||||
<div class="walletnormal">
|
||||
<h2>BIPS</h2>
|
||||
<span></span>
|
||||
<p>BIPS is a web wallet service from WalletBit that allows to buy and sell bitcoins easily in many countries. It also offers cold storage, wallet importation and many merchant tools features.</p>
|
||||
<p><a href="https://bips.me/">Visit website</a></p>
|
||||
<div>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>BIPS</h2>
|
||||
<span></span>
|
||||
<p>BIPS is a web wallet service from WalletBit that allows to buy and sell bitcoins easily in many countries. It also offers cold storage, wallet importation and many merchant tools features.</p>
|
||||
<p><a href="https://bips.me/">Visit website</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="https://bips.me/"><img src="/img/clients/lo-bips.png" alt="BIPS" />BIPS</a>
|
||||
</div>
|
||||
<div id="coinbase">
|
||||
<div class="walletnormal">
|
||||
<h2>Coinbase</h2>
|
||||
<span></span>
|
||||
<p>Coinbase is a web wallet service that aims to be the easiest to use. It also provides an Android web wallet app, merchant tools and integration with US bank accounts to buy and sell bitcoins.</p>
|
||||
<p><a href="https://coinbase.com/">Visit website</a></p>
|
||||
<div>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Coinbase</h2>
|
||||
<span></span>
|
||||
<p>Coinbase is a web wallet service that aims to be the easiest to use. It also provides an Android web wallet app, merchant tools and integration with US bank accounts to buy and sell bitcoins.</p>
|
||||
<p><a href="https://coinbase.com/">Visit website</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="https://coinbase.com/"><img src="/img/clients/lo-coinbase.png" alt="coinbase" />Coinbase</a>
|
||||
</div>
|
||||
|
|
|
@ -18,108 +18,160 @@ title: Choisir votre porte-monnaie - Bitcoin
|
|||
<p><img src="/img/icon-be-the-network.svg" alt="Réseau" style="float:left;margin-right:10px;"/>Possédez-vous un ordinateur que vous gardez ouvert en permanence ? Vous pouvez aider la communauté simplement en laissant fonctionner le <a href="telecharger"><b>logiciel Bitcoin original</b></a> sur celui-ci. Le logiciel Bitcoin original est exigeant en ressource et prendra plus d'une journée entière pour se synchroniser. Après quoi, votre ordinateur contribuera au réseau en partageant les transactions et la chaîne de bloc.</p>
|
||||
|
||||
<div class="preview">
|
||||
|
||||
<div class="previewcol">
|
||||
|
||||
<div class="previewrow">
|
||||
<h2><img src="/img/ico_software.svg" alt="Software wallets" />Porte-monnaie logiciel</h2>
|
||||
<p>Les porte-monnaie logiciels sont installés dans votre ordinateur. Ceux-ci vous donnent un contrôle complet sur vos bitcoins. Vous êtes responsables de faire des sauvegardes et de le protéger. De la même manière que l'argent liquide.</p>
|
||||
</div>
|
||||
<div class="previewrow">
|
||||
<h2><img src="/img/ico_mobile.svg" alt="mobile wallets" />Porte-monnaie mobile</h2>
|
||||
<p>Les porte-monnaie mobiles vous permettent d'apporter Bitcoin avec vous. Vous pouvez échanger des bitcoins de personne à personne et payer dans des boutiques par un simple scan du code QR affiché sur un écran, ou avec NFC.</p>
|
||||
</div>
|
||||
<div class="previewrow">
|
||||
<h2><img src="/img/ico_international.svg" alt="online wallets" />Porte-monnaie web</h2>
|
||||
<p>Les porte-monnaie web vous permettent d'utiliser vos bitcoins partout avec moins d'effort pour les protéger. Toutefois, vous devez choisir ces porte-monnaie avec prudence puisque ces services hébergent vos bitcoins.</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="previewcol">
|
||||
|
||||
<div class="previewrow">
|
||||
<div>
|
||||
<div>
|
||||
<h2>Bitcoin-Qt</h2>
|
||||
<span><img src="/img/dow-win.png" alt="Windows" title="Windows" /><img src="/img/dow-linux.png" alt="Linux" title="Linux" /><img src="/img/dow-osx-uni.png" alt="Mac OS X" title="Mac OS X" /></span>
|
||||
<p>Bitcoin-Qt est le logiciel Bitcoin original sur lequel s'appuie le réseau. Il offre le plus haut niveau de sécurité, de vie privée et de stabilité. Toutefois, il offre moins de fonctionnalités et prend beaucoup d'espace et de mémoire.</p>
|
||||
<p><a href="telecharger">Télécharger</a></p>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Bitcoin-Qt</h2>
|
||||
<span><img src="/img/dow-win.png" alt="Windows" title="Windows" /><img src="/img/dow-linux.png" alt="Linux" title="Linux" /><img src="/img/dow-osx-uni.png" alt="Mac OS X" title="Mac OS X" /></span>
|
||||
<p>Bitcoin-Qt est le logiciel Bitcoin original sur lequel s'appuie le réseau. Il offre le plus haut niveau de sécurité, de vie privée et de stabilité. Toutefois, il offre moins de fonctionnalités et prend beaucoup d'espace et de mémoire.</p>
|
||||
<p><a href="telecharger">Télécharger</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="#" onclick="return false;"><img src="/img/clients/lo-bitcoin.png" alt="bitcoin-qt" />Bitcoin-Qt</a>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<h2>Multibit</h2>
|
||||
<span><img src="/img/dow-win.png" alt="Windows" title="Windows" /><img src="/img/dow-linux.png" alt="Linux" title="Linux" /><img src="/img/dow-osx-uni.png" alt="Mac OS X" title="Mac OS X" /></span>
|
||||
<p>Multibit est un client léger qui tâche d’être rapide et facile d'utilisation. Il se synchronise avec le réseau et est prêt en quelques minutes. Multibit supporte aussi plusieurs languages. Il est un bon choix pour les novices.</p>
|
||||
<p><a href="https://multibit.org/">Visiter le site</a></p>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Multibit</h2>
|
||||
<span><img src="/img/dow-win.png" alt="Windows" title="Windows" /><img src="/img/dow-linux.png" alt="Linux" title="Linux" /><img src="/img/dow-osx-uni.png" alt="Mac OS X" title="Mac OS X" /></span>
|
||||
<p>Multibit est un client léger qui tâche d’être rapide et facile d'utilisation. Il se synchronise avec le réseau et est prêt en quelques minutes. Multibit supporte aussi plusieurs languages. Il est un bon choix pour les novices.</p>
|
||||
<p><a href="https://multibit.org/">Visiter le site</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="#" onclick="return false;"><img src="/img/clients/lo-multibit.png" alt="multibit" />Multibit</a>
|
||||
</div>
|
||||
<div class="last">
|
||||
<div>
|
||||
<h2>Armory</h2>
|
||||
<span><img src="/img/dow-win.png" alt="Windows" title="Windows" /><img src="/img/dow-linux.png" alt="Linux" title="Linux" /></span>
|
||||
<p>Armory est un client Bitcoin avancé qui élargit les fonctionnalités de Bitcoin-Qt pour les super-utilisateurs. Armory offre plusieurs formes de sauvegardes et d'encryption et il permet une utilisation hors-ligne sécurisée.</p>
|
||||
<p><a href="http://bitcoinarmory.com/">Visiter le site</a></p>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Armory</h2>
|
||||
<span><img src="/img/dow-win.png" alt="Windows" title="Windows" /><img src="/img/dow-linux.png" alt="Linux" title="Linux" /></span>
|
||||
<p>Armory est un client Bitcoin avancé qui élargit les fonctionnalités de Bitcoin-Qt pour les super-utilisateurs. Armory offre plusieurs formes de sauvegardes et d'encryption et il permet une utilisation hors-ligne sécurisée.</p>
|
||||
<p><a href="http://bitcoinarmory.com/">Visiter le site</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="#" onclick="return false;"><img src="/img/clients/lo-armory.png" alt="armory" />Armory</a>
|
||||
</div>
|
||||
<div>
|
||||
<div>
|
||||
<h2>Electrum</h2>
|
||||
<span><img src="/img/dow-win.png" alt="Windows" title="Windows" /><img src="/img/dow-linux.png" alt="Linux" title="Linux" /><img src="/img/dow-osx-uni.png" alt="Mac OS X" title="Mac OS X" /><img src="/img/dow-android.png" alt="Android" title="Android" /></span>
|
||||
<p>Electrum se spécialise dans la rapidité et la simplicité. Electrum est très léger et utilise des serveurs distants pour augmenter ses performances. Il vous permet aussi de récupérer votre porte-monnaie à l'aide d'une phrase secrète.</p>
|
||||
<p><a href="http://electrum.org/">Visiter le site</a></p>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Electrum</h2>
|
||||
<span><img src="/img/dow-win.png" alt="Windows" title="Windows" /><img src="/img/dow-linux.png" alt="Linux" title="Linux" /><img src="/img/dow-osx-uni.png" alt="Mac OS X" title="Mac OS X" /><img src="/img/dow-android.png" alt="Android" title="Android" /></span>
|
||||
<p>Electrum se spécialise dans la rapidité et la simplicité. Electrum est très léger et utilise des serveurs distants pour augmenter ses performances. Il vous permet aussi de récupérer votre porte-monnaie à l'aide d'une phrase secrète.</p>
|
||||
<p><a href="http://electrum.org/">Visiter le site</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="#" onclick="return false;"><img src="/img/clients/lo-electrum.png" alt="electrum" />Electrum</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="previewrow">
|
||||
<h2><img src="/img/ico_mobile.svg" alt="mobile wallets" />Porte-monnaie mobile</h2>
|
||||
<p>Les porte-monnaie mobiles vous permettent d'apporter Bitcoin avec vous. Vous pouvez échanger des bitcoins de personne à personne et payer dans des boutiques par un simple scan du code QR affiché sur un écran, ou avec NFC.</p>
|
||||
<div>
|
||||
<div>
|
||||
<h2>Bitcoin Wallet</h2>
|
||||
<span><img src="/img/dow-android.png" alt="Android" title="Android" /><img src="/img/dow-blackberry.png" alt="BlackBerry OS" title="BlackBerry OS" /></span>
|
||||
<p>Bitcoin Wallet est un client léger pour Android et BlackBerry OS. Cette application n'a pas besoin d'être associée à un service en ligne. Et elle est compatible avec le scan de codes QR et la technologie NFC.</p>
|
||||
<p><a href="https://play.google.com/store/apps/details?id=de.schildbach.wallet">Visiter le site</a></p>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Bitcoin Wallet</h2>
|
||||
<span><img src="/img/dow-android.png" alt="Android" title="Android" /><img src="/img/dow-blackberry.png" alt="BlackBerry OS" title="BlackBerry OS" /></span>
|
||||
<p>Bitcoin Wallet est un client léger pour Android et BlackBerry OS. Cette application n'a pas besoin d'être associée à un service en ligne. Et elle est compatible avec le scan de codes QR et la technologie NFC.</p>
|
||||
<p><a href="https://play.google.com/store/apps/details?id=de.schildbach.wallet">Visiter le site</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="#" onclick="return false;"><img src="/img/clients/lo-bitcoinwallet.png" alt="bitcoin wallet" />Bitcoin<br>Wallet</a>
|
||||
</div>
|
||||
<div data-id="blockchaindesktop">
|
||||
<div class="walletwarning">
|
||||
<h2>Attention</h2>
|
||||
<span></span>
|
||||
<p>Les porte-monnaie web hébergent vos bitcoins. Ce qui signifie qu'ils peuvent perdre vos bitcoins à la suite d'un incident. À ce jour, aucun de ces services n'offre assez d'assurance pour être utilisé comme une banque.</p>
|
||||
<p><a href="javascript:walletshow();">OK, Je comprends</a></p>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Attention</h2>
|
||||
<span></span>
|
||||
<p>Les porte-monnaie web hébergent vos bitcoins. Ce qui signifie qu'ils peuvent perdre vos bitcoins à la suite d'un incident. À ce jour, aucun de ces services n'offre assez d'assurance pour être utilisé comme une banque.</p>
|
||||
<p><a href="javascript:walletshow();">OK, Je comprends</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="#" onclick="return false;"><img src="/img/clients/lo-hidden.png" alt="caché" /></a>
|
||||
</div>
|
||||
<div data-id="paytunia" class="last">
|
||||
<div class="walletwarning">
|
||||
<h2>Attention</h2>
|
||||
<span></span>
|
||||
<p>Les porte-monnaie web hébergent vos bitcoins. Ce qui signifie qu'ils peuvent perdre vos bitcoins à la suite d'un incident. À ce jour, aucun de ces services n'offre assez d'assurance pour être utilisé comme une banque.</p>
|
||||
<p><a href="javascript:walletshow();">OK, Je comprends</a></p>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Attention</h2>
|
||||
<span></span>
|
||||
<p>Les porte-monnaie web hébergent vos bitcoins. Ce qui signifie qu'ils peuvent perdre vos bitcoins à la suite d'un incident. À ce jour, aucun de ces services n'offre assez d'assurance pour être utilisé comme une banque.</p>
|
||||
<p><a href="javascript:walletshow();">OK, Je comprends</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="#" onclick="return false;"><img src="/img/clients/lo-hidden.png" alt="hidden" /></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="previewrow">
|
||||
<h2><img src="/img/ico_international.svg" alt="online wallets" />Porte-monnaie web</h2>
|
||||
<p>Les porte-monnaie web vous permettent d'utiliser vos bitcoins partout avec moins d'effort pour les protéger. Toutefois, vous devez choisir ces porte-monnaie avec prudence puisque ces services hébergent vos bitcoins.</p>
|
||||
<div data-id="blockchainmobile">
|
||||
<div class="walletwarning">
|
||||
<h2>Attention</h2>
|
||||
<span></span>
|
||||
<p>Les porte-monnaie web hébergent vos bitcoins. Ce qui signifie qu'ils peuvent perdre vos bitcoins à la suite d'un incident. À ce jour, aucun de ces services n'offre assez d'assurance pour être utilisé comme une banque.</p>
|
||||
<p><a href="javascript:walletshow();">OK, Je comprends</a></p>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Attention</h2>
|
||||
<span></span>
|
||||
<p>Les porte-monnaie web hébergent vos bitcoins. Ce qui signifie qu'ils peuvent perdre vos bitcoins à la suite d'un incident. À ce jour, aucun de ces services n'offre assez d'assurance pour être utilisé comme une banque.</p>
|
||||
<p><a href="javascript:walletshow();">OK, Je comprends</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="#" onclick="return false;"><img src="/img/clients/lo-hidden.png" alt="caché" /></a>
|
||||
</div>
|
||||
<div data-id="bips">
|
||||
<div class="walletwarning">
|
||||
<h2>Attention</h2>
|
||||
<span></span>
|
||||
<p>Les porte-monnaie web hébergent vos bitcoins. Ce qui signifie qu'ils peuvent perdre vos bitcoins à la suite d'un incident. À ce jour, aucun de ces services n'offre assez d'assurance pour être utilisé comme une banque.</p>
|
||||
<p><a href="javascript:walletshow();">OK, Je comprends</a></p>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Attention</h2>
|
||||
<span></span>
|
||||
<p>Les porte-monnaie web hébergent vos bitcoins. Ce qui signifie qu'ils peuvent perdre vos bitcoins à la suite d'un incident. À ce jour, aucun de ces services n'offre assez d'assurance pour être utilisé comme une banque.</p>
|
||||
<p><a href="javascript:walletshow();">OK, Je comprends</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="#" onclick="return false;"><img src="/img/clients/lo-hidden.png" alt="hidden" /></a>
|
||||
</div>
|
||||
<div data-id="coinbase" class="last">
|
||||
<div class="walletwarning">
|
||||
<h2>Attention</h2>
|
||||
<span></span>
|
||||
<p>Les porte-monnaie web hébergent vos bitcoins. Ce qui signifie qu'ils peuvent perdre vos bitcoins à la suite d'un incident. À ce jour, aucun de ces services n'offre assez d'assurance pour être utilisé comme une banque.</p>
|
||||
<p><a href="javascript:walletshow();">OK, Je comprends</a></p>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Attention</h2>
|
||||
<span></span>
|
||||
<p>Les porte-monnaie web hébergent vos bitcoins. Ce qui signifie qu'ils peuvent perdre vos bitcoins à la suite d'un incident. À ce jour, aucun de ces services n'offre assez d'assurance pour être utilisé comme une banque.</p>
|
||||
<p><a href="javascript:walletshow();">OK, Je comprends</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="#" onclick="return false;"><img src="/img/clients/lo-hidden.png" alt="hidden" /></a>
|
||||
</div>
|
||||
|
@ -128,49 +180,69 @@ title: Choisir votre porte-monnaie - Bitcoin
|
|||
|
||||
<div class="previewcol">.</div>
|
||||
|
||||
<div style="display:none;">
|
||||
<div class="previewrow" style="display:none;">
|
||||
<div id="blockchaindesktop">
|
||||
<div class="walletnormal">
|
||||
<h2>Blockchain.info</h2>
|
||||
<span><img src="/img/dow-android.png" alt="Android" title="Android" /><img src="/img/dow-ios.png" alt="iOS" title="iOS" /></span>
|
||||
<p>Blockchain.info est un porte-monnaie web hybride pour téléphone portable. Il est disponible pour iPhones dans une version compatible avec les restrictions d'Apple et il inclut les options de blockchain.info .</p>
|
||||
<p><a href="https://blockchain.info/wallet/">Visiter le site</a></p>
|
||||
<div>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Blockchain.info</h2>
|
||||
<span><img src="/img/dow-android.png" alt="Android" title="Android" /><img src="/img/dow-ios.png" alt="iOS" title="iOS" /></span>
|
||||
<p>Blockchain.info est un porte-monnaie web hybride pour téléphone portable. Il est disponible pour iPhones dans une version compatible avec les restrictions d'Apple et il inclut les options de blockchain.info .</p>
|
||||
<p><a href="https://blockchain.info/wallet/">Visiter le site</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="https://blockchain.info/wallet/"><img src="/img/clients/lo-blockchain.png" alt="blockchain" />Blockchain<br>.info</a>
|
||||
</div>
|
||||
<div id="blockchainmobile">
|
||||
<div class="walletnormal">
|
||||
<h2>Blockchain.info</h2>
|
||||
<span></span>
|
||||
<p>Est un porte-monnaie web hybride très simple. Le service conserve une version encryptée de votre porte-monnaie mais le décryptage se passe dans votre navigateur. Par sécurité, utilisez l'extension et les emails de sauvegarde.</p>
|
||||
<p><a href="http://blockchain.info/wallet/chrome-extension">Visiter le site</a></p>
|
||||
<div>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Blockchain.info</h2>
|
||||
<span></span>
|
||||
<p>Est un porte-monnaie web hybride très simple. Le service conserve une version encryptée de votre porte-monnaie mais le décryptage se passe dans votre navigateur. Par sécurité, utilisez l'extension et les emails de sauvegarde.</p>
|
||||
<p><a href="http://blockchain.info/wallet/chrome-extension">Visiter le site</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="http://blockchain.info/wallet/chrome-extension"><img src="/img/clients/lo-blockchain.png" alt="blockchain" />Blockchain<br>.info</a>
|
||||
</div>
|
||||
<div id="paytunia">
|
||||
<div class="walletnormal">
|
||||
<h2>Paytunia</h2>
|
||||
<span><img src="/img/dow-ios.png" alt="iOS" title="iOS" /></span>
|
||||
<p>Paytunia est un porte-monnaie web offert par Paymium qui fonctionne avec Bitcoin-central pour vous donner accès aux échanges de bitcoins depuis votre téléphone portable. Il est disponible pour iPhone et devrait supporter Android sous peu.</p>
|
||||
<p><a href="https://paytunia.com/">Visiter le site</a></p>
|
||||
<div>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Paytunia</h2>
|
||||
<span><img src="/img/dow-ios.png" alt="iOS" title="iOS" /></span>
|
||||
<p>Paytunia est un porte-monnaie web offert par Paymium qui fonctionne avec Bitcoin-central pour vous donner accès aux échanges de bitcoins depuis votre téléphone portable. Il est disponible pour iPhone et devrait supporter Android sous peu.</p>
|
||||
<p><a href="https://paytunia.com/">Visiter le site</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="https://paytunia.com/"><img src="/img/clients/lo-paytunia.png" alt="paytunia" />Paytunia</a>
|
||||
</div>
|
||||
<div id="bips">
|
||||
<div class="walletnormal">
|
||||
<h2>BIPS</h2>
|
||||
<span></span>
|
||||
<p>BIPS est un porte-monnaie web qui permet d'acheter et de vendre des bitcoins facilement dans plusieurs pays. Il offre un service de stockage hors ligne, une fonction d'importation et plusieurs outils marchands.</p>
|
||||
<p><a href="https://bips.me/">Visiter le site</a></p>
|
||||
<div>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>BIPS</h2>
|
||||
<span></span>
|
||||
<p>BIPS est un porte-monnaie web qui permet d'acheter et de vendre des bitcoins facilement dans plusieurs pays. Il offre un service de stockage hors ligne, une fonction d'importation et plusieurs outils marchands.</p>
|
||||
<p><a href="https://bips.me/">Visiter le site</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="https://bips.me/"><img src="/img/clients/lo-bips.png" alt="BIPS" />BIPS</a>
|
||||
</div>
|
||||
<div id="coinbase">
|
||||
<div class="walletnormal">
|
||||
<h2>Coinbase</h2>
|
||||
<span></span>
|
||||
<p>Coinbase est un porte-monnaie web qui vise à être le plus facile à utiliser. Il offre aussi une application Android, des outils marchands et une intégration avec les comptes bancaires US pour acheter et vendre des bitcoins.</p>
|
||||
<p><a href="https://coinbase.com/">Visiter le site</a></p>
|
||||
<div>
|
||||
<div></div>
|
||||
<div>
|
||||
<h2>Coinbase</h2>
|
||||
<span></span>
|
||||
<p>Coinbase est un porte-monnaie web qui vise à être le plus facile à utiliser. Il offre aussi une application Android, des outils marchands et une intégration avec les comptes bancaires US pour acheter et vendre des bitcoins.</p>
|
||||
<p><a href="https://coinbase.com/">Visiter le site</a></p>
|
||||
</div>
|
||||
<div></div>
|
||||
</div>
|
||||
<a href="https://coinbase.com/"><img src="/img/clients/lo-coinbase.png" alt="coinbase" />Coinbase</a>
|
||||
</div>
|
||||
|
|
BIN
img/bubble.png
Before Width: | Height: | Size: 4.4 KiB |
|
@ -27,15 +27,15 @@
|
|||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.4"
|
||||
inkscape:cx="72.237607"
|
||||
inkscape:cy="129.86938"
|
||||
inkscape:zoom="1.4142136"
|
||||
inkscape:cx="122.32943"
|
||||
inkscape:cy="165.12819"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1680"
|
||||
inkscape:window-height="1026"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="1000"
|
||||
inkscape:window-x="1680"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
|
@ -56,11 +56,10 @@
|
|||
id="layer1"
|
||||
transform="translate(0,-772.36218)">
|
||||
<path
|
||||
style="fill:#f1f8fb;fill-opacity:1;stroke:#4892b2;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:7.5,2.5;stroke-dashoffset:0;fill-rule:nonzero"
|
||||
d="M 0.97951451,33.011441 1.0101526,254.92638 141.42136,311.07914 278.92556,257.45176 279.05182,32.746212 z"
|
||||
style="fill:#f1f8fb;fill-opacity:1;fill-rule:nonzero;stroke:#4892b2;stroke-width:2.4952898;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.48586986, 2.49528995;stroke-dashoffset:0"
|
||||
d="m 1.2851726,773.6355 -0.024107,221.49684 140.2013639,55.96826 137.27276,-53.51078 -0.001,-223.9599 z"
|
||||
id="path4155"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc"
|
||||
transform="translate(0,740.36218)" />
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.1 KiB |
BIN
img/bubblebottom.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
65
img/bubblebottom.svg
Normal file
|
@ -0,0 +1,65 @@
|
|||
<?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="280"
|
||||
height="64"
|
||||
id="svg4147"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.3.1 r9886"
|
||||
inkscape:export-filename="/media/X/bitcoin.org/bitcoin.org_choose/img/bubble.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
sodipodi:docname="bubblebottom.svg">
|
||||
<defs
|
||||
id="defs4149" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2"
|
||||
inkscape:cx="146.64031"
|
||||
inkscape:cy="118.60676"
|
||||
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="metadata4152">
|
||||
<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,-988.3622)">
|
||||
<path
|
||||
style="fill:#f1f8fb;fill-opacity:1;fill-rule:nonzero;stroke:#4892b2;stroke-width:2.4952898;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.48586986, 2.49528995;stroke-dashoffset:0"
|
||||
d="m 1.2851726,772.39699 -0.024107,221.4968 140.2013644,55.96831 137.27276,-53.51081 -10e-4,-223.9599 z"
|
||||
id="path4155"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
BIN
img/bubblemiddle.png
Normal file
After Width: | Height: | Size: 297 B |
65
img/bubblemiddle.svg
Normal file
|
@ -0,0 +1,65 @@
|
|||
<?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="280"
|
||||
height="10"
|
||||
id="svg4147"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.3.1 r9886"
|
||||
inkscape:export-filename="/media/X/bitcoin.org/bitcoin.org_choose/img/bubble.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
sodipodi:docname="bubblebottom.svg">
|
||||
<defs
|
||||
id="defs4149" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="45.254834"
|
||||
inkscape:cx="9.610461"
|
||||
inkscape:cy="1.7695842"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="1000"
|
||||
inkscape:window-x="1680"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata4152">
|
||||
<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,-1042.3622)">
|
||||
<path
|
||||
style="fill:#f1f8fb;fill-opacity:1;fill-rule:nonzero;stroke:#4892b2;stroke-width:2.4952898;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.48586986, 2.49528995;stroke-dashoffset:0"
|
||||
d="m 1.2851726,834.04016 -0.024107,221.49674 140.2013644,55.9683 137.27276,-53.5108 -10e-4,-223.95984 z"
|
||||
id="path4155"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
BIN
img/bubbletop.png
Normal file
After Width: | Height: | Size: 976 B |
65
img/bubbletop.svg
Normal file
|
@ -0,0 +1,65 @@
|
|||
<?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="280"
|
||||
height="10"
|
||||
id="svg4147"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.3.1 r9886"
|
||||
inkscape:export-filename="/media/X/bitcoin.org/bitcoin.org_choose/img/bubble.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
sodipodi:docname="bubbletop.svg">
|
||||
<defs
|
||||
id="defs4149" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="11.313709"
|
||||
inkscape:cx="40.899698"
|
||||
inkscape:cy="10.787719"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="1000"
|
||||
inkscape:window-x="1680"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata4152">
|
||||
<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,-1042.3622)">
|
||||
<path
|
||||
style="fill:#f1f8fb;fill-opacity:1;fill-rule:nonzero;stroke:#4892b2;stroke-width:2.4952898;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.48586986, 2.49528995;stroke-dashoffset:0"
|
||||
d="m 1.2851726,1043.6331 -0.024107,221.4968 140.2013644,55.9683 137.27276,-53.5108 -10e-4,-223.9599 z"
|
||||
id="path4155"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 4.4 KiB |
|
@ -27,15 +27,15 @@
|
|||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.979899"
|
||||
inkscape:cx="45.737949"
|
||||
inkscape:cy="71.430369"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="335.19893"
|
||||
inkscape:cy="25.701982"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1680"
|
||||
inkscape:window-height="1026"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="1000"
|
||||
inkscape:window-x="1680"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
|
@ -56,11 +56,10 @@
|
|||
id="layer1"
|
||||
transform="translate(0,-772.36218)">
|
||||
<path
|
||||
style="fill:#fff6f0;fill-opacity:1;stroke:#b95357;stroke-width:2.50000000000000000;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:7.50000000000000000, 2.50000000000000000;stroke-dashoffset:0;fill-rule:nonzero"
|
||||
d="M 0.97951451,33.011441 1.0101526,254.92638 141.42136,311.07914 278.92556,257.45176 279.05182,32.746212 z"
|
||||
style="fill:#fff6f0;fill-opacity:1;fill-rule:nonzero;stroke:#b95357;stroke-width:2.49528980000000011;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.48586986000000021, 2.49528995000000009;stroke-dashoffset:0"
|
||||
d="m 1.2851726,773.6355 -0.024107,221.49684 140.2013639,55.96826 137.27276,-53.51078 -0.001,-223.9599 z"
|
||||
id="path4155"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc"
|
||||
transform="translate(0,740.36218)" />
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
BIN
img/bubblewarnbottom.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
65
img/bubblewarnbottom.svg
Normal file
|
@ -0,0 +1,65 @@
|
|||
<?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="280"
|
||||
height="64"
|
||||
id="svg4147"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.3.1 r9886"
|
||||
inkscape:export-filename="/media/X/bitcoin.org/bitcoin.org_choose/img/bubble.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
sodipodi:docname="bubblebottom.svg">
|
||||
<defs
|
||||
id="defs4149" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2"
|
||||
inkscape:cx="146.64031"
|
||||
inkscape:cy="118.60676"
|
||||
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="metadata4152">
|
||||
<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,-988.3622)">
|
||||
<path
|
||||
style="fill:#fff6f0;fill-opacity:1;fill-rule:nonzero;stroke:#b95357;stroke-width:2.49528980000000011;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.48586986000000021, 2.49528995000000009;stroke-dashoffset:0"
|
||||
d="m 1.2851726,772.39699 -0.024107,221.4968 140.2013644,55.96831 137.27276,-53.51081 -10e-4,-223.9599 z"
|
||||
id="path4155"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
BIN
img/bubblewarnmiddle.png
Normal file
After Width: | Height: | Size: 301 B |
65
img/bubblewarnmiddle.svg
Normal file
|
@ -0,0 +1,65 @@
|
|||
<?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="280"
|
||||
height="10"
|
||||
id="svg4147"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.3.1 r9886"
|
||||
inkscape:export-filename="/media/X/bitcoin.org/bitcoin.org_choose/img/bubble.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
sodipodi:docname="bubblewarnmiddle.svg">
|
||||
<defs
|
||||
id="defs4149" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6568543"
|
||||
inkscape:cx="1.7371966"
|
||||
inkscape:cy="-0.70323794"
|
||||
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="metadata4152">
|
||||
<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,-1042.3622)">
|
||||
<path
|
||||
style="fill:#fff6f0;fill-opacity:1;fill-rule:nonzero;stroke:#b95357;stroke-width:2.49500000000000011;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.48500000000000032, 2.49500000000000011;stroke-dashoffset:0"
|
||||
d="m 1.2851726,834.04016 -0.024107,221.49674 140.2013644,55.9683 137.27276,-53.5108 -10e-4,-223.95984 z"
|
||||
id="path4155"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
BIN
img/bubblewarntop.png
Normal file
After Width: | Height: | Size: 1,014 B |
65
img/bubblewarntop.svg
Normal file
|
@ -0,0 +1,65 @@
|
|||
<?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="280"
|
||||
height="10"
|
||||
id="svg4147"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.3.1 r9886"
|
||||
inkscape:export-filename="/media/X/bitcoin.org/bitcoin.org_choose/img/bubble.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"
|
||||
sodipodi:docname="bubblewarntop.svg">
|
||||
<defs
|
||||
id="defs4149" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="461.92324"
|
||||
inkscape:cy="-196.6162"
|
||||
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="metadata4152">
|
||||
<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,-1042.3622)">
|
||||
<path
|
||||
style="fill:#fff6f0;fill-opacity:1;fill-rule:nonzero;stroke:#b95357;stroke-width:2.49500000000000011;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:7.48500000000000032, 2.49500000000000011;stroke-dashoffset:0"
|
||||
d="m 1.2851726,1043.6331 -0.024107,221.4968 140.2013644,55.9683 137.27276,-53.5108 -10e-4,-223.9599 z"
|
||||
id="path4155"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 5.4 KiB After Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 6.7 KiB After Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 2.8 KiB |
|
@ -32,7 +32,7 @@ for(var i=0,nd=document.getElementsByTagName('*'),n=nd.length;i<n;i++){
|
|||
d.innerHTML=s.innerHTML;
|
||||
d.className='';
|
||||
//Workaround for browsers that don't handle re-rendering class styles and svg (they have backgroundImage hardcoded in HTML)
|
||||
if(d.style.backgroundImage!='')d.style.backgroundImage=d.style.backgroundImage.replace('bubblewarn','bubble');
|
||||
for(var ii=0,nn=d.childNodes.length;ii<nn;ii++){if(d.childNodes[ii].nodeType==1&&d.childNodes[ii].style.backgroundImage!='')d.childNodes[ii].style.backgroundImage=d.childNodes[ii].style.backgroundImage.replace('bubblewarn','bubble');}
|
||||
for(var ii=0,as=d.parentNode.getElementsByTagName('A'),nn=as.length;ii<nn;ii++){if(as[ii].parentNode==d.parentNode){var dd=as[ii];break;}}
|
||||
for(var ii=0,as=s.parentNode.getElementsByTagName('A'),nn=as.length;ii<nn;ii++){if(as[ii].parentNode==s.parentNode){var ss=as[ii];break;}}
|
||||
dd.innerHTML=ss.innerHTML;
|
||||
|
|