diff --git a/docs/assets/css/stylesheet.css b/docs/assets/css/stylesheet.css index 2d556c1..660f4d2 100644 --- a/docs/assets/css/stylesheet.css +++ b/docs/assets/css/stylesheet.css @@ -1804,6 +1804,9 @@ hr { } .accordion .card-body { line-height: 26px; + border: 1px solid #aaa; + margin-top: -4px; + border-radius: 4px; } .accordion.arrow-right .card-header a { padding-left: 1.25rem; @@ -2009,6 +2012,19 @@ hr { -webkit-transform: translateY(-3px); transform: translateY(-3px); } +.nav-tabs .nav-item .nav-link:not(.active):after { + height: 2px; + width: calc(100% - 10px); + content: ' '; + background-color: #aaa; + display: block; + margin: 0 5px; + position: absolute; + bottom: -3px; + left: 0; + -webkit-transform: translateY(-3px); + transform: translateY(-3px); +} .nav-tabs .nav-item .nav-link:not(.active):hover { color: #0366d6; } @@ -2044,7 +2060,6 @@ hr { } .nav-tabs:not(.flex-column) { - flex-wrap: nowrap; overflow: hidden; overflow-x: auto; -ms-overflow-style: -ms-autohiding-scrollbar; diff --git a/docs/index.html b/docs/index.html index 0d00a2d..4c0a13a 100644 --- a/docs/index.html +++ b/docs/index.html @@ -113,7 +113,7 @@

CryptoExchange.Net

- +

CryptoExchange.Net is a base library which is used to implement different cryptocurrency (exchange) API's. It provides a standardized way of implementing different API's, which results in a very similar experience for users of the API implementations.

All libraries can be used in the same project as well as indivually.

The following API's are directly supported. Note that there are 3rd party implementations going around, but only these are created and supported by me

@@ -124,19 +124,37 @@ Repository Nuget - BinanceJKorf/Binance.Net - BitfinexJKorf/Bitfinex.Net - BitgetJKorf/Bitget.Net - BybitJKorf/Bybit.Net - CoinExJKorf/CoinEx.Net - CoinGeckoJKorf/CoinGecko.Net - HuobiJKorf/Huobi.Net - KrakenJKorf/Kraken.Net - KucoinJKorf/Kucoin.Net - MexcJKorf/Mexc.Net - OKXJKorf/OKX.Net + BinanceJKorf/Binance.Net + BitfinexJKorf/Bitfinex.Net + BitgetJKorf/Bitget.Net + BybitJKorf/Bybit.Net + CoinExJKorf/CoinEx.Net + CoinGeckoJKorf/CoinGecko.Net + HuobiJKorf/Huobi.Net + KrakenJKorf/Kraken.Net + KucoinJKorf/Kucoin.Net + MexcJKorf/Mexc.Net + OKXJKorf/OKX.Net +

Supported Frameworks

+

+ The library is targeting both `.NET Standard 2.0` and `.NET Standard 2.1` for optimal compatibility +

+ + + + + + + + + + + + +
.NET implementationVersion Support
.NET Core2.0 and higher
.NET Framework4.6.1 and higher
Mono5.4 and higher
Xamarin.iOS10.14 and higher
Xamarin.Android8.0 and higher
UWP10.0.16299 and higher
Unity2018.1 and higher
+

Discord

A Discord server is available here. Feel free to join for discussion and/or questions around the CryptoExchange.Net and implementation libraries.

@@ -171,7 +189,7 @@

Installation

-

Add the package via dotnet, or add it via the package manager

+

Add the package via dotnet, or add it via the package manager. Any number of libraries can be installed, just make sure you're always using the latest at that moment.