forked from GTC6244/LitSharp
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 0cee067
Showing
399 changed files
with
513,923 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* -text |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" | ||
/> | ||
<title>NodeView</title> | ||
<base href="/LitSharp/" /> | ||
<link href="css/bootstrap/bootstrap.min.css" rel="stylesheet" /> | ||
<link href="css/app.css" rel="stylesheet" /> | ||
<link rel="icon" type="image/png" href="favicon.png" /> | ||
<link href="NodeView.styles.css" rel="stylesheet" /> | ||
<link | ||
rel="stylesheet" | ||
href="_content/Radzen.Blazor/css/standard-base.css" | ||
/> | ||
<link href="_content/Z.Blazor.Diagrams/style.min.css" rel="stylesheet" /> | ||
<!-- If you want the default style --> | ||
<link | ||
href="_content/Z.Blazor.Diagrams/default.styles.min.css" | ||
rel="stylesheet" | ||
/> | ||
</head> | ||
|
||
<body> | ||
<div id="app"> | ||
<svg class="loading-progress"> | ||
<circle r="40%" cx="50%" cy="50%" /> | ||
<circle r="40%" cx="50%" cy="50%" /> | ||
</svg> | ||
<div class="loading-progress-text"></div> | ||
</div> | ||
|
||
<div id="blazor-error-ui"> | ||
An unhandled error has occurred. | ||
<a href="" class="reload">Reload</a> | ||
<a class="dismiss">🗙</a> | ||
</div> | ||
<script src="_framework/blazor.webassembly.js" autostart="false"></script> | ||
<script src="_content/Z.Blazor.Diagrams/script.min.js"></script> | ||
<script src="_content/Radzen.Blazor/Radzen.Blazor.js"></script> | ||
<script src="brotliloader.min.js" type="module"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,153 @@ | ||
@import '_content/Z.Blazor.Diagrams/Z.Blazor.Diagrams.bundle.scp.css'; | ||
|
||
/* /Shared/MainLayout.razor.rz.scp.css */ | ||
.page[b-k6srozvh3i] { | ||
position: relative; | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
main[b-k6srozvh3i] { | ||
flex: 1; | ||
} | ||
|
||
.sidebar[b-k6srozvh3i] { | ||
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); | ||
} | ||
|
||
.top-row[b-k6srozvh3i] { | ||
background-color: #f7f7f7; | ||
border-bottom: 1px solid #d6d5d5; | ||
justify-content: flex-end; | ||
height: 3.5rem; | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
.top-row[b-k6srozvh3i] a, .top-row[b-k6srozvh3i] .btn-link { | ||
white-space: nowrap; | ||
margin-left: 1.5rem; | ||
text-decoration: none; | ||
} | ||
|
||
.top-row[b-k6srozvh3i] a:hover, .top-row[b-k6srozvh3i] .btn-link:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
.top-row[b-k6srozvh3i] a:first-child { | ||
overflow: hidden; | ||
text-overflow: ellipsis; | ||
} | ||
|
||
@media (max-width: 640.98px) { | ||
.top-row:not(.auth)[b-k6srozvh3i] { | ||
display: none; | ||
} | ||
|
||
.top-row.auth[b-k6srozvh3i] { | ||
justify-content: space-between; | ||
} | ||
|
||
.top-row[b-k6srozvh3i] a, .top-row[b-k6srozvh3i] .btn-link { | ||
margin-left: 0; | ||
} | ||
} | ||
|
||
@media (min-width: 641px) { | ||
.page[b-k6srozvh3i] { | ||
flex-direction: row; | ||
} | ||
|
||
.sidebar[b-k6srozvh3i] { | ||
width: 250px; | ||
height: 100vh; | ||
position: sticky; | ||
top: 0; | ||
} | ||
|
||
.top-row[b-k6srozvh3i] { | ||
position: sticky; | ||
top: 0; | ||
z-index: 1; | ||
} | ||
|
||
.top-row.auth[b-k6srozvh3i] a:first-child { | ||
flex: 1; | ||
text-align: right; | ||
width: 0; | ||
} | ||
|
||
.top-row[b-k6srozvh3i], article[b-k6srozvh3i] { | ||
padding-left: 2rem !important; | ||
padding-right: 1.5rem !important; | ||
} | ||
} | ||
/* /Shared/NavMenu.razor.rz.scp.css */ | ||
.navbar-toggler[b-jamgk78ufx] { | ||
background-color: rgba(255, 255, 255, 0.1); | ||
} | ||
|
||
.top-row[b-jamgk78ufx] { | ||
height: 3.5rem; | ||
background-color: rgba(0,0,0,0.4); | ||
} | ||
|
||
.navbar-brand[b-jamgk78ufx] { | ||
font-size: 1.1rem; | ||
} | ||
|
||
.oi[b-jamgk78ufx] { | ||
width: 2rem; | ||
font-size: 1.1rem; | ||
vertical-align: text-top; | ||
top: -2px; | ||
} | ||
|
||
.nav-item[b-jamgk78ufx] { | ||
font-size: 0.9rem; | ||
padding-bottom: 0.5rem; | ||
} | ||
|
||
.nav-item:first-of-type[b-jamgk78ufx] { | ||
padding-top: 1rem; | ||
} | ||
|
||
.nav-item:last-of-type[b-jamgk78ufx] { | ||
padding-bottom: 1rem; | ||
} | ||
|
||
.nav-item[b-jamgk78ufx] a { | ||
color: #d7d7d7; | ||
border-radius: 4px; | ||
height: 3rem; | ||
display: flex; | ||
align-items: center; | ||
line-height: 3rem; | ||
} | ||
|
||
.nav-item[b-jamgk78ufx] a.active { | ||
background-color: rgba(255,255,255,0.25); | ||
color: white; | ||
} | ||
|
||
.nav-item[b-jamgk78ufx] a:hover { | ||
background-color: rgba(255,255,255,0.1); | ||
color: white; | ||
} | ||
|
||
@media (min-width: 641px) { | ||
.navbar-toggler[b-jamgk78ufx] { | ||
display: none; | ||
} | ||
|
||
.collapse[b-jamgk78ufx] { | ||
/* Never collapse the sidebar for wide screens */ | ||
display: block; | ||
} | ||
|
||
.nav-scrollable[b-jamgk78ufx] { | ||
/* Allow sidebar to scroll for tall menus */ | ||
height: calc(100vh - 3.5rem); | ||
overflow-y: auto; | ||
} | ||
} |
Oops, something went wrong.