this.gui 1.0.15 → 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/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,410 +0,0 @@
|
|
|
1
|
-
@include-when-export url(https://fonts.googleapis.com/css?family=Didact+Gothic&display=swap&subset=cyrillic,cyrillic-ext,greek,greek-ext,latin-ext);
|
|
2
|
-
|
|
3
|
-
@font-face {
|
|
4
|
-
font-family: 'TeXGyreAdventor';
|
|
5
|
-
font-style: normal;
|
|
6
|
-
font-weight: normal;
|
|
7
|
-
src: url(./gothic/texgyreadventor-regular.woff) format('woff');
|
|
8
|
-
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;
|
|
9
|
-
}
|
|
10
|
-
@font-face {
|
|
11
|
-
font-family: 'TeXGyreAdventor';
|
|
12
|
-
font-style: normal;
|
|
13
|
-
font-weight: bold;
|
|
14
|
-
src: url(./gothic/texgyreadventor-bold.woff) format('woff');
|
|
15
|
-
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;
|
|
16
|
-
}
|
|
17
|
-
@font-face {
|
|
18
|
-
font-family: 'TeXGyreAdventor';
|
|
19
|
-
font-style: italic;
|
|
20
|
-
font-weight: normal;
|
|
21
|
-
src: url(./gothic/texgyreadventor-italic.woff) format('woff');
|
|
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;
|
|
23
|
-
}
|
|
24
|
-
@font-face {
|
|
25
|
-
font-family: 'TeXGyreAdventor';
|
|
26
|
-
font-style: italic;
|
|
27
|
-
font-weight: bold;
|
|
28
|
-
src: url(./gothic/texgyreadventor-bolditalic.woff) format('woff');
|
|
29
|
-
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;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
/* cyrillic-ext */
|
|
33
|
-
@font-face {
|
|
34
|
-
font-family: 'Didact Gothic';
|
|
35
|
-
font-style: normal;
|
|
36
|
-
font-weight: 400;
|
|
37
|
-
font-display: swap;
|
|
38
|
-
src: local('Didact Gothic Regular'), local('DidactGothic-Regular'), url(./gothic/didact-gothic-c-ext.woff2) format('woff2');
|
|
39
|
-
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
|
40
|
-
}
|
|
41
|
-
/* cyrillic */
|
|
42
|
-
@font-face {
|
|
43
|
-
font-family: 'Didact Gothic';
|
|
44
|
-
font-style: normal;
|
|
45
|
-
font-weight: 400;
|
|
46
|
-
font-display: swap;
|
|
47
|
-
src: local('Didact Gothic Regular'), local('DidactGothic-Regular'), url(./gothic/didact-gothic-c.woff2) format('woff2');
|
|
48
|
-
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
:root {
|
|
52
|
-
--window-border: none;
|
|
53
|
-
--typora-center-window-title: true;
|
|
54
|
-
--active-file-bg-color: #f3f3f3;
|
|
55
|
-
--bg-color: #fcfcfc;
|
|
56
|
-
--control-text-color: #777;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.mac-seamless-mode #typora-sidebar {
|
|
60
|
-
top: 20px;
|
|
61
|
-
padding-top: 0;
|
|
62
|
-
height: auto;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
html,
|
|
66
|
-
body,
|
|
67
|
-
#write{
|
|
68
|
-
background: #fcfcfc;
|
|
69
|
-
background: var(--bg-color);
|
|
70
|
-
font-family: 'TeXGyreAdventor', "Century Gothic", "Didact Gothic", "Yu Gothic", 'Segoe UI Emoji', sans-serif;
|
|
71
|
-
font-weight: 300;
|
|
72
|
-
-webkit-font-smoothing: antialiased;
|
|
73
|
-
}
|
|
74
|
-
h1,
|
|
75
|
-
h2,
|
|
76
|
-
h3,
|
|
77
|
-
h4,
|
|
78
|
-
h5,
|
|
79
|
-
h6 {
|
|
80
|
-
color: #111;
|
|
81
|
-
font-family: 'TeXGyreAdventor', "Century Gothic", "Didact Gothic", "Yu Gothic", sans-serif;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
html {
|
|
85
|
-
font-size:16px;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
#write {
|
|
89
|
-
max-width: 914px;
|
|
90
|
-
text-align: justify;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
@media only screen and (min-width: 1400px) {
|
|
94
|
-
#write {
|
|
95
|
-
max-width: 1024px;
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
#write>h1:first-child {
|
|
100
|
-
margin-top: 2.75rem;
|
|
101
|
-
}
|
|
102
|
-
#write>h2:first-child {
|
|
103
|
-
margin-top: 1.75rem;
|
|
104
|
-
}
|
|
105
|
-
#write>h3:first-child {
|
|
106
|
-
margin-top: 1rem;
|
|
107
|
-
}
|
|
108
|
-
#write>h4:first-child {
|
|
109
|
-
margin-top: 0.5rem;
|
|
110
|
-
}
|
|
111
|
-
h1 {
|
|
112
|
-
font-weight: normal;
|
|
113
|
-
line-height: 4rem;
|
|
114
|
-
margin: 0 0 1.75rem;
|
|
115
|
-
padding: 20px 30px;
|
|
116
|
-
text-align: center;
|
|
117
|
-
text-transform: uppercase;
|
|
118
|
-
margin-top: 4rem;
|
|
119
|
-
}
|
|
120
|
-
h2 {
|
|
121
|
-
font-weight: normal;
|
|
122
|
-
line-height: 3rem;
|
|
123
|
-
margin: 0 0 1.9375rem;
|
|
124
|
-
padding: 0 30px;
|
|
125
|
-
text-align: center;
|
|
126
|
-
text-transform: uppercase;
|
|
127
|
-
margin-top: 3rem
|
|
128
|
-
}
|
|
129
|
-
h3 {
|
|
130
|
-
font-weight: normal;
|
|
131
|
-
}
|
|
132
|
-
h4 {
|
|
133
|
-
font-weight: normal;
|
|
134
|
-
}
|
|
135
|
-
h5 {
|
|
136
|
-
font-size: 1.125rem;
|
|
137
|
-
font-weight: normal;
|
|
138
|
-
}
|
|
139
|
-
h6 {
|
|
140
|
-
font-size: 1rem;
|
|
141
|
-
font-weight: bold;
|
|
142
|
-
}
|
|
143
|
-
p {
|
|
144
|
-
color: #111;
|
|
145
|
-
font-size: 1rem;
|
|
146
|
-
line-height: 1.75rem;
|
|
147
|
-
margin: 0 0 1.25rem;
|
|
148
|
-
}
|
|
149
|
-
#write>h3.md-focus:before {
|
|
150
|
-
left: -1.875rem;
|
|
151
|
-
top: 0.5rem;
|
|
152
|
-
padding: 2px;
|
|
153
|
-
}
|
|
154
|
-
#write>h4.md-focus:before {
|
|
155
|
-
left: -1.875rem;
|
|
156
|
-
top: 0.3125rem;
|
|
157
|
-
padding: 2px;
|
|
158
|
-
}
|
|
159
|
-
#write>h5.md-focus:before {
|
|
160
|
-
left: -1.875rem;
|
|
161
|
-
top: 0.25rem;
|
|
162
|
-
padding: 2px;
|
|
163
|
-
}
|
|
164
|
-
#write>h6.md-focus:before {
|
|
165
|
-
left: -1.875rem;
|
|
166
|
-
top: .125rem;
|
|
167
|
-
padding: 2px;
|
|
168
|
-
}
|
|
169
|
-
@media screen and (max-width: 48em) {
|
|
170
|
-
blockquote {
|
|
171
|
-
margin-left: 1rem;
|
|
172
|
-
margin-right: 0;
|
|
173
|
-
padding: 0.5em;
|
|
174
|
-
}
|
|
175
|
-
.h1,
|
|
176
|
-
h1 {
|
|
177
|
-
font-size: 2.827rem;
|
|
178
|
-
}
|
|
179
|
-
.h2,
|
|
180
|
-
h2 {
|
|
181
|
-
font-size: 1.999rem;
|
|
182
|
-
}
|
|
183
|
-
.h3,
|
|
184
|
-
h3 {
|
|
185
|
-
font-size: 1.413rem;
|
|
186
|
-
}
|
|
187
|
-
.h4,
|
|
188
|
-
h4 {
|
|
189
|
-
font-size: 1.250rem;
|
|
190
|
-
}
|
|
191
|
-
.h5,
|
|
192
|
-
h5 {
|
|
193
|
-
font-size: 1.150rem;
|
|
194
|
-
}
|
|
195
|
-
.h6,
|
|
196
|
-
h6 {
|
|
197
|
-
font-size: 1rem;
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
a,
|
|
201
|
-
.md-def-url {
|
|
202
|
-
color: #990000;
|
|
203
|
-
text-decoration: none;
|
|
204
|
-
}
|
|
205
|
-
a:hover {
|
|
206
|
-
text-decoration: underline;
|
|
207
|
-
}
|
|
208
|
-
table {
|
|
209
|
-
margin-bottom: 20px
|
|
210
|
-
}
|
|
211
|
-
table th,
|
|
212
|
-
table td {
|
|
213
|
-
padding: 8px;
|
|
214
|
-
line-height: 1.25rem;
|
|
215
|
-
vertical-align: top;
|
|
216
|
-
border-top: 1px solid #ddd
|
|
217
|
-
}
|
|
218
|
-
table th {
|
|
219
|
-
font-weight: bold
|
|
220
|
-
}
|
|
221
|
-
table thead th {
|
|
222
|
-
vertical-align: bottom
|
|
223
|
-
}
|
|
224
|
-
table caption+thead tr:first-child th,
|
|
225
|
-
table caption+thead tr:first-child td,
|
|
226
|
-
table colgroup+thead tr:first-child th,
|
|
227
|
-
table colgroup+thead tr:first-child td,
|
|
228
|
-
table thead:first-child tr:first-child th,
|
|
229
|
-
table thead:first-child tr:first-child td {
|
|
230
|
-
border-top: 0
|
|
231
|
-
}
|
|
232
|
-
table tbody+tbody {
|
|
233
|
-
border-top: 2px solid #ddd
|
|
234
|
-
}
|
|
235
|
-
code, .md-fences {
|
|
236
|
-
padding: .5em;
|
|
237
|
-
/*background: #f0f0f0;*/
|
|
238
|
-
border: 1px solid #ccc;
|
|
239
|
-
padding: .1em;
|
|
240
|
-
font-size: 0.9em;
|
|
241
|
-
margin-left: 0.2em;
|
|
242
|
-
margin-right: 0.2em;
|
|
243
|
-
}
|
|
244
|
-
.md-fences {
|
|
245
|
-
margin: 0 0 20px;
|
|
246
|
-
font-size: 1em;
|
|
247
|
-
padding: 0.3em 1em;
|
|
248
|
-
padding-top: 0.4em;
|
|
249
|
-
}
|
|
250
|
-
.task-list{
|
|
251
|
-
padding-left: 0;
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
.task-list-item {
|
|
255
|
-
padding-left:2.125rem;
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
input {
|
|
259
|
-
border-style: ridge;
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
.task-list-item input {
|
|
263
|
-
top: 3px;
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
.md-task-list-item input {
|
|
267
|
-
margin-left: -1.5em;
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
.task-list-item input:before {
|
|
271
|
-
content: "";
|
|
272
|
-
display: inline-block;
|
|
273
|
-
width: 1rem;
|
|
274
|
-
height: 1rem;
|
|
275
|
-
vertical-align: middle;
|
|
276
|
-
text-align: center;
|
|
277
|
-
border: 1px solid gray;
|
|
278
|
-
background-color: #fdfdfd;
|
|
279
|
-
margin-left: 0;
|
|
280
|
-
-webkit-appearance: none;
|
|
281
|
-
margin-top: -1rem;
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
.typora-node .task-list-item input:before {
|
|
285
|
-
top: 0.3ex;
|
|
286
|
-
position: absolute;
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
.task-list-item input:checked:before,
|
|
290
|
-
.task-list-item input[checked]:before{
|
|
291
|
-
content: '\25FC';
|
|
292
|
-
/*◘*/
|
|
293
|
-
font-size: 0.8125rem;
|
|
294
|
-
line-height: 0.9375rem;
|
|
295
|
-
}
|
|
296
|
-
|
|
297
|
-
/* Chrome 29+ */
|
|
298
|
-
.task-list-item input:before {
|
|
299
|
-
margin-top: -0.2rem;
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
.task-list-item input:checked:before,
|
|
303
|
-
.task-list-item input[checked]:before {
|
|
304
|
-
margin-top: -0.2rem;
|
|
305
|
-
}
|
|
306
|
-
|
|
307
|
-
.html-for-mac .task-list-item input:checked:before,
|
|
308
|
-
.html-for-mac .task-list-item input[checked]:before {
|
|
309
|
-
margin-top: -0.8rem;
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
blockquote {
|
|
313
|
-
margin: 0 0 1.11111rem;
|
|
314
|
-
padding: 0.5rem 1.11111rem 0 1.05556rem;
|
|
315
|
-
border-left: 1px solid gray;
|
|
316
|
-
}
|
|
317
|
-
blockquote,
|
|
318
|
-
blockquote p {
|
|
319
|
-
line-height: 1.6;
|
|
320
|
-
color: #6f6f6f;
|
|
321
|
-
}
|
|
322
|
-
#write pre.md-meta-block {
|
|
323
|
-
min-height: 30px;
|
|
324
|
-
background: #f8f8f8;
|
|
325
|
-
padding: 1.5em;
|
|
326
|
-
font-weight: 300;
|
|
327
|
-
font-size: 1em;
|
|
328
|
-
padding-bottom: 1.5em;
|
|
329
|
-
padding-top: 3em;
|
|
330
|
-
margin-top: -1.5em;
|
|
331
|
-
color: #999;
|
|
332
|
-
|
|
333
|
-
width: 100vw;
|
|
334
|
-
max-width: calc(100% + 60px);
|
|
335
|
-
margin-left: -30px;
|
|
336
|
-
border-left: 30px #f8f8f8 solid;
|
|
337
|
-
border-right: 30px #f8f8f8 solid;
|
|
338
|
-
}
|
|
339
|
-
.MathJax_Display {
|
|
340
|
-
font-size: 0.9em;
|
|
341
|
-
margin-top: 0.5em;
|
|
342
|
-
margin-bottom: 0;
|
|
343
|
-
}
|
|
344
|
-
p.mathjax-block,
|
|
345
|
-
.mathjax-block {
|
|
346
|
-
padding-bottom: 0;
|
|
347
|
-
}
|
|
348
|
-
.mathjax-block>.code-tooltip {
|
|
349
|
-
bottom: 5px;
|
|
350
|
-
box-shadow: none;
|
|
351
|
-
}
|
|
352
|
-
.md-image>.md-meta {
|
|
353
|
-
padding-left: 0.5em;
|
|
354
|
-
padding-right: 0.5em;
|
|
355
|
-
}
|
|
356
|
-
.md-image>img {
|
|
357
|
-
margin-top: 2px;
|
|
358
|
-
}
|
|
359
|
-
.md-image>.md-meta:first-of-type:before {
|
|
360
|
-
padding-left: 4px;
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
#typora-source {
|
|
364
|
-
color: #555;
|
|
365
|
-
}
|
|
366
|
-
|
|
367
|
-
/** ui for windows **/
|
|
368
|
-
#md-searchpanel {
|
|
369
|
-
border-bottom: 1px solid #ccc;
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
#md-searchpanel .btn {
|
|
373
|
-
border: 1px solid #ccc;
|
|
374
|
-
}
|
|
375
|
-
|
|
376
|
-
#md-notification:before {
|
|
377
|
-
top: 14px;
|
|
378
|
-
}
|
|
379
|
-
|
|
380
|
-
#md-notification {
|
|
381
|
-
background: #eee;
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
.megamenu-menu-panel .btn {
|
|
385
|
-
border: 1px solid #ccc;
|
|
386
|
-
}
|
|
387
|
-
|
|
388
|
-
#typora-sidebar {
|
|
389
|
-
box-shadow: none;
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
.file-list-item ,
|
|
393
|
-
.show-folder-name .file-list-item {
|
|
394
|
-
padding-top: 20px;
|
|
395
|
-
padding-bottom: 20px;
|
|
396
|
-
line-height: 20px;
|
|
397
|
-
}
|
|
398
|
-
|
|
399
|
-
.file-list-item-summary {
|
|
400
|
-
height: 40px;
|
|
401
|
-
line-height: 20px;
|
|
402
|
-
}
|
|
403
|
-
|
|
404
|
-
.ty-table-edit {
|
|
405
|
-
background: #ededed;
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
.dropdown-menu .divider {
|
|
409
|
-
border-color: #e5e5e5;
|
|
410
|
-
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|