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 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.
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 @@+ The library is targeting both `.NET Standard 2.0` and `.NET Standard 2.1` for optimal compatibility +
+.NET implementation | +Version Support | +
---|---|
.NET Core | 2.0 and higher |
.NET Framework | 4.6.1 and higher |
Mono | 5.4 and higher |
Xamarin.iOS | 10.14 and higher |
Xamarin.Android | 8.0 and higher |
UWP | 10.0.16299 and higher |
Unity | 2018.1 and higher |
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 @@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.