Remove static files
This commit is contained in:
@ -1,30 +0,0 @@
|
||||
@import "tailwindcss";
|
||||
|
||||
@source "../node_modules/flowbite";
|
||||
@source "../node_modules/flowbite-datepicker";
|
||||
|
||||
@custom-variant dark (&:where(.dark, .dark *));
|
||||
|
||||
@theme {
|
||||
--color-primary-50: #eff6ff;
|
||||
--color-primary-100: #dbeafe;
|
||||
--color-primary-200: #bfdbfe;
|
||||
--color-primary-300: #93c5fd;
|
||||
--color-primary-400: #60a5fa;
|
||||
--color-primary-500: #3b82f6;
|
||||
--color-primary-600: #2563eb;
|
||||
--color-primary-700: #1d4ed8;
|
||||
--color-primary-800: #1e40af;
|
||||
--color-primary-900: #1e3a8a;
|
||||
|
||||
--font-sans: "Inter", "ui-sans-serif", "system-ui", "-apple-system",
|
||||
"system-ui", "Segoe UI", "Roboto", "Helvetica Neue", "Arial",
|
||||
"Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji",
|
||||
"Segoe UI Symbol", "Noto Color Emoji";
|
||||
--font-body: "Inter", "ui-sans-serif", "system-ui", "-apple-system",
|
||||
"system-ui", "Segoe UI", "Roboto", "Helvetica Neue", "Arial",
|
||||
"Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji",
|
||||
"Segoe UI Symbol", "Noto Color Emoji";
|
||||
--font-mono: "ui-monospace", "SFMono-Regular", "Menlo", "Monaco",
|
||||
"Consolas", "Liberation Mono", "Courier New", "monospace";
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,143 +0,0 @@
|
||||
/* PrismJS 1.30.0
|
||||
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript */
|
||||
/**
|
||||
* prism.js default theme for JavaScript, CSS and HTML
|
||||
* Based on dabblet (http://dabblet.com)
|
||||
* @author Lea Verou
|
||||
*/
|
||||
|
||||
code[class*="language-"],
|
||||
pre[class*="language-"] {
|
||||
color: black;
|
||||
background: none;
|
||||
text-shadow: 0 1px white;
|
||||
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
||||
font-size: 1em;
|
||||
text-align: left;
|
||||
white-space: pre;
|
||||
word-spacing: normal;
|
||||
word-break: normal;
|
||||
word-wrap: normal;
|
||||
line-height: 1.5;
|
||||
|
||||
-moz-tab-size: 4;
|
||||
-o-tab-size: 4;
|
||||
tab-size: 4;
|
||||
|
||||
-webkit-hyphens: none;
|
||||
-moz-hyphens: none;
|
||||
-ms-hyphens: none;
|
||||
hyphens: none;
|
||||
}
|
||||
|
||||
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
|
||||
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
|
||||
text-shadow: none;
|
||||
background: #b3d4fc;
|
||||
}
|
||||
|
||||
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
|
||||
code[class*="language-"]::selection, code[class*="language-"] ::selection {
|
||||
text-shadow: none;
|
||||
background: #b3d4fc;
|
||||
}
|
||||
|
||||
@media print {
|
||||
code[class*="language-"],
|
||||
pre[class*="language-"] {
|
||||
text-shadow: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* Code blocks */
|
||||
pre[class*="language-"] {
|
||||
padding: 1em;
|
||||
margin: .5em 0;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
:not(pre) > code[class*="language-"],
|
||||
pre[class*="language-"] {
|
||||
background: #f5f2f0;
|
||||
}
|
||||
|
||||
/* Inline code */
|
||||
:not(pre) > code[class*="language-"] {
|
||||
padding: .1em;
|
||||
border-radius: .3em;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
.token.comment,
|
||||
.token.prolog,
|
||||
.token.doctype,
|
||||
.token.cdata {
|
||||
color: slategray;
|
||||
}
|
||||
|
||||
.token.punctuation {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.token.namespace {
|
||||
opacity: .7;
|
||||
}
|
||||
|
||||
.token.property,
|
||||
.token.tag,
|
||||
.token.boolean,
|
||||
.token.number,
|
||||
.token.constant,
|
||||
.token.symbol,
|
||||
.token.deleted {
|
||||
color: #905;
|
||||
}
|
||||
|
||||
.token.selector,
|
||||
.token.attr-name,
|
||||
.token.string,
|
||||
.token.char,
|
||||
.token.builtin,
|
||||
.token.inserted {
|
||||
color: #690;
|
||||
}
|
||||
|
||||
.token.operator,
|
||||
.token.entity,
|
||||
.token.url,
|
||||
.language-css .token.string,
|
||||
.style .token.string {
|
||||
color: #9a6e3a;
|
||||
/* This background color was intended by the author of this theme. */
|
||||
background: hsla(0, 0%, 100%, .5);
|
||||
}
|
||||
|
||||
.token.atrule,
|
||||
.token.attr-value,
|
||||
.token.keyword {
|
||||
color: #07a;
|
||||
}
|
||||
|
||||
.token.function,
|
||||
.token.class-name {
|
||||
color: #DD4A68;
|
||||
}
|
||||
|
||||
.token.regex,
|
||||
.token.important,
|
||||
.token.variable {
|
||||
color: #e90;
|
||||
}
|
||||
|
||||
.token.important,
|
||||
.token.bold {
|
||||
font-weight: bold;
|
||||
}
|
||||
.token.italic {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.token.entity {
|
||||
cursor: help;
|
||||
}
|
||||
|
||||
@ -1,47 +0,0 @@
|
||||
sl-avatar {
|
||||
--size: 24pt;
|
||||
}
|
||||
|
||||
.tree-with-lines {
|
||||
--indent-guide-width: 1px;
|
||||
}
|
||||
|
||||
.tree-post-button {
|
||||
}
|
||||
|
||||
.full-height-tree::part(base) {
|
||||
}
|
||||
|
||||
sl-details.small-details::part(header) {
|
||||
padding: var(--sl-spacing-small);
|
||||
}
|
||||
|
||||
sl-details.small-details::part(base) {
|
||||
font-size: var(--sl-input-font-size-small);
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
sl-details::part(base) {
|
||||
background-color: var(--color-gray-700);
|
||||
border: solid 1px var(--color-gray-500);
|
||||
color: var(--color-gray-50);
|
||||
}
|
||||
}
|
||||
|
||||
/* sl-tab-group::part(base), */
|
||||
/* sl-tab-group::part(body), */
|
||||
/* sl-tab-panel::part(base), */
|
||||
/* sl-tab-panel::part(body), */
|
||||
/* sl-tab-panel { */
|
||||
/* height: 100%; */
|
||||
/* overflow: hidden; */
|
||||
/* } */
|
||||
|
||||
sl-tab-group.master-pane-tabs::part(base),
|
||||
sl-tab-group.master-pane-tabs::part(body),
|
||||
sl-tab-group.master-pane-tabs sl-tab-panel::part(base),
|
||||
sl-tab-group.master-pane-tabs sl-tab-panel::part(body),
|
||||
sl-tab-group.master-pane-tabs sl-tab-panel {
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
@ -1,23 +0,0 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
||||
<title>Static in lib</title>
|
||||
<meta name="description" content="" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
|
||||
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
||||
<!-- Place favicon.ico in the root directory -->
|
||||
</head>
|
||||
<body>
|
||||
<!--[if lt IE 8]>
|
||||
<p class="browserupgrade">
|
||||
You are using an <strong>outdated</strong> browser. Please
|
||||
<a href="http://browsehappy.com/">upgrade your browser</a> to improve
|
||||
your experience.
|
||||
</p>
|
||||
<![endif]-->
|
||||
<h1>I'm inside the package</h1>
|
||||
</body>
|
||||
</html>
|
||||
File diff suppressed because one or more lines are too long
@ -1,54 +0,0 @@
|
||||
const sidebar = document.getElementById("master-pane");
|
||||
|
||||
if (sidebar) {
|
||||
const toggleSidebarMobile = (
|
||||
sidebar,
|
||||
sidebarBackdrop,
|
||||
toggleSidebarMobileHamburger,
|
||||
toggleSidebarMobileClose,
|
||||
) => {
|
||||
sidebar.classList.toggle("hidden");
|
||||
sidebarBackdrop.classList.toggle("hidden");
|
||||
toggleSidebarMobileHamburger.classList.toggle("hidden");
|
||||
toggleSidebarMobileClose.classList.toggle("hidden");
|
||||
};
|
||||
|
||||
const toggleSidebarMobileEl = document.getElementById("toggleSidebarMobile");
|
||||
const sidebarBackdrop = document.getElementById("sidebarBackdrop");
|
||||
const toggleSidebarMobileHamburger = document.getElementById(
|
||||
"toggleSidebarMobileHamburger",
|
||||
);
|
||||
const toggleSidebarMobileClose = document.getElementById(
|
||||
"toggleSidebarMobileClose",
|
||||
);
|
||||
// const toggleSidebarMobileSearch = document.getElementById(
|
||||
// "toggleSidebarMobileSearch",
|
||||
// );
|
||||
|
||||
// toggleSidebarMobileSearch.addEventListener("click", () => {
|
||||
// toggleSidebarMobile(
|
||||
// sidebar,
|
||||
// sidebarBackdrop,
|
||||
// toggleSidebarMobileHamburger,
|
||||
// toggleSidebarMobileClose,
|
||||
// );
|
||||
// });
|
||||
|
||||
toggleSidebarMobileEl.addEventListener("click", () => {
|
||||
toggleSidebarMobile(
|
||||
sidebar,
|
||||
sidebarBackdrop,
|
||||
toggleSidebarMobileHamburger,
|
||||
toggleSidebarMobileClose,
|
||||
);
|
||||
});
|
||||
|
||||
// sidebarBackdrop.addEventListener("click", () => {
|
||||
// toggleSidebarMobile(
|
||||
// sidebar,
|
||||
// sidebarBackdrop,
|
||||
// toggleSidebarMobileHamburger,
|
||||
// toggleSidebarMobileClose,
|
||||
// );
|
||||
// });
|
||||
}
|
||||
@ -1,20 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="100%" height="100%" viewBox="0 0 504 494" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
|
||||
<g transform="matrix(1,0,0,1,-300,-220)">
|
||||
<g transform="matrix(1.60539,0,0,1.60539,-319.922,-249.523)">
|
||||
<g transform="matrix(1,0,0,1,8.07567,42.4671)">
|
||||
<path d="M535,250L561.806,335L613.462,308.734L605.179,367.467L691.924,367.467L621.746,420L661.954,462.5L605.179,472.533L631.985,557.533L561.806,505L535,557.533L508.194,505L438.015,557.533L464.821,472.533L408.046,462.5L448.254,420L378.076,367.467L464.821,367.467L456.538,308.734L508.194,335L535,250Z"/>
|
||||
</g>
|
||||
<g transform="matrix(0.8125,0,0,0.8125,331.826,19.4716)">
|
||||
<path d="M246.833,633.448C236.413,655.429 209.771,670 180,670L180,557.533C209.771,557.533 236.413,572.104 246.833,594.085L275.336,594.085C285.418,572.104 311.195,557.533 340,557.533L340,670C311.195,670 285.418,655.429 275.336,633.448L246.833,633.448Z" style="fill:rgb(180,17,4);"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,258.076,2.46711)">
|
||||
<ellipse cx="250" cy="415" rx="20" ry="15" style="fill:white;"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,328.076,2.46711)">
|
||||
<ellipse cx="250" cy="415" rx="20" ry="15" style="fill:white;"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.6 KiB |
Reference in New Issue
Block a user