Skip to content

Commit 405742a

Browse files
committed
deploy: f7a10d2
0 parents  commit 405742a

222 files changed

Lines changed: 1590 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* -text

.nojekyll

Whitespace-only changes.

404.html

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<meta charset="utf-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
7+
<title>BlazorWasmApp1</title>
8+
<base href="/BlazorWasmPreRendering.Build/" />
9+
<link href="css/bootstrap/bootstrap.min.css" rel="stylesheet" />
10+
<link href="css/app.css" rel="stylesheet" />
11+
<link href="BlazorWasmApp1.styles.css" rel="stylesheet" />
12+
</head>
13+
14+
<body>
15+
<div id="app">Loading...</div>
16+
17+
<div id="blazor-error-ui">
18+
An unhandled error has occurred.
19+
<a href="" class="reload">Reload</a>
20+
<a class="dismiss">🗙</a>
21+
</div>
22+
<script src="_framework/blazor.webassembly.js" autostart="false"></script>
23+
<script src="brotliloader.min.js" type="module"></script>
24+
</body>
25+
26+
</html>

404.html.br

323 Bytes
Binary file not shown.

404.html.gz

431 Bytes
Binary file not shown.

BlazorWasmApp1.styles.css

Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
/* /Shared/MainLayout.razor.rz.scp.css */
2+
.page[b-nc0z8nk93o] {
3+
position: relative;
4+
display: flex;
5+
flex-direction: column;
6+
}
7+
8+
.main[b-nc0z8nk93o] {
9+
flex: 1;
10+
}
11+
12+
.sidebar[b-nc0z8nk93o] {
13+
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
14+
}
15+
16+
.top-row[b-nc0z8nk93o] {
17+
background-color: #f7f7f7;
18+
border-bottom: 1px solid #d6d5d5;
19+
justify-content: flex-end;
20+
height: 3.5rem;
21+
display: flex;
22+
align-items: center;
23+
}
24+
25+
.top-row[b-nc0z8nk93o] a, .top-row .btn-link[b-nc0z8nk93o] {
26+
white-space: nowrap;
27+
margin-left: 1.5rem;
28+
}
29+
30+
.top-row a:first-child[b-nc0z8nk93o] {
31+
overflow: hidden;
32+
text-overflow: ellipsis;
33+
}
34+
35+
@media (max-width: 640.98px) {
36+
.top-row:not(.auth)[b-nc0z8nk93o] {
37+
display: none;
38+
}
39+
40+
.top-row.auth[b-nc0z8nk93o] {
41+
justify-content: space-between;
42+
}
43+
44+
.top-row a[b-nc0z8nk93o], .top-row .btn-link[b-nc0z8nk93o] {
45+
margin-left: 0;
46+
}
47+
}
48+
49+
@media (min-width: 641px) {
50+
.page[b-nc0z8nk93o] {
51+
flex-direction: row;
52+
}
53+
54+
.sidebar[b-nc0z8nk93o] {
55+
width: 250px;
56+
height: 100vh;
57+
position: sticky;
58+
top: 0;
59+
}
60+
61+
.top-row[b-nc0z8nk93o] {
62+
position: sticky;
63+
top: 0;
64+
z-index: 1;
65+
}
66+
67+
.main > div[b-nc0z8nk93o] {
68+
padding-left: 2rem !important;
69+
padding-right: 1.5rem !important;
70+
}
71+
}
72+
/* /Shared/NavMenu.razor.rz.scp.css */
73+
.navbar-toggler[b-9qjp0d3a0u] {
74+
background-color: rgba(255, 255, 255, 0.1);
75+
}
76+
77+
.top-row[b-9qjp0d3a0u] {
78+
height: 3.5rem;
79+
background-color: rgba(0,0,0,0.4);
80+
}
81+
82+
.navbar-brand[b-9qjp0d3a0u] {
83+
font-size: 1.1rem;
84+
}
85+
86+
.oi[b-9qjp0d3a0u] {
87+
width: 2rem;
88+
font-size: 1.1rem;
89+
vertical-align: text-top;
90+
top: -2px;
91+
}
92+
93+
.nav-item[b-9qjp0d3a0u] {
94+
font-size: 0.9rem;
95+
padding-bottom: 0.5rem;
96+
}
97+
98+
.nav-item:first-of-type[b-9qjp0d3a0u] {
99+
padding-top: 1rem;
100+
}
101+
102+
.nav-item:last-of-type[b-9qjp0d3a0u] {
103+
padding-bottom: 1rem;
104+
}
105+
106+
.nav-item[b-9qjp0d3a0u] a {
107+
color: #d7d7d7;
108+
border-radius: 4px;
109+
height: 3rem;
110+
display: flex;
111+
align-items: center;
112+
line-height: 3rem;
113+
}
114+
115+
.nav-item[b-9qjp0d3a0u] a.active {
116+
background-color: rgba(255,255,255,0.25);
117+
color: white;
118+
}
119+
120+
.nav-item[b-9qjp0d3a0u] a:hover {
121+
background-color: rgba(255,255,255,0.1);
122+
color: white;
123+
}
124+
125+
@media (min-width: 641px) {
126+
.navbar-toggler[b-9qjp0d3a0u] {
127+
display: none;
128+
}
129+
130+
.collapse[b-9qjp0d3a0u] {
131+
/* Never collapse the sidebar for wide screens */
132+
display: block;
133+
}
134+
}

BlazorWasmApp1.styles.css.br

697 Bytes
Binary file not shown.

BlazorWasmApp1.styles.css.gz

862 Bytes
Binary file not shown.

BlazorWasmPreRendering.Build.lfyg69o9wu.lib.module.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

BlazorWasmPreRendering.Build.lfyg69o9wu.lib.module.js.br

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
�`����D�n^�� b׬L�>,E/F�M��|0��aY��>��%�6w���s���P {�A�gd`�;� �4��98��߼�#��tw��F�;T��1V���J��X��PJ��><���"�A������H�&�F��"*��6��@�BE�8�K1$���,�4��-ע�dm��d�X�f� ��,|X��bG��Nx�u]8�2@��>`��&C�����\�7�aІ��j,�/���dx�B���r�\R'^J
2+
J v��5͚

0 commit comments

Comments
 (0)