Skip to content

Commit

Permalink
Minor aesthetic improvements.
Browse files Browse the repository at this point in the history
  • Loading branch information
GlitchedPolygons committed Dec 16, 2023
1 parent 972ab22 commit b2306db
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<main>

<div class="top-row px-4">
<div id="topnavbar" class="top-row px-4">

<a href="https://glitchedpolygons.com"
target="_blank">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@
class="form-label mt-4">
Ciphertext
</label>
<textarea class="form-control" id="ciphertext" rows="4" onClick="this.select();" @bind="encryptionCiphertext"></textarea>
<textarea class="form-control" id="ciphertext" rows="4" onClick="this.select();" @bind="encryptionCiphertext" readonly></textarea>
</div>

<div style="display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.5rem">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@

<label class="col-form-label"
for="publicKey">
Additional entropy @(additionalEntropyCRC32.HasValue ? $"(CRC-32: {additionalEntropyCRC32.Value})" : "")
Additional entropy <code>@(additionalEntropyCRC32.HasValue ? $"(CRC-32: {additionalEntropyCRC32.Value})" : "")</code>
</label>

<input type="text"
Expand Down
10 changes: 10 additions & 0 deletions GlitchedPolygons.GlitchEd25519.BlazorWebApp/wwwroot/css/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,13 @@ code {
background: #22313F !important;
color: #fff !important;
}

#topnavbar {
border: none;
background-color: #1d1d1d;
}

.paint-canvas {
background-color: #1d1d1d;
border: 1px #4e4e4e solid !important;
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<link rel="manifest" href="ed25519.webmanifest" />
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css"/>
<link rel="stylesheet" href="css/app.css"/>
<!-- <link rel="stylesheet" href="css/dark.css"/>-->
<link href="GlitchedPolygons.GlitchEd25519.BlazorWebApp.styles.css" rel="stylesheet"/>
</head>

Expand Down

0 comments on commit b2306db

Please sign in to comment.