presentation

broken/ef
Paul Schneider 2 years ago
parent 519a4fbd46
commit 2d5438c943
7 changed files with 61 additions and 7846 deletions

@ -1,19 +1,28 @@
<Properties StartupConfiguration="{9D758F00-17FF-433D-B088-F9C2D97C9BD1}|Default">
<MonoDevelop.Ide.Workbench ActiveDocument="src/isn/Program.cs">
<Files>
<File FileName="src/isn/Program.cs" Line="62" Column="9" />
<File FileName="src/isn/Program.cs" Line="66" Column="10" />
</Files>
<Pads>
<Pad Id="ProjectPad">
<State name="__root__">
<Node name="isn" expanded="True">
<Node name="src" expanded="True">
<Node name="isn" expanded="True">
<Node name="Program.cs" selected="True" />
</Node>
<Node name="isn" expanded="True" selected="True" />
<Node name="isn.abst" expanded="True" />
</Node>
<Node name="test" expanded="True" />
<Node name="test" expanded="True">
<Node name="isnd.tests" expanded="True" />
</Node>
</Node>
</State>
</Pad>
<Pad Id="MonoDevelop.UnitTesting.TestPad">
<State name="__root__">
<Node name="isn" expanded="True">
<Node name="test" expanded="True">
<Node name="isn.tests" selected="True" />
</Node>
</Node>
</State>
</Pad>

@ -45,10 +45,11 @@ namespace isnd.Controllers
latest = latest,
pkgid = pkgid,
totalHits = packageVersion.Count(),
data = packageVersion.Take(10).ToArray()
data = packageVersion.Take(MAX_PKG_VERSION_LIST).ToArray()
});
}
const int MAX_PKG_VERSION_LIST = 50;
}
}

@ -24,12 +24,21 @@
</dd>
<dt>
@Html.DisplayNameFor(model => model.latest.FullString)
</dt>
<dd>
<a href="@Model.latest.NugetLink" >@Html.DisplayFor(model => model.latest.FullString)</a>
<a href="@Model.latest.NuspecLink" >nuspec</a>
<i class="extinfo">(version count : @Model.totalHits)</i>
</dd>
</dl>
<h4>Integration</h4>
<hr />
<pre>
<code
title="click pour copie"
onclick="navigator.clipboard.writeText(this.innerText);alert('copié')">&lt;PackageReference Include="@Model.pkgid" Version="@Model.latest.FullString" /&gt;</code>
</pre>
</div>
<div>
@Html.ActionLink("Edit", "Edit", new { pkgid = Model.pkgid, version = Model.latest.FullString }) |

@ -0,0 +1,4 @@
site.css: site.scss
scss $^ > $@

File diff suppressed because it is too large Load Diff

@ -56,7 +56,7 @@ body {
line-height: 1.5;
color: #d6d6d6;
text-align: left;
background-color: #272727; }
background-color: #000d19; }
[tabindex="-1"]:focus:not(:focus-visible) {
outline: 0 !important; }
@ -392,7 +392,7 @@ mark,
.img-thumbnail {
padding: 0.25rem;
background-color: #272727;
background-color: #000d19;
border: 1px solid #dee2e6;
border-radius: 0.25rem;
max-width: 100%;
@ -2965,11 +2965,11 @@ input[type="button"].btn-block {
.custom-range:focus {
outline: none; }
.custom-range:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #272727, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
box-shadow: 0 0 0 1px #000d19, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
.custom-range:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #272727, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
box-shadow: 0 0 0 1px #000d19, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
.custom-range:focus::-ms-thumb {
box-shadow: 0 0 0 1px #272727, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
box-shadow: 0 0 0 1px #000d19, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
.custom-range::-moz-focus-outer {
border: 0; }
.custom-range::-webkit-slider-thumb {
@ -3101,8 +3101,8 @@ input[type="button"].btn-block {
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
color: #495057;
background-color: #272727;
border-color: #dee2e6 #dee2e6 #272727; }
background-color: #000d19;
border-color: #dee2e6 #dee2e6 #000d19; }
.nav-tabs .dropdown-menu {
margin-top: -1px;
border-top-left-radius: 0;
@ -7829,4 +7829,13 @@ a.text-dark:hover, a.text-dark:focus {
color: #77ffff;
background-color: black; }
/*# sourceMappingURL=site.css.map */
.extinfo {
color: #b3b917;
background-color: black;
font-size: small;
font-family: cursive; }
pre code {
color: #a9ffff;
background-color: #2e2d2d;
cursor: copy; }

@ -1,5 +1,5 @@
// Your variable overrides
$body-bg: rgb(39, 39, 39);
$body-bg: rgb(0, 13, 25);
$body-color: rgb(214, 214, 214);
@import "../lib/bootstrap/scss/bootstrap";
@ -46,7 +46,7 @@ $body-color: rgb(214, 214, 214);
}
// Your variable overrides
$body-bg: #000;
$body-color: #111;
$body-color: #bbb;
$theme-colors: (
"primary": #0074d9,
"danger": #ff4136
@ -87,3 +87,16 @@ background-color: black;
color: rgb(119, 255, 255);
background-color: black;
}
.extinfo {
color: rgb(179, 185, 23);
background-color: black;
font-size: small;
font-family: cursive;
}
pre code {
color: rgb(169, 255, 255);
background-color: rgb(46, 45, 45);
cursor: copy;
}
Loading…