Skip to content

Commit

Permalink
Samples wasm demo
Browse files Browse the repository at this point in the history
  • Loading branch information
nkast committed Apr 20, 2024
1 parent fa8e14f commit 51cc8c5
Show file tree
Hide file tree
Showing 111 changed files with 2,604 additions and 0 deletions.
Binary file added docs/wasm/Samples/Content/Common/arrow.xnb
Binary file not shown.
Binary file added docs/wasm/Samples/Content/Common/buttons.xnb
Binary file not shown.
Binary file added docs/wasm/Samples/Content/Common/cursor.xnb
Binary file not shown.
Binary file added docs/wasm/Samples/Content/Common/gradient.xnb
Binary file not shown.
Binary file added docs/wasm/Samples/Content/Common/logo.xnb
Binary file not shown.
Binary file added docs/wasm/Samples/Content/Common/popup.xnb
Binary file not shown.
Binary file added docs/wasm/Samples/Content/Common/slider.xnb
Binary file not shown.
Binary file added docs/wasm/Samples/Content/Common/socket.xnb
Binary file not shown.
Binary file added docs/wasm/Samples/Content/Common/stick.xnb
Binary file not shown.
Binary file added docs/wasm/Samples/Content/DiagnosticsFont.xnb
Binary file not shown.
Binary file not shown.
Binary file added docs/wasm/Samples/Content/Fonts/detailsFont.xnb
Binary file not shown.
Binary file not shown.
Binary file added docs/wasm/Samples/Content/Fonts/menufont.xnb
Binary file not shown.
Binary file added docs/wasm/Samples/Content/Materials/blank.xnb
Binary file not shown.
Binary file added docs/wasm/Samples/Content/Materials/dots.xnb
Binary file not shown.
Binary file added docs/wasm/Samples/Content/Materials/pavement.xnb
Binary file not shown.
Binary file added docs/wasm/Samples/Content/Materials/squares.xnb
Binary file not shown.
Binary file added docs/wasm/Samples/Content/Materials/waves.xnb
Binary file not shown.
Binary file added docs/wasm/Samples/Content/Samples/alphabet.xnb
Binary file not shown.
Binary file added docs/wasm/Samples/Content/Samples/car.xnb
Binary file not shown.
Binary file added docs/wasm/Samples/Content/Samples/goo.xnb
Binary file not shown.
Binary file added docs/wasm/Samples/Content/Samples/link.xnb
Binary file not shown.
Binary file added docs/wasm/Samples/Content/Samples/object.xnb
Binary file not shown.
Binary file added docs/wasm/Samples/Content/Samples/wheel.xnb
Binary file not shown.
99 changes: 99 additions & 0 deletions docs/wasm/Samples/Samples.styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
/* /MainLayout.razor.rz.scp.css */
.page[b-whjqrzcket]
{
position: relative;
display: flex;
flex-direction: column;
}

main[b-whjqrzcket]
{
flex: 1;
}

.sidebar[b-whjqrzcket]
{
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-whjqrzcket]
{
background-color: #f7f7f7;
border-bottom: 1px solid #d6d5d5;
justify-content: flex-end;
height: 3.5rem;
display: flex;
align-items: center;
}

.top-row[b-whjqrzcket] a, .top-row[b-whjqrzcket] .btn-link
{
white-space: nowrap;
margin-left: 1.5rem;
text-decoration: none;
}

.top-row[b-whjqrzcket] a:hover, .top-row[b-whjqrzcket] .btn-link:hover
{
text-decoration: underline;
}

.top-row[b-whjqrzcket] a:first-child
{
overflow: hidden;
text-overflow: ellipsis;
}

@media (max-width: 640.98px)
{
.top-row:not(.auth)[b-whjqrzcket]
{
display: none;
}

.top-row.auth[b-whjqrzcket]
{
justify-content: space-between;
}

.top-row[b-whjqrzcket] a, .top-row[b-whjqrzcket] .btn-link
{
margin-left: 0;
}
}

@media (min-width: 641px)
{
.page[b-whjqrzcket]
{
flex-direction: row;
}

.sidebar[b-whjqrzcket]
{
width: 250px;
height: 100vh;
position: sticky;
top: 0;
}

.top-row[b-whjqrzcket]
{
position: sticky;
top: 0;
z-index: 1;
}

.top-row.auth[b-whjqrzcket] a:first-child
{
flex: 1;
text-align: right;
width: 0;
}

.top-row[b-whjqrzcket], article[b-whjqrzcket]
{
padding-left: 2rem !important;
padding-right: 1.5rem !important;
}
}
Loading

0 comments on commit 51cc8c5

Please sign in to comment.