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,299 +0,0 @@
|
|
|
1
|
-
html {
|
|
2
|
-
font-size: 19px;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
html, body {
|
|
6
|
-
margin: auto;
|
|
7
|
-
background: #fefefe;
|
|
8
|
-
-webkit-font-smoothing: antialiased;
|
|
9
|
-
}
|
|
10
|
-
body {
|
|
11
|
-
font-family: "Vollkorn", Palatino, Times;
|
|
12
|
-
color: #333;
|
|
13
|
-
line-height: 1.4;
|
|
14
|
-
text-align: justify;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
#write {
|
|
18
|
-
max-width: 960px;
|
|
19
|
-
margin: 0 auto;
|
|
20
|
-
margin-bottom: 2em;
|
|
21
|
-
line-height: 1.53;
|
|
22
|
-
padding-top: 40px;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
@media only screen and (min-width: 1400px) {
|
|
26
|
-
#write {
|
|
27
|
-
max-width: 1100px;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
@media print {
|
|
32
|
-
html {
|
|
33
|
-
font-size: 13px;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
/* Typography
|
|
38
|
-
-------------------------------------------------------- */
|
|
39
|
-
|
|
40
|
-
#write>h1:first-child,
|
|
41
|
-
h1 {
|
|
42
|
-
margin-top: 1.6em;
|
|
43
|
-
font-weight: normal;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
h1 {
|
|
47
|
-
font-size:3em;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
h2 {
|
|
51
|
-
margin-top:2em;
|
|
52
|
-
font-weight: normal;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
h3 {
|
|
56
|
-
font-weight: normal;
|
|
57
|
-
font-style: italic;
|
|
58
|
-
margin-top: 3em;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
h1,
|
|
62
|
-
h2,
|
|
63
|
-
h3{
|
|
64
|
-
text-align: center;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
h2:after{
|
|
68
|
-
border-bottom: 1px solid #2f2f2f;
|
|
69
|
-
content: '';
|
|
70
|
-
width: 100px;
|
|
71
|
-
display: block;
|
|
72
|
-
margin: 0 auto;
|
|
73
|
-
height: 1px;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
h1+h2, h2+h3 {
|
|
77
|
-
margin-top: 0.83em;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
p,
|
|
81
|
-
.mathjax-block {
|
|
82
|
-
margin-top: 0;
|
|
83
|
-
-webkit-hypens: auto;
|
|
84
|
-
-moz-hypens: auto;
|
|
85
|
-
hyphens: auto;
|
|
86
|
-
}
|
|
87
|
-
ul {
|
|
88
|
-
list-style: square;
|
|
89
|
-
padding-left: 1.2em;
|
|
90
|
-
}
|
|
91
|
-
ol {
|
|
92
|
-
padding-left: 1.2em;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
@media print {
|
|
96
|
-
ol {
|
|
97
|
-
padding-left: 40px;
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
blockquote {
|
|
102
|
-
margin-left: 1em;
|
|
103
|
-
padding-left: 1em;
|
|
104
|
-
border-left: 1px solid #ddd;
|
|
105
|
-
}
|
|
106
|
-
code,
|
|
107
|
-
pre {
|
|
108
|
-
font-family: "Consolas", "Menlo", "Monaco", monospace, serif;
|
|
109
|
-
font-size: .9em;
|
|
110
|
-
background: white;
|
|
111
|
-
}
|
|
112
|
-
.md-fences{
|
|
113
|
-
margin-left: 1em;
|
|
114
|
-
padding-left: 1em;
|
|
115
|
-
border: 1px solid #ddd;
|
|
116
|
-
padding-bottom: 8px;
|
|
117
|
-
padding-top: 6px;
|
|
118
|
-
margin-bottom: 1.5em;
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
a {
|
|
122
|
-
color: #2484c1;
|
|
123
|
-
text-decoration: none;
|
|
124
|
-
}
|
|
125
|
-
a:hover {
|
|
126
|
-
text-decoration: underline;
|
|
127
|
-
}
|
|
128
|
-
a img {
|
|
129
|
-
border: none;
|
|
130
|
-
}
|
|
131
|
-
h1 a,
|
|
132
|
-
h1 a:hover {
|
|
133
|
-
color: #333;
|
|
134
|
-
text-decoration: none;
|
|
135
|
-
}
|
|
136
|
-
hr {
|
|
137
|
-
color: #ddd;
|
|
138
|
-
height: 1px;
|
|
139
|
-
margin: 2em 0;
|
|
140
|
-
border-top: solid 1px #ddd;
|
|
141
|
-
border-bottom: none;
|
|
142
|
-
border-left: 0;
|
|
143
|
-
border-right: 0;
|
|
144
|
-
}
|
|
145
|
-
.ty-table-edit {
|
|
146
|
-
background: #ededed;
|
|
147
|
-
padding-top: 4px;
|
|
148
|
-
}
|
|
149
|
-
table {
|
|
150
|
-
margin-bottom: 1.333333rem
|
|
151
|
-
}
|
|
152
|
-
table th,
|
|
153
|
-
table td {
|
|
154
|
-
padding: 8px;
|
|
155
|
-
line-height: 1.333333rem;
|
|
156
|
-
vertical-align: top;
|
|
157
|
-
border-top: 1px solid #ddd
|
|
158
|
-
}
|
|
159
|
-
table th {
|
|
160
|
-
font-weight: bold
|
|
161
|
-
}
|
|
162
|
-
table thead th {
|
|
163
|
-
vertical-align: bottom
|
|
164
|
-
}
|
|
165
|
-
table caption+thead tr:first-child th,
|
|
166
|
-
table caption+thead tr:first-child td,
|
|
167
|
-
table colgroup+thead tr:first-child th,
|
|
168
|
-
table colgroup+thead tr:first-child td,
|
|
169
|
-
table thead:first-child tr:first-child th,
|
|
170
|
-
table thead:first-child tr:first-child td {
|
|
171
|
-
border-top: 0
|
|
172
|
-
}
|
|
173
|
-
table tbody+tbody {
|
|
174
|
-
border-top: 2px solid #ddd
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
.task-list{
|
|
178
|
-
padding:0;
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
.md-task-list-item {
|
|
182
|
-
padding-left: 1.6rem;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
.md-task-list-item > input:before {
|
|
186
|
-
content: '\221A';
|
|
187
|
-
display: inline-block;
|
|
188
|
-
width: 1.33333333rem;
|
|
189
|
-
height: 1.6rem;
|
|
190
|
-
vertical-align: middle;
|
|
191
|
-
text-align: center;
|
|
192
|
-
color: #ddd;
|
|
193
|
-
background-color: #fefefe;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
.md-task-list-item > input:checked:before,
|
|
197
|
-
.md-task-list-item > input[checked]:before{
|
|
198
|
-
color: inherit;
|
|
199
|
-
}
|
|
200
|
-
.md-tag {
|
|
201
|
-
color: inherit;
|
|
202
|
-
font: inherit;
|
|
203
|
-
}
|
|
204
|
-
#write pre.md-meta-block {
|
|
205
|
-
min-height: 35px;
|
|
206
|
-
padding: 0.5em 1em;
|
|
207
|
-
}
|
|
208
|
-
#write pre.md-meta-block {
|
|
209
|
-
white-space: pre;
|
|
210
|
-
background: #f8f8f8;
|
|
211
|
-
border: 0px;
|
|
212
|
-
color: #999;
|
|
213
|
-
|
|
214
|
-
width: 100vw;
|
|
215
|
-
max-width: calc(100% + 60px);
|
|
216
|
-
margin-left: -30px;
|
|
217
|
-
border-left: 30px #f8f8f8 solid;
|
|
218
|
-
border-right: 30px #f8f8f8 solid;
|
|
219
|
-
|
|
220
|
-
margin-bottom: 2em;
|
|
221
|
-
margin-top: -1.3333333333333rem;
|
|
222
|
-
padding-top: 26px;
|
|
223
|
-
padding-bottom: 10px;
|
|
224
|
-
line-height: 1.8em;
|
|
225
|
-
font-size: 0.9em;
|
|
226
|
-
font-size: 0.76em;
|
|
227
|
-
padding-left: 0;
|
|
228
|
-
}
|
|
229
|
-
.md-img-error.md-image>.md-meta{
|
|
230
|
-
vertical-align: bottom;
|
|
231
|
-
}
|
|
232
|
-
#write>h5.md-focus:before {
|
|
233
|
-
top: 2px;
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
.md-toc {
|
|
237
|
-
margin-top: 40px;
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
.md-toc-content {
|
|
241
|
-
padding-bottom: 20px;
|
|
242
|
-
}
|
|
243
|
-
|
|
244
|
-
.outline-expander:before {
|
|
245
|
-
color: inherit;
|
|
246
|
-
font-size: 14px;
|
|
247
|
-
top: auto;
|
|
248
|
-
content: "\f0da";
|
|
249
|
-
font-family: FontAwesome;
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
.outline-expander:hover:before,
|
|
253
|
-
.outline-item-open>.outline-item>.outline-expander:before {
|
|
254
|
-
content: "\f0d7";
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
/** source code mode */
|
|
258
|
-
#typora-source {
|
|
259
|
-
font-family: Courier, monospace;
|
|
260
|
-
color: #6A6A6A;
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
.html-for-mac #typora-sidebar {
|
|
264
|
-
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
|
|
265
|
-
box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
.cm-s-typora-default .cm-header,
|
|
269
|
-
.cm-s-typora-default .cm-property,
|
|
270
|
-
.CodeMirror.cm-s-typora-default div.CodeMirror-cursor {
|
|
271
|
-
color: #428bca;
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
.cm-s-typora-default .cm-atom, .cm-s-typora-default .cm-number {
|
|
275
|
-
color: #777777;
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
.typora-node .file-list-item-parent-loc,
|
|
279
|
-
.typora-node .file-list-item-time,
|
|
280
|
-
.typora-node .file-list-item-summary {
|
|
281
|
-
font-family: arial, sans-serif;
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
.md-task-list-item>input {
|
|
285
|
-
margin-left: -1.3em;
|
|
286
|
-
margin-top: calc(1rem - 12px);
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
.md-mathjax-midline {
|
|
290
|
-
background: #fafafa;
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
.md-fences .code-tooltip {
|
|
294
|
-
bottom: -2em !important;
|
|
295
|
-
}
|
|
296
|
-
|
|
297
|
-
.dropdown-menu .divider {
|
|
298
|
-
border-color: #e5e5e5;
|
|
299
|
-
}
|
|
File without changes
|
|
File without changes
|