Skip to content

Commit

Permalink
Deploy to GitHub pages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Nov 26, 2023
0 parents commit 938b94c
Show file tree
Hide file tree
Showing 244 changed files with 2,417 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
www.nodexr.net
Binary file added Fonts/HelveticaNeue.ttf
Binary file not shown.
Binary file added Fonts/HelveticaNeueBd.ttf
Binary file not shown.
131 changes: 131 additions & 0 deletions Nodexr.styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
@import '_content/Blazored.Modal/Blazored.Modal.bundle.scp.css';

/* /Components/BottomPanels.razor.rz.scp.css */
.bottom-panels[b-e04krw0xgu] {
display: flex;
flex-direction: row;
flex-grow: 1;
width: 100%;
font-family: Consolas, monospace;
}

.search-text-container[b-e04krw0xgu] {
display: block;
flex: 1;
margin: 0;
-webkit-text-size-adjust: none;
width: 100%;
overflow: auto;
position: relative;
}

.replace-output[b-e04krw0xgu] {
font-size: 1.1rem;
margin: 0;
white-space: pre-wrap;
color: var(--col-text-medium);
font-family: Consolas, monospace;
}
/* /Components/NodeTreeBrowser/NodeTreeBrowser.razor.rz.scp.css */
.browser-container[b-7yfcg7at5m] {
height: 70vh;
max-width: 90vw;
width: 70rem;
}
/* /Components/OutputDisplay.razor.rz.scp.css */

.output-regex-container[b-wy8k48oxxh] {
display: inline-flex;
margin: 5px;
}

.output-regex-container > *:first-child[b-wy8k48oxxh] {
border-radius: 5px 0 0 5px;
}

.output-regex-container > *:last-child[b-wy8k48oxxh] {
border-radius: 0 5px 5px 0;
}

.output-regex[b-wy8k48oxxh] {
border: none;
background-color: var(--col-field);
color: var(--col-text-medium);
min-width: 250px;
padding: 2px 5px;
height: auto;
word-break: break-all;
line-height: 1.2;
}

.output-regex-container > .output-regex:focus-within[b-wy8k48oxxh] {
box-shadow: inset 0 0 4px 1px #0078f5;
}

.output-regex-button[b-wy8k48oxxh] {
width: 42px;
min-width: unset;
background-color: hsl(223, 13%, 44%);
font-size: 22px;
border-radius: 0;
padding: 0 6px;
display: flex;
align-items: center;
justify-content: center;
}

.output-regex-button:hover[b-wy8k48oxxh] {
background-color: hsl(222, 14%, 22%);
}
/* /Components/SearchTextHighlight.razor.rz.scp.css */
.search-text-highlight[b-t4xwqrdj85], .search-textarea[b-t4xwqrdj85] {
width: 100%;
background-color: transparent;
resize: none;
margin: 0;
overflow: hidden;
word-wrap: break-word;
overflow-wrap: normal;
word-break: break-word;
}

.search-textarea[b-t4xwqrdj85] {
display: block;
position: absolute;
height: 100%;
color: var(--col-text-medium);
border: none;
white-space: pre-wrap;
pointer-events: all;
padding: 3px;
}

.search-text-highlight[b-t4xwqrdj85] {
color: transparent;
font-size: inherit;
line-height: inherit;
position: absolute;
pointer-events: none;
}

.search-text-highlight span[b-t4xwqrdj85], .search-text-highlight mark[b-t4xwqrdj85] {
white-space: pre-wrap;
font-size: inherit;
}
/* /NodeInputs/InputCollectionView.razor.rz.scp.css */
.item-button[b-f3ahkhmwj9] {
position: relative;
background: none;
padding: 0 4px;
color: var(--col-text-subtle);
transition: transform 0.2s;
}

.item-button:disabled[b-f3ahkhmwj9] {
opacity: 0.5;
}

.item-button:hover:enabled[b-f3ahkhmwj9] {
color: var(--col-node-accent);
transform: scale(1.2);
}
133 changes: 133 additions & 0 deletions _content/Blazored.Modal/Blazored.Modal.bundle.scp.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
/* _content/Blazored.Modal/BlazoredModalInstance.razor.rz.scp.css */
.bm-container[b-mwsrhhqq2g] {
display: block;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 100;
overflow-x: hidden;
overflow-y: auto;
outline: 0;
background-color: rgba(0,0,0,0.5);
}

.blazored-modal[b-mwsrhhqq2g] {
display: flex;
flex-direction: column;
background-color: #fff;
border-radius: 4px;
border: 1px solid #fff;
padding: 1.5rem;
box-shadow: 0 2px 2px rgba(0,0,0,.25);
margin: 1.75rem;
}

.size-small[b-mwsrhhqq2g] {
max-width: 300px;
margin-left: auto;
margin-right: auto;
}

.size-medium[b-mwsrhhqq2g] {
max-width: 500px;
margin-left: auto;
margin-right: auto;
}

.size-large[b-mwsrhhqq2g] {
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.size-extra-large[b-mwsrhhqq2g] {
max-width: 1140px;
margin-left: auto;
margin-right: auto;
}

.size-automatic[b-mwsrhhqq2g] {
width: -moz-fit-content;
width: fit-content;
margin-left: auto;
margin-right: auto;
}

.bm-header[b-mwsrhhqq2g] {
display: flex;
align-items: flex-start;
justify-content: space-between;
padding: 0 0 2rem 0;
}

.bm-title[b-mwsrhhqq2g] {
margin-bottom: 0;
}

.bm-close[b-mwsrhhqq2g] {
padding: 1rem;
margin: -1rem -1rem -1rem auto;
background-color: transparent;
border: 0;
-webkit-appearance: none;
cursor: pointer;
font-size: 1.5rem;
font-weight: bold;
}

.position-topleft .blazored-modal[b-mwsrhhqq2g] {
margin-left: 1.75rem;
}

.position-topright .blazored-modal[b-mwsrhhqq2g] {
margin-right: 1.75rem;
}

.position-bottomleft .blazored-modal[b-mwsrhhqq2g] {
position: absolute;
bottom: 0;
left: 1.75rem;
}

.position-bottomright .blazored-modal[b-mwsrhhqq2g] {
position: absolute;
bottom: 0;
right: 1.75rem;
}

.position-middle[b-mwsrhhqq2g] {
display: flex;
flex-direction: column;
justify-content: center;
}

.fade-in[b-mwsrhhqq2g] {
animation: 300ms ease-out 0s ModalFadeIn-b-mwsrhhqq2g;
}

.fade-out[b-mwsrhhqq2g] {
animation: 300ms ease-out 0s ModalFadeOut-b-mwsrhhqq2g;
opacity: 0;
}

@keyframes ModalFadeIn-b-mwsrhhqq2g {
0% {
opacity: 0;
}

100% {
opacity: 1;
}
}

@keyframes ModalFadeOut-b-mwsrhhqq2g {
0% {
opacity: 1;
}

100% {
opacity: 0;
}
}
7 changes: 7 additions & 0 deletions _content/Blazored.Modal/BlazoredModal.razor.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export function setBodyStyle() {
document.body.style.overflow = 'hidden';
}

export function removeBodyStyle() {
document.body.style.overflow = 'auto';
}
Loading

0 comments on commit 938b94c

Please sign in to comment.