this.gui 1.0.14 → 1.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -39
- package/dist/style.css +1 -1
- package/dist/this-gui.es.js +3751 -1882
- package/dist/this-gui.umd.js +34 -22
- package/package.json +14 -12
- package/src/App.jsx +50 -21
- package/src/SiteBuilder.jsx +39 -0
- package/src/index.mdx +10 -0
- package/src/main.jsx +11 -14
- package/src/scripts/postinstall.js +28 -31
- package/src/scripts/verifyLayouts.js +175 -0
- package/src/scripts/verifyTemplates.js +154 -0
- package/src/stories/Atoms/Alert/Alert.css +196 -14
- package/src/stories/Atoms/Alert/Alert.jsx +43 -28
- package/src/stories/Atoms/Alert/Alert.stories.jsx +154 -28
- package/src/stories/Atoms/Audio/Audio.css +246 -16
- package/src/stories/Atoms/Audio/Audio.jsx +204 -29
- package/src/stories/Atoms/Audio/Audio.stories.jsx +178 -28
- package/src/stories/Atoms/Badge/Badge.css +234 -15
- package/src/stories/Atoms/Badge/Badge.jsx +44 -31
- package/src/stories/Atoms/Badge/Badge.stories.jsx +108 -29
- package/src/stories/Atoms/Button/Button.css +106 -45
- package/src/stories/Atoms/Button/Button.jsx +31 -82
- package/src/stories/Atoms/Button/Button.stories.jsx +170 -40
- package/src/stories/Atoms/Caption/Caption.css +156 -16
- package/src/stories/Atoms/Caption/Caption.jsx +62 -31
- package/src/stories/Atoms/Caption/Caption.stories.jsx +194 -28
- package/src/stories/Atoms/Checkbox/Checkbox.css +168 -15
- package/src/stories/Atoms/Checkbox/Checkbox.jsx +73 -31
- package/src/stories/Atoms/Checkbox/Checkbox.stories.jsx +98 -27
- package/src/stories/Atoms/Container/Container.css +75 -15
- package/src/stories/Atoms/Container/Container.jsx +41 -28
- package/src/stories/Atoms/Container/Container.stories.jsx +92 -29
- package/src/stories/Atoms/Divider/Divider.css +131 -13
- package/src/stories/Atoms/Divider/Divider.jsx +54 -33
- package/src/stories/Atoms/Divider/Divider.stories.jsx +93 -29
- package/src/stories/Atoms/Heading/Heading.css +99 -16
- package/src/stories/Atoms/Heading/Heading.jsx +57 -29
- package/src/stories/Atoms/Heading/Heading.stories.jsx +117 -28
- package/src/stories/Atoms/Icon/Icon.css +219 -27
- package/src/stories/Atoms/Icon/Icon.jsx +67 -38
- package/src/stories/Atoms/Icon/Icon.stories.jsx +156 -51
- package/src/stories/Atoms/Image/Image.css +231 -15
- package/src/stories/Atoms/Image/Image.jsx +166 -32
- package/src/stories/Atoms/Image/Image.stories.jsx +319 -28
- package/src/stories/Atoms/Label/Label.css +158 -16
- package/src/stories/Atoms/Label/Label.jsx +61 -31
- package/src/stories/Atoms/Label/Label.stories.jsx +167 -28
- package/src/stories/Atoms/Link/Link.css +58 -16
- package/src/stories/Atoms/Link/Link.jsx +73 -32
- package/src/stories/Atoms/Link/Link.stories.jsx +141 -29
- package/src/stories/Atoms/Loader/Loader.css +93 -16
- package/src/stories/Atoms/Loader/Loader.jsx +47 -30
- package/src/stories/Atoms/Loader/Loader.stories.jsx +86 -28
- package/src/stories/Atoms/Logo/Logo.css +94 -0
- package/src/stories/Atoms/Logo/Logo.jsx +53 -0
- package/src/stories/Atoms/Logo/Logo.stories.jsx +120 -0
- package/src/stories/Atoms/Paragraph/Paragraph.css +167 -16
- package/src/stories/Atoms/Paragraph/Paragraph.jsx +67 -31
- package/src/stories/Atoms/Paragraph/Paragraph.stories.jsx +130 -28
- package/src/stories/Atoms/ProgressBar/ProgressBar.css +115 -17
- package/src/stories/Atoms/ProgressBar/ProgressBar.jsx +30 -31
- package/src/stories/Atoms/ProgressBar/ProgressBar.stories.jsx +72 -27
- package/src/stories/Atoms/RadioButton/RadioButton.css +118 -17
- package/src/stories/Atoms/RadioButton/RadioButton.jsx +77 -31
- package/src/stories/Atoms/RadioButton/RadioButton.stories.jsx +99 -27
- package/src/stories/Atoms/Range/Range.css +169 -0
- package/src/stories/Atoms/Range/Range.jsx +87 -0
- package/src/stories/Atoms/Range/Range.stories.jsx +110 -0
- package/src/stories/Atoms/Select/Select.css +74 -16
- package/src/stories/Atoms/Select/Select.jsx +62 -30
- package/src/stories/Atoms/Select/Select.stories.jsx +95 -27
- package/src/stories/Atoms/Slider/Slider.css +77 -16
- package/src/stories/Atoms/Slider/Slider.jsx +119 -31
- package/src/stories/Atoms/Slider/Slider.stories.jsx +77 -28
- package/src/stories/Atoms/Snackbar/Snackbar.css +297 -13
- package/src/stories/Atoms/Snackbar/Snackbar.jsx +62 -31
- package/src/stories/Atoms/Snackbar/Snackbar.stories.jsx +63 -26
- package/src/stories/Atoms/Spacer/Spacer.css +101 -16
- package/src/stories/Atoms/Spacer/Spacer.jsx +26 -32
- package/src/stories/Atoms/Spacer/Spacer.stories.jsx +50 -30
- package/src/stories/Atoms/Spinner/Spinner.css +97 -16
- package/src/stories/Atoms/Spinner/Spinner.jsx +50 -26
- package/src/stories/Atoms/Spinner/Spinner.stories.jsx +47 -30
- package/src/stories/Atoms/Tag/Tag.css +97 -14
- package/src/stories/Atoms/Tag/Tag.jsx +58 -24
- package/src/stories/Atoms/Tag/Tag.stories.jsx +55 -29
- package/src/stories/Atoms/TextArea/TextArea.css +84 -15
- package/src/stories/Atoms/TextArea/TextArea.jsx +107 -31
- package/src/stories/Atoms/TextArea/TextArea.stories.jsx +24 -30
- package/src/stories/Atoms/TextInput/TextInput.css +89 -17
- package/src/stories/Atoms/TextInput/TextInput.jsx +118 -27
- package/src/stories/Atoms/TextInput/TextInput.stories.jsx +52 -25
- package/src/stories/Atoms/Toggle/Toggle.css +105 -17
- package/src/stories/Atoms/Toggle/Toggle.jsx +55 -28
- package/src/stories/Atoms/Toggle/Toggle.stories.jsx +23 -30
- package/src/stories/Atoms/Tooltip/Tooltip.css +367 -14
- package/src/stories/Atoms/Tooltip/Tooltip.jsx +32 -28
- package/src/stories/Atoms/Tooltip/Tooltip.stories.jsx +41 -31
- package/src/stories/Atoms/Video/Video.css +27 -18
- package/src/stories/Atoms/Video/Video.jsx +65 -29
- package/src/stories/Atoms/Video/Video.stories.jsx +29 -30
- package/src/stories/Atoms/index.js +5 -2
- package/src/stories/Atoms/meta_Atoms.js +3 -1
- package/src/stories/Layouts/Accordion/Accordion.css +16 -0
- package/src/stories/Layouts/Accordion/Accordion.jsx +31 -0
- package/src/stories/Layouts/Accordion/Accordion.stories.jsx +28 -0
- package/src/stories/Layouts/DropdownMenu/DropdownMenu.css +16 -0
- package/src/stories/Layouts/DropdownMenu/DropdownMenu.jsx +31 -0
- package/src/stories/Layouts/DropdownMenu/DropdownMenu.stories.jsx +28 -0
- package/src/stories/Layouts/Flexbox/Flexbox.css +16 -0
- package/src/stories/Layouts/Flexbox/Flexbox.jsx +11 -0
- package/src/stories/Layouts/Flexbox/Flexbox.stories.jsx +28 -0
- package/src/stories/Layouts/Footer/Footer.css +16 -0
- package/src/stories/Layouts/Footer/Footer.jsx +31 -0
- package/src/stories/Layouts/Footer/Footer.stories.jsx +28 -0
- package/src/stories/Layouts/Grid/Grid.jsx +2 -4
- package/src/stories/Layouts/Grid/Grid.stories.jsx +20 -18
- package/src/stories/Layouts/Header/Header.css +16 -0
- package/src/stories/Layouts/Header/Header.jsx +31 -0
- package/src/stories/Layouts/Header/Header.stories.jsx +28 -0
- package/src/stories/Layouts/HeroBanner/HeroBanner.css +16 -0
- package/src/stories/Layouts/HeroBanner/HeroBanner.jsx +31 -0
- package/src/stories/Layouts/HeroBanner/HeroBanner.stories.jsx +28 -0
- package/src/stories/Layouts/HeroImageVideo/HeroImageVideo.css +16 -0
- package/src/stories/Layouts/HeroImageVideo/HeroImageVideo.jsx +31 -0
- package/src/stories/Layouts/HeroImageVideo/HeroImageVideo.stories.jsx +28 -0
- package/src/stories/Layouts/Pagination/Pagination.css +16 -0
- package/src/stories/Layouts/Pagination/Pagination.jsx +31 -0
- package/src/stories/Layouts/Pagination/Pagination.stories.jsx +28 -0
- package/src/stories/Layouts/Section/Section.css +16 -0
- package/src/stories/Layouts/Section/Section.jsx +31 -0
- package/src/stories/Layouts/Section/Section.stories.jsx +28 -0
- package/src/stories/Layouts/Sidebar/Sidebar.css +16 -0
- package/src/stories/Layouts/Sidebar/Sidebar.jsx +71 -0
- package/src/stories/Layouts/Sidebar/Sidebar.stories.jsx +28 -0
- package/src/stories/Layouts/Tabs/Tabs.css +16 -0
- package/src/stories/Layouts/Tabs/Tabs.jsx +31 -0
- package/src/stories/Layouts/Tabs/Tabs.stories.jsx +28 -0
- package/src/stories/Layouts/index.js +31 -0
- package/src/stories/Layouts/meta_Layouts.js +31 -0
- package/src/stories/Molecules/Navbar/Navbar.css +63 -59
- package/src/stories/Molecules/Navbar/Navbar.jsx +43 -48
- package/src/stories/Molecules/Navbar/Navbar.stories.jsx +58 -8
- package/src/stories/Molecules/SearchBar/SearchBar.css +66 -1
- package/src/stories/Molecules/SearchBar/SearchBar.jsx +59 -11
- package/src/stories/Molecules/SearchBar/SearchBar.stories.jsx +16 -7
- package/src/stories/Molecules/SelectTheme/SelectTheme.jsx +16 -38
- package/src/stories/Molecules/SelectTheme/SelectTheme.stories.jsx +1 -2
- package/src/stories/Molecules/Sidebar/Sidebar.css +65 -2
- package/src/stories/Molecules/Sidebar/Sidebar.jsx +66 -11
- package/src/stories/Molecules/Sidebar/Sidebar.stories.jsx +20 -5
- package/src/stories/Templates/AdminDashboard/AdminDashboard.css +7 -0
- package/src/stories/Templates/AdminDashboard/AdminDashboard.jsx +24 -0
- package/src/stories/Templates/AdminDashboard/AdminDashboard.stories.jsx +20 -0
- package/src/stories/Templates/CallToAction/CallToAction.css +7 -0
- package/src/stories/Templates/CallToAction/CallToAction.jsx +24 -0
- package/src/stories/Templates/CallToAction/CallToAction.stories.jsx +20 -0
- package/src/stories/Templates/FeaturesList/FeaturesList.css +7 -0
- package/src/stories/Templates/FeaturesList/FeaturesList.jsx +24 -0
- package/src/stories/Templates/FeaturesList/FeaturesList.stories.jsx +20 -0
- package/src/stories/Templates/FormSection/FormSection.css +7 -0
- package/src/stories/Templates/FormSection/FormSection.jsx +24 -0
- package/src/stories/Templates/FormSection/FormSection.stories.jsx +20 -0
- package/src/stories/Templates/HeroSection/HeroSection.css +7 -0
- package/src/stories/Templates/HeroSection/HeroSection.jsx +24 -0
- package/src/stories/Templates/HeroSection/HeroSection.stories.jsx +20 -0
- package/src/stories/Templates/LocationInfo/LocationInfo.css +7 -0
- package/src/stories/Templates/LocationInfo/LocationInfo.jsx +24 -0
- package/src/stories/Templates/LocationInfo/LocationInfo.stories.jsx +20 -0
- package/src/stories/Templates/ProductPage/ProductPage.css +7 -0
- package/src/stories/Templates/ProductPage/ProductPage.jsx +24 -0
- package/src/stories/Templates/ProductPage/ProductPage.stories.jsx +20 -0
- package/src/stories/Templates/RegistrationPage/RegistrationPage.css +7 -0
- package/src/stories/Templates/RegistrationPage/RegistrationPage.jsx +24 -0
- package/src/stories/Templates/RegistrationPage/RegistrationPage.stories.jsx +20 -0
- package/src/stories/Templates/ShoppingCart/ShoppingCart.css +7 -0
- package/src/stories/Templates/ShoppingCart/ShoppingCart.jsx +24 -0
- package/src/stories/Templates/ShoppingCart/ShoppingCart.stories.jsx +20 -0
- package/src/stories/Templates/SidebarTopNav/SidebarTopNav.css +7 -0
- package/src/stories/Templates/SidebarTopNav/SidebarTopNav.jsx +24 -0
- package/src/stories/Templates/SidebarTopNav/SidebarTopNav.stories.jsx +20 -0
- package/src/stories/Templates/SignInPage/SignInPage.css +7 -0
- package/src/stories/Templates/SignInPage/SignInPage.jsx +24 -0
- package/src/stories/Templates/SignInPage/SignInPage.stories.jsx +20 -0
- package/src/stories/Templates/SocialMediaLinks/SocialMediaLinks.css +7 -0
- package/src/stories/Templates/SocialMediaLinks/SocialMediaLinks.jsx +24 -0
- package/src/stories/Templates/SocialMediaLinks/SocialMediaLinks.stories.jsx +20 -0
- package/src/stories/Templates/Testimonials/Testimonials.css +7 -0
- package/src/stories/Templates/Testimonials/Testimonials.jsx +24 -0
- package/src/stories/Templates/Testimonials/Testimonials.stories.jsx +20 -0
- package/src/stories/Templates/index.js +33 -0
- package/src/stories/Templates/{Templates.js → meta_Templates.js} +3 -1
- package/src/stories/assets/logo.png +0 -0
- package/src/stories/assets/logo.svg +106 -0
- package/src/stories/assets/test.svg +3 -0
- package/src/themes/README.md +301 -0
- package/src/themes/ThemeProvider.jsx +47 -22
- package/src/themes/styles/dracula/dark.css +0 -0
- package/src/themes/styles/dracula/light.css +0 -0
- package/src/themes/styles/github/dark.css +0 -0
- package/src/themes/styles/github/light.css +0 -0
- package/src/themes/styles/neurons/dark.css +247 -0
- package/src/themes/styles/neurons/light.css +280 -0
- package/dist/github-3688a83a.js +0 -5
- package/dist/gothic-94a7ecd6.js +0 -5
- package/dist/newsprint-32bf94d9.js +0 -5
- package/dist/night-4a954853.js +0 -5
- package/dist/pixyll-94de4610.js +0 -5
- package/dist/whitey-db68723e.js +0 -5
- package/src/MDXEditor.jsx +0 -32
- package/src/stories/Atoms/RangeInput/RangeInput.css +0 -29
- package/src/stories/Atoms/RangeInput/RangeInput.jsx +0 -41
- package/src/stories/Atoms/RangeInput/RangeInput.stories.jsx +0 -41
- package/src/stories/Components.md +0 -189
- package/src/stories/Layouts/Layout.js +0 -28
- package/src/styles/Header.modules.css +0 -32
- package/src/styles/global.css +0 -59
- package/src/themes/Themes.js +0 -44
- package/src/themes/dark.js +0 -22
- package/src/themes/light.js +0 -22
- package/src/themes/typ/Readme.md +0 -4
- package/src/themes/typ/github/open-sans-v17-latin-ext_latin-700.woff2 +0 -0
- package/src/themes/typ/github/open-sans-v17-latin-ext_latin-700italic.woff2 +0 -0
- package/src/themes/typ/github/open-sans-v17-latin-ext_latin-italic.woff2 +0 -0
- package/src/themes/typ/github/open-sans-v17-latin-ext_latin-regular.woff2 +0 -0
- package/src/themes/typ/github.css +0 -416
- package/src/themes/typ/gothic/GUST e-foundry License.txt +0 -29
- package/src/themes/typ/gothic/didact-gothic-c-ext.woff2 +0 -0
- package/src/themes/typ/gothic/didact-gothic-c.woff2 +0 -0
- package/src/themes/typ/gothic/texgyreadventor-bold.woff +0 -0
- package/src/themes/typ/gothic/texgyreadventor-bolditalic.woff +0 -0
- package/src/themes/typ/gothic/texgyreadventor-italic.woff +0 -0
- package/src/themes/typ/gothic/texgyreadventor-regular.woff +0 -0
- package/src/themes/typ/gothic.css +0 -410
- package/src/themes/typ/newsprint/pt-serif-v11-latin-700.woff2 +0 -0
- package/src/themes/typ/newsprint/pt-serif-v11-latin-700italic.woff2 +0 -0
- package/src/themes/typ/newsprint/pt-serif-v11-latin-italic.woff2 +0 -0
- package/src/themes/typ/newsprint/pt-serif-v11-latin-regular.woff2 +0 -0
- package/src/themes/typ/newsprint.css +0 -622
- package/src/themes/typ/night/codeblock.dark.css +0 -113
- package/src/themes/typ/night/credit.html +0 -1
- package/src/themes/typ/night/cursor.png +0 -0
- package/src/themes/typ/night/cursor@2x.png +0 -0
- package/src/themes/typ/night/mermaid.dark.css +0 -7
- package/src/themes/typ/night/sourcemode.dark.css +0 -38
- package/src/themes/typ/night.css +0 -1032
- package/src/themes/typ/pixyll/lato-v14-latin-300.woff +0 -0
- package/src/themes/typ/pixyll/lato-v14-latin-300italic.woff +0 -0
- package/src/themes/typ/pixyll/lato-v14-latin-900.woff +0 -0
- package/src/themes/typ/pixyll/lato-v14-latin-900italic.woff +0 -0
- package/src/themes/typ/pixyll/merriweather-v19-latin-300.woff +0 -0
- package/src/themes/typ/pixyll/merriweather-v19-latin-300italic.woff +0 -0
- package/src/themes/typ/pixyll/merriweather-v19-latin-700.woff +0 -0
- package/src/themes/typ/pixyll/merriweather-v19-latin-700italic.woff +0 -0
- package/src/themes/typ/pixyll.css +0 -528
- package/src/themes/typ/whitey.css +0 -299
- /package/src/stories/Molecules/{Molecules.js → meta_Molecules.js} +0 -0
- /package/src/stories/Organisms/{Organisms.js → meta_Organisms.js} +0 -0
|
@@ -1,416 +0,0 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--side-bar-bg-color: #fafafa;
|
|
3
|
-
--control-text-color: #777;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
@include-when-export url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,700,400&subset=latin,latin-ext);
|
|
7
|
-
|
|
8
|
-
/* open-sans-regular - latin-ext_latin */
|
|
9
|
-
@font-face {
|
|
10
|
-
font-family: 'Open Sans';
|
|
11
|
-
font-style: normal;
|
|
12
|
-
font-weight: normal;
|
|
13
|
-
src: local('Open Sans Regular'), local('OpenSans-Regular'), url('./github/open-sans-v17-latin-ext_latin-regular.woff2') format('woff2');
|
|
14
|
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD, U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
15
|
-
}
|
|
16
|
-
/* open-sans-italic - latin-ext_latin */
|
|
17
|
-
@font-face {
|
|
18
|
-
font-family: 'Open Sans';
|
|
19
|
-
font-style: italic;
|
|
20
|
-
font-weight: normal;
|
|
21
|
-
src: local('Open Sans Italic'), local('OpenSans-Italic'), url('./github/open-sans-v17-latin-ext_latin-italic.woff2') format('woff2');
|
|
22
|
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD, U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
23
|
-
}
|
|
24
|
-
/* open-sans-700 - latin-ext_latin */
|
|
25
|
-
@font-face {
|
|
26
|
-
font-family: 'Open Sans';
|
|
27
|
-
font-style: normal;
|
|
28
|
-
font-weight: bold;
|
|
29
|
-
src: local('Open Sans Bold'), local('OpenSans-Bold'), url('./github/open-sans-v17-latin-ext_latin-700.woff2') format('woff2');
|
|
30
|
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD, U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
31
|
-
}
|
|
32
|
-
/* open-sans-700italic - latin-ext_latin */
|
|
33
|
-
@font-face {
|
|
34
|
-
font-family: 'Open Sans';
|
|
35
|
-
font-style: italic;
|
|
36
|
-
font-weight: bold;
|
|
37
|
-
src: local('Open Sans Bold Italic'), local('OpenSans-BoldItalic'), url('./github/open-sans-v17-latin-ext_latin-700italic.woff2') format('woff2');
|
|
38
|
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD, U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
html {
|
|
42
|
-
font-size: 16px;
|
|
43
|
-
-webkit-font-smoothing: antialiased;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
body {
|
|
47
|
-
font-family: "Open Sans","Clear Sans", "Helvetica Neue", Helvetica, Arial, 'Segoe UI Emoji', sans-serif;
|
|
48
|
-
color: rgb(51, 51, 51);
|
|
49
|
-
line-height: 1.6;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
#write {
|
|
53
|
-
max-width: 860px;
|
|
54
|
-
margin: 0 auto;
|
|
55
|
-
padding: 30px;
|
|
56
|
-
padding-bottom: 100px;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
@media only screen and (min-width: 1400px) {
|
|
60
|
-
#write {
|
|
61
|
-
max-width: 1024px;
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
@media only screen and (min-width: 1800px) {
|
|
66
|
-
#write {
|
|
67
|
-
max-width: 1200px;
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
#write > ul:first-child,
|
|
72
|
-
#write > ol:first-child{
|
|
73
|
-
margin-top: 30px;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
a {
|
|
77
|
-
color: #4183C4;
|
|
78
|
-
}
|
|
79
|
-
h1,
|
|
80
|
-
h2,
|
|
81
|
-
h3,
|
|
82
|
-
h4,
|
|
83
|
-
h5,
|
|
84
|
-
h6 {
|
|
85
|
-
position: relative;
|
|
86
|
-
margin-top: 1rem;
|
|
87
|
-
margin-bottom: 1rem;
|
|
88
|
-
font-weight: bold;
|
|
89
|
-
line-height: 1.4;
|
|
90
|
-
cursor: text;
|
|
91
|
-
}
|
|
92
|
-
h1:hover a.anchor,
|
|
93
|
-
h2:hover a.anchor,
|
|
94
|
-
h3:hover a.anchor,
|
|
95
|
-
h4:hover a.anchor,
|
|
96
|
-
h5:hover a.anchor,
|
|
97
|
-
h6:hover a.anchor {
|
|
98
|
-
text-decoration: none;
|
|
99
|
-
}
|
|
100
|
-
h1 tt,
|
|
101
|
-
h1 code {
|
|
102
|
-
font-size: inherit;
|
|
103
|
-
}
|
|
104
|
-
h2 tt,
|
|
105
|
-
h2 code {
|
|
106
|
-
font-size: inherit;
|
|
107
|
-
}
|
|
108
|
-
h3 tt,
|
|
109
|
-
h3 code {
|
|
110
|
-
font-size: inherit;
|
|
111
|
-
}
|
|
112
|
-
h4 tt,
|
|
113
|
-
h4 code {
|
|
114
|
-
font-size: inherit;
|
|
115
|
-
}
|
|
116
|
-
h5 tt,
|
|
117
|
-
h5 code {
|
|
118
|
-
font-size: inherit;
|
|
119
|
-
}
|
|
120
|
-
h6 tt,
|
|
121
|
-
h6 code {
|
|
122
|
-
font-size: inherit;
|
|
123
|
-
}
|
|
124
|
-
h1 {
|
|
125
|
-
font-size: 2.25em;
|
|
126
|
-
line-height: 1.2;
|
|
127
|
-
border-bottom: 1px solid #eee;
|
|
128
|
-
}
|
|
129
|
-
h2 {
|
|
130
|
-
font-size: 1.75em;
|
|
131
|
-
line-height: 1.225;
|
|
132
|
-
border-bottom: 1px solid #eee;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
/*@media print {
|
|
136
|
-
.typora-export h1,
|
|
137
|
-
.typora-export h2 {
|
|
138
|
-
border-bottom: none;
|
|
139
|
-
padding-bottom: initial;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
.typora-export h1::after,
|
|
143
|
-
.typora-export h2::after {
|
|
144
|
-
content: "";
|
|
145
|
-
display: block;
|
|
146
|
-
height: 100px;
|
|
147
|
-
margin-top: -96px;
|
|
148
|
-
border-top: 1px solid #eee;
|
|
149
|
-
}
|
|
150
|
-
}*/
|
|
151
|
-
|
|
152
|
-
h3 {
|
|
153
|
-
font-size: 1.5em;
|
|
154
|
-
line-height: 1.43;
|
|
155
|
-
}
|
|
156
|
-
h4 {
|
|
157
|
-
font-size: 1.25em;
|
|
158
|
-
}
|
|
159
|
-
h5 {
|
|
160
|
-
font-size: 1em;
|
|
161
|
-
}
|
|
162
|
-
h6 {
|
|
163
|
-
font-size: 1em;
|
|
164
|
-
color: #777;
|
|
165
|
-
}
|
|
166
|
-
p,
|
|
167
|
-
blockquote,
|
|
168
|
-
ul,
|
|
169
|
-
ol,
|
|
170
|
-
dl,
|
|
171
|
-
table{
|
|
172
|
-
margin: 0.8em 0;
|
|
173
|
-
}
|
|
174
|
-
li>ol,
|
|
175
|
-
li>ul {
|
|
176
|
-
margin: 0 0;
|
|
177
|
-
}
|
|
178
|
-
hr {
|
|
179
|
-
height: 2px;
|
|
180
|
-
padding: 0;
|
|
181
|
-
margin: 16px 0;
|
|
182
|
-
background-color: #e7e7e7;
|
|
183
|
-
border: 0 none;
|
|
184
|
-
overflow: hidden;
|
|
185
|
-
box-sizing: content-box;
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
li p.first {
|
|
189
|
-
display: inline-block;
|
|
190
|
-
}
|
|
191
|
-
ul,
|
|
192
|
-
ol {
|
|
193
|
-
padding-left: 30px;
|
|
194
|
-
}
|
|
195
|
-
ul:first-child,
|
|
196
|
-
ol:first-child {
|
|
197
|
-
margin-top: 0;
|
|
198
|
-
}
|
|
199
|
-
ul:last-child,
|
|
200
|
-
ol:last-child {
|
|
201
|
-
margin-bottom: 0;
|
|
202
|
-
}
|
|
203
|
-
blockquote {
|
|
204
|
-
border-left: 4px solid #dfe2e5;
|
|
205
|
-
padding: 0 15px;
|
|
206
|
-
color: #777777;
|
|
207
|
-
}
|
|
208
|
-
blockquote blockquote {
|
|
209
|
-
padding-right: 0;
|
|
210
|
-
}
|
|
211
|
-
table {
|
|
212
|
-
padding: 0;
|
|
213
|
-
word-break: initial;
|
|
214
|
-
}
|
|
215
|
-
table tr {
|
|
216
|
-
border: 1px solid #dfe2e5;
|
|
217
|
-
margin: 0;
|
|
218
|
-
padding: 0;
|
|
219
|
-
}
|
|
220
|
-
table tr:nth-child(2n),
|
|
221
|
-
thead {
|
|
222
|
-
background-color: #f8f8f8;
|
|
223
|
-
}
|
|
224
|
-
table th {
|
|
225
|
-
font-weight: bold;
|
|
226
|
-
border: 1px solid #dfe2e5;
|
|
227
|
-
border-bottom: 0;
|
|
228
|
-
margin: 0;
|
|
229
|
-
padding: 6px 13px;
|
|
230
|
-
}
|
|
231
|
-
table td {
|
|
232
|
-
border: 1px solid #dfe2e5;
|
|
233
|
-
margin: 0;
|
|
234
|
-
padding: 6px 13px;
|
|
235
|
-
}
|
|
236
|
-
table th:first-child,
|
|
237
|
-
table td:first-child {
|
|
238
|
-
margin-top: 0;
|
|
239
|
-
}
|
|
240
|
-
table th:last-child,
|
|
241
|
-
table td:last-child {
|
|
242
|
-
margin-bottom: 0;
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
.CodeMirror-lines {
|
|
246
|
-
padding-left: 4px;
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
.code-tooltip {
|
|
250
|
-
box-shadow: 0 1px 1px 0 rgba(0,28,36,.3);
|
|
251
|
-
border-top: 1px solid #eef2f2;
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
.md-fences,
|
|
255
|
-
code,
|
|
256
|
-
tt {
|
|
257
|
-
border: 1px solid #e7eaed;
|
|
258
|
-
background-color: #f8f8f8;
|
|
259
|
-
border-radius: 3px;
|
|
260
|
-
padding: 0;
|
|
261
|
-
padding: 2px 4px 0px 4px;
|
|
262
|
-
font-size: 0.9em;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
code {
|
|
266
|
-
background-color: #f3f4f4;
|
|
267
|
-
padding: 0 2px 0 2px;
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
.md-fences {
|
|
271
|
-
margin-bottom: 15px;
|
|
272
|
-
margin-top: 15px;
|
|
273
|
-
padding-top: 8px;
|
|
274
|
-
padding-bottom: 6px;
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
.md-task-list-item > input {
|
|
279
|
-
margin-left: -1.3em;
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
@media print {
|
|
283
|
-
html {
|
|
284
|
-
font-size: 13px;
|
|
285
|
-
}
|
|
286
|
-
pre {
|
|
287
|
-
page-break-inside: avoid;
|
|
288
|
-
word-wrap: break-word;
|
|
289
|
-
}
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
.md-fences {
|
|
293
|
-
background-color: #f8f8f8;
|
|
294
|
-
}
|
|
295
|
-
#write pre.md-meta-block {
|
|
296
|
-
padding: 1rem;
|
|
297
|
-
font-size: 85%;
|
|
298
|
-
line-height: 1.45;
|
|
299
|
-
background-color: #f7f7f7;
|
|
300
|
-
border: 0;
|
|
301
|
-
border-radius: 3px;
|
|
302
|
-
color: #777777;
|
|
303
|
-
margin-top: 0 !important;
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
.mathjax-block>.code-tooltip {
|
|
307
|
-
bottom: .375rem;
|
|
308
|
-
}
|
|
309
|
-
|
|
310
|
-
.md-mathjax-midline {
|
|
311
|
-
background: #fafafa;
|
|
312
|
-
}
|
|
313
|
-
|
|
314
|
-
#write>h3.md-focus:before{
|
|
315
|
-
left: -1.5625rem;
|
|
316
|
-
top: .375rem;
|
|
317
|
-
}
|
|
318
|
-
#write>h4.md-focus:before{
|
|
319
|
-
left: -1.5625rem;
|
|
320
|
-
top: .285714286rem;
|
|
321
|
-
}
|
|
322
|
-
#write>h5.md-focus:before{
|
|
323
|
-
left: -1.5625rem;
|
|
324
|
-
top: .285714286rem;
|
|
325
|
-
}
|
|
326
|
-
#write>h6.md-focus:before{
|
|
327
|
-
left: -1.5625rem;
|
|
328
|
-
top: .285714286rem;
|
|
329
|
-
}
|
|
330
|
-
.md-image>.md-meta {
|
|
331
|
-
/*border: 1px solid #ddd;*/
|
|
332
|
-
border-radius: 3px;
|
|
333
|
-
padding: 2px 0px 0px 4px;
|
|
334
|
-
font-size: 0.9em;
|
|
335
|
-
color: inherit;
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
.md-tag {
|
|
339
|
-
color: #a7a7a7;
|
|
340
|
-
opacity: 1;
|
|
341
|
-
}
|
|
342
|
-
|
|
343
|
-
.md-toc {
|
|
344
|
-
margin-top:20px;
|
|
345
|
-
padding-bottom:20px;
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
.sidebar-tabs {
|
|
349
|
-
border-bottom: none;
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
#typora-quick-open {
|
|
353
|
-
border: 1px solid #ddd;
|
|
354
|
-
background-color: #f8f8f8;
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
#typora-quick-open-item {
|
|
358
|
-
background-color: #FAFAFA;
|
|
359
|
-
border-color: #FEFEFE #e5e5e5 #e5e5e5 #eee;
|
|
360
|
-
border-style: solid;
|
|
361
|
-
border-width: 1px;
|
|
362
|
-
}
|
|
363
|
-
|
|
364
|
-
/** focus mode */
|
|
365
|
-
.on-focus-mode blockquote {
|
|
366
|
-
border-left-color: rgba(85, 85, 85, 0.12);
|
|
367
|
-
}
|
|
368
|
-
|
|
369
|
-
header, .context-menu, .megamenu-content, footer{
|
|
370
|
-
font-family: "Segoe UI", "Arial", sans-serif;
|
|
371
|
-
}
|
|
372
|
-
|
|
373
|
-
.file-node-content:hover .file-node-icon,
|
|
374
|
-
.file-node-content:hover .file-node-open-state{
|
|
375
|
-
visibility: visible;
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
.mac-seamless-mode #typora-sidebar {
|
|
379
|
-
background-color: #fafafa;
|
|
380
|
-
background-color: var(--side-bar-bg-color);
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
.mac-os #write{
|
|
384
|
-
caret-color: AccentColor;
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
.md-lang {
|
|
388
|
-
color: #b4654d;
|
|
389
|
-
}
|
|
390
|
-
|
|
391
|
-
/*.html-for-mac {
|
|
392
|
-
--item-hover-bg-color: #E6F0FE;
|
|
393
|
-
}*/
|
|
394
|
-
|
|
395
|
-
#md-notification .btn {
|
|
396
|
-
border: 0;
|
|
397
|
-
}
|
|
398
|
-
|
|
399
|
-
.dropdown-menu .divider {
|
|
400
|
-
border-color: #e5e5e5;
|
|
401
|
-
opacity: 0.4;
|
|
402
|
-
}
|
|
403
|
-
|
|
404
|
-
.ty-preferences .window-content {
|
|
405
|
-
background-color: #fafafa;
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
.ty-preferences .nav-group-item.active {
|
|
409
|
-
color: white;
|
|
410
|
-
background: #999;
|
|
411
|
-
}
|
|
412
|
-
|
|
413
|
-
.menu-item-container a.menu-style-btn {
|
|
414
|
-
background-color: #f5f8fa;
|
|
415
|
-
background-image: linear-gradient( 180deg , hsla(0, 0%, 100%, 0.8), hsla(0, 0%, 100%, 0));
|
|
416
|
-
}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
This is a preliminary version (2006-09-30), barring acceptance from
|
|
2
|
-
the LaTeX Project Team and other feedback, of the GUST Font License.
|
|
3
|
-
(GUST is the Polish TeX Users Group, http://www.gust.org.pl)
|
|
4
|
-
|
|
5
|
-
For the most recent version of this license see
|
|
6
|
-
http://www.gust.org.pl/fonts/licenses/GUST-FONT-LICENSE.txt
|
|
7
|
-
or
|
|
8
|
-
http://tug.org/fonts/licenses/GUST-FONT-LICENSE.txt
|
|
9
|
-
|
|
10
|
-
This work may be distributed and/or modified under the conditions
|
|
11
|
-
of the LaTeX Project Public License, either version 1.3c of this
|
|
12
|
-
license or (at your option) any later version.
|
|
13
|
-
|
|
14
|
-
Please also observe the following clause:
|
|
15
|
-
1) it is requested, but not legally required, that derived works be
|
|
16
|
-
distributed only after changing the names of the fonts comprising this
|
|
17
|
-
work and given in an accompanying "manifest", and that the
|
|
18
|
-
files comprising the Work, as listed in the manifest, also be given
|
|
19
|
-
new names. Any exceptions to this request are also given in the
|
|
20
|
-
manifest.
|
|
21
|
-
|
|
22
|
-
We recommend the manifest be given in a separate file named
|
|
23
|
-
MANIFEST-<fontid>.txt, where <fontid> is some unique identification
|
|
24
|
-
of the font family. If a separate "readme" file accompanies the Work,
|
|
25
|
-
we recommend a name of the form README-<fontid>.txt.
|
|
26
|
-
|
|
27
|
-
The latest version of the LaTeX Project Public License is in
|
|
28
|
-
http://www.latex-project.org/lppl.txt and version 1.3c or later
|
|
29
|
-
is part of all distributions of LaTeX version 2006/05/20 or later.
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|