提交小修改!
This commit is contained in:
4
old-themes/Readme.md
Normal file
4
old-themes/Readme.md
Normal file
@@ -0,0 +1,4 @@
|
||||
The built-in CSS will be replaced after update / reinstall, DO NOT MODIFY THEM.
|
||||
|
||||
Refer https://support.typora.io/Add-Custom-CSS/ when you want to modify those CSS.
|
||||
Refer https://support.typora.io/About-Themes/ if you want to create / install new themes.
|
415
old-themes/github.css
Normal file
415
old-themes/github.css
Normal file
@@ -0,0 +1,415 @@
|
||||
:root {
|
||||
--side-bar-bg-color: #fafafa;
|
||||
--control-text-color: #777;
|
||||
}
|
||||
|
||||
@include-when-export url(https://fonts.loli.net/css?family=Open+Sans:400italic,700italic,700,400&subset=latin,latin-ext);
|
||||
|
||||
/* open-sans-regular - latin-ext_latin */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
src: local('Open Sans Regular'), local('OpenSans-Regular'), url('./github/open-sans-v17-latin-ext_latin-regular.woff2') format('woff2');
|
||||
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;
|
||||
}
|
||||
/* open-sans-italic - latin-ext_latin */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: italic;
|
||||
font-weight: normal;
|
||||
src: local('Open Sans Italic'), local('OpenSans-Italic'), url('./github/open-sans-v17-latin-ext_latin-italic.woff2') format('woff2');
|
||||
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;
|
||||
}
|
||||
/* open-sans-700 - latin-ext_latin */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: bold;
|
||||
src: local('Open Sans Bold'), local('OpenSans-Bold'), url('./github/open-sans-v17-latin-ext_latin-700.woff2') format('woff2');
|
||||
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;
|
||||
}
|
||||
/* open-sans-700italic - latin-ext_latin */
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: italic;
|
||||
font-weight: bold;
|
||||
src: local('Open Sans Bold Italic'), local('OpenSans-BoldItalic'), url('./github/open-sans-v17-latin-ext_latin-700italic.woff2') format('woff2');
|
||||
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;
|
||||
}
|
||||
|
||||
html {
|
||||
font-size: 16px;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: "Open Sans","Clear Sans", "Helvetica Neue", Helvetica, Arial, 'Segoe UI Emoji', sans-serif;
|
||||
color: rgb(51, 51, 51);
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
#write {
|
||||
max-width: 860px;
|
||||
margin: 0 auto;
|
||||
padding: 30px;
|
||||
padding-bottom: 100px;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 1400px) {
|
||||
#write {
|
||||
max-width: 1024px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 1800px) {
|
||||
#write {
|
||||
max-width: 1200px;
|
||||
}
|
||||
}
|
||||
|
||||
#write > ul:first-child,
|
||||
#write > ol:first-child{
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #4183C4;
|
||||
}
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
position: relative;
|
||||
margin-top: 1rem;
|
||||
margin-bottom: 1rem;
|
||||
font-weight: bold;
|
||||
line-height: 1.4;
|
||||
cursor: text;
|
||||
}
|
||||
h1:hover a.anchor,
|
||||
h2:hover a.anchor,
|
||||
h3:hover a.anchor,
|
||||
h4:hover a.anchor,
|
||||
h5:hover a.anchor,
|
||||
h6:hover a.anchor {
|
||||
text-decoration: none;
|
||||
}
|
||||
h1 tt,
|
||||
h1 code {
|
||||
font-size: inherit;
|
||||
}
|
||||
h2 tt,
|
||||
h2 code {
|
||||
font-size: inherit;
|
||||
}
|
||||
h3 tt,
|
||||
h3 code {
|
||||
font-size: inherit;
|
||||
}
|
||||
h4 tt,
|
||||
h4 code {
|
||||
font-size: inherit;
|
||||
}
|
||||
h5 tt,
|
||||
h5 code {
|
||||
font-size: inherit;
|
||||
}
|
||||
h6 tt,
|
||||
h6 code {
|
||||
font-size: inherit;
|
||||
}
|
||||
h1 {
|
||||
font-size: 2.25em;
|
||||
line-height: 1.2;
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
h2 {
|
||||
font-size: 1.75em;
|
||||
line-height: 1.225;
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
|
||||
/*@media print {
|
||||
.typora-export h1,
|
||||
.typora-export h2 {
|
||||
border-bottom: none;
|
||||
padding-bottom: initial;
|
||||
}
|
||||
|
||||
.typora-export h1::after,
|
||||
.typora-export h2::after {
|
||||
content: "";
|
||||
display: block;
|
||||
height: 100px;
|
||||
margin-top: -96px;
|
||||
border-top: 1px solid #eee;
|
||||
}
|
||||
}*/
|
||||
|
||||
h3 {
|
||||
font-size: 1.5em;
|
||||
line-height: 1.43;
|
||||
}
|
||||
h4 {
|
||||
font-size: 1.25em;
|
||||
}
|
||||
h5 {
|
||||
font-size: 1em;
|
||||
}
|
||||
h6 {
|
||||
font-size: 1em;
|
||||
color: #777;
|
||||
}
|
||||
p,
|
||||
blockquote,
|
||||
ul,
|
||||
ol,
|
||||
dl,
|
||||
table{
|
||||
margin: 0.8em 0;
|
||||
}
|
||||
li>ol,
|
||||
li>ul {
|
||||
margin: 0 0;
|
||||
}
|
||||
hr {
|
||||
height: 2px;
|
||||
padding: 0;
|
||||
margin: 16px 0;
|
||||
background-color: #e7e7e7;
|
||||
border: 0 none;
|
||||
overflow: hidden;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
li p.first {
|
||||
display: inline-block;
|
||||
}
|
||||
ul,
|
||||
ol {
|
||||
padding-left: 30px;
|
||||
}
|
||||
ul:first-child,
|
||||
ol:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
ul:last-child,
|
||||
ol:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
blockquote {
|
||||
border-left: 4px solid #dfe2e5;
|
||||
padding: 0 15px;
|
||||
color: #777777;
|
||||
}
|
||||
blockquote blockquote {
|
||||
padding-right: 0;
|
||||
}
|
||||
table {
|
||||
padding: 0;
|
||||
word-break: initial;
|
||||
}
|
||||
table tr {
|
||||
border: 1px solid #dfe2e5;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
table tr:nth-child(2n),
|
||||
thead {
|
||||
background-color: #f8f8f8;
|
||||
}
|
||||
table th {
|
||||
font-weight: bold;
|
||||
border: 1px solid #dfe2e5;
|
||||
border-bottom: 0;
|
||||
margin: 0;
|
||||
padding: 6px 13px;
|
||||
}
|
||||
table td {
|
||||
border: 1px solid #dfe2e5;
|
||||
margin: 0;
|
||||
padding: 6px 13px;
|
||||
}
|
||||
table th:first-child,
|
||||
table td:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
table th:last-child,
|
||||
table td:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.CodeMirror-lines {
|
||||
padding-left: 4px;
|
||||
}
|
||||
|
||||
.code-tooltip {
|
||||
box-shadow: 0 1px 1px 0 rgba(0,28,36,.3);
|
||||
border-top: 1px solid #eef2f2;
|
||||
}
|
||||
|
||||
.md-fences,
|
||||
code,
|
||||
tt {
|
||||
border: 1px solid #e7eaed;
|
||||
background-color: #f8f8f8;
|
||||
border-radius: 3px;
|
||||
padding: 0;
|
||||
padding: 2px 4px 0px 4px;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
code {
|
||||
background-color: #f3f4f4;
|
||||
padding: 0 2px 0 2px;
|
||||
}
|
||||
|
||||
.md-fences {
|
||||
margin-bottom: 15px;
|
||||
margin-top: 15px;
|
||||
padding-top: 8px;
|
||||
padding-bottom: 6px;
|
||||
}
|
||||
|
||||
|
||||
.md-task-list-item > input {
|
||||
margin-left: -1.3em;
|
||||
}
|
||||
|
||||
@media print {
|
||||
html {
|
||||
font-size: 13px;
|
||||
}
|
||||
table,
|
||||
pre {
|
||||
page-break-inside: avoid;
|
||||
}
|
||||
pre {
|
||||
word-wrap: break-word;
|
||||
}
|
||||
}
|
||||
|
||||
.md-fences {
|
||||
background-color: #f8f8f8;
|
||||
}
|
||||
#write pre.md-meta-block {
|
||||
padding: 1rem;
|
||||
font-size: 85%;
|
||||
line-height: 1.45;
|
||||
background-color: #f7f7f7;
|
||||
border: 0;
|
||||
border-radius: 3px;
|
||||
color: #777777;
|
||||
margin-top: 0 !important;
|
||||
}
|
||||
|
||||
.mathjax-block>.code-tooltip {
|
||||
bottom: .375rem;
|
||||
}
|
||||
|
||||
.md-mathjax-midline {
|
||||
background: #fafafa;
|
||||
}
|
||||
|
||||
#write>h3.md-focus:before{
|
||||
left: -1.5625rem;
|
||||
top: .375rem;
|
||||
}
|
||||
#write>h4.md-focus:before{
|
||||
left: -1.5625rem;
|
||||
top: .285714286rem;
|
||||
}
|
||||
#write>h5.md-focus:before{
|
||||
left: -1.5625rem;
|
||||
top: .285714286rem;
|
||||
}
|
||||
#write>h6.md-focus:before{
|
||||
left: -1.5625rem;
|
||||
top: .285714286rem;
|
||||
}
|
||||
.md-image>.md-meta {
|
||||
/*border: 1px solid #ddd;*/
|
||||
border-radius: 3px;
|
||||
padding: 2px 0px 0px 4px;
|
||||
font-size: 0.9em;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.md-tag {
|
||||
color: #a7a7a7;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.md-toc {
|
||||
margin-top:20px;
|
||||
padding-bottom:20px;
|
||||
}
|
||||
|
||||
.sidebar-tabs {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
#typora-quick-open {
|
||||
border: 1px solid #ddd;
|
||||
background-color: #f8f8f8;
|
||||
}
|
||||
|
||||
#typora-quick-open-item {
|
||||
background-color: #FAFAFA;
|
||||
border-color: #FEFEFE #e5e5e5 #e5e5e5 #eee;
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
}
|
||||
|
||||
/** focus mode */
|
||||
.on-focus-mode blockquote {
|
||||
border-left-color: rgba(85, 85, 85, 0.12);
|
||||
}
|
||||
|
||||
header, .context-menu, .megamenu-content, footer{
|
||||
font-family: "Segoe UI", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
.file-node-content:hover .file-node-icon,
|
||||
.file-node-content:hover .file-node-open-state{
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.mac-seamless-mode #typora-sidebar {
|
||||
background-color: #fafafa;
|
||||
background-color: var(--side-bar-bg-color);
|
||||
}
|
||||
|
||||
.md-lang {
|
||||
color: #b4654d;
|
||||
}
|
||||
|
||||
/*.html-for-mac {
|
||||
--item-hover-bg-color: #E6F0FE;
|
||||
}*/
|
||||
|
||||
#md-notification .btn {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.dropdown-menu .divider {
|
||||
border-color: #e5e5e5;
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
.ty-preferences .window-content {
|
||||
background-color: #fafafa;
|
||||
}
|
||||
|
||||
.ty-preferences .nav-group-item.active {
|
||||
color: white;
|
||||
background: #999;
|
||||
}
|
||||
|
||||
.menu-item-container a.menu-style-btn {
|
||||
background-color: #f5f8fa;
|
||||
background-image: linear-gradient( 180deg , hsla(0, 0%, 100%, 0.8), hsla(0, 0%, 100%, 0));
|
||||
}
|
BIN
old-themes/github/400.woff
Normal file
BIN
old-themes/github/400.woff
Normal file
Binary file not shown.
BIN
old-themes/github/400i.woff
Normal file
BIN
old-themes/github/400i.woff
Normal file
Binary file not shown.
BIN
old-themes/github/600i.woff
Normal file
BIN
old-themes/github/600i.woff
Normal file
Binary file not shown.
BIN
old-themes/github/700.woff
Normal file
BIN
old-themes/github/700.woff
Normal file
Binary file not shown.
BIN
old-themes/github/700i.woff
Normal file
BIN
old-themes/github/700i.woff
Normal file
Binary file not shown.
622
old-themes/newsprint.css
Normal file
622
old-themes/newsprint.css
Normal file
@@ -0,0 +1,622 @@
|
||||
/* meyer reset -- http://meyerweb.com/eric/tools/css/reset/ , v2.0 | 20110126 | License: none (public domain) */
|
||||
|
||||
@include-when-export url(https://fonts.loli.net/css?family=PT+Serif:400,400italic,700,700italic&subset=latin,cyrillic-ext,cyrillic,latin-ext);
|
||||
|
||||
/* =========== */
|
||||
|
||||
/* pt-serif-regular - latin */
|
||||
@font-face {
|
||||
font-family: 'PT Serif';
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
src: local('PT Serif'), local('PTSerif-Regular'), url('./newsprint/pt-serif-v11-latin-regular.woff2') format('woff2');
|
||||
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;
|
||||
}
|
||||
/* pt-serif-italic - latin */
|
||||
@font-face {
|
||||
font-family: 'PT Serif';
|
||||
font-style: italic;
|
||||
font-weight: normal;
|
||||
src: local('PT Serif Italic'), local('PTSerif-Italic'), url('./newsprint/pt-serif-v11-latin-italic.woff2') format('woff2');
|
||||
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;
|
||||
}
|
||||
/* pt-serif-700 - latin */
|
||||
@font-face {
|
||||
font-family: 'PT Serif';
|
||||
font-style: normal;
|
||||
font-weight: bold;
|
||||
src: local('PT Serif Bold'), local('PTSerif-Bold'), url('./newsprint/pt-serif-v11-latin-700.woff2') format('woff2');
|
||||
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;
|
||||
}
|
||||
/* pt-serif-700italic - latin */
|
||||
@font-face {
|
||||
font-family: 'PT Serif';
|
||||
font-style: italic;
|
||||
font-weight: bold;
|
||||
src: local('PT Serif Bold Italic'), local('PTSerif-BoldItalic'), url('./newsprint/pt-serif-v11-latin-700italic.woff2') format('woff2');
|
||||
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;
|
||||
}
|
||||
|
||||
:root {
|
||||
--active-file-bg-color: #dadada;
|
||||
--active-file-bg-color: rgba(32, 43, 51, 0.63);
|
||||
--active-file-text-color: white;
|
||||
--bg-color: #f3f2ee;
|
||||
--text-color: #1f0909;
|
||||
--control-text-color: #444;
|
||||
--rawblock-edit-panel-bd: #e5e5e5;
|
||||
|
||||
--select-text-bg-color: rgba(32, 43, 51, 0.63);
|
||||
--select-text-font-color: white;
|
||||
}
|
||||
|
||||
pre {
|
||||
--select-text-bg-color: #36284e;
|
||||
--select-text-font-color: #fff;
|
||||
}
|
||||
|
||||
html {
|
||||
font-size: 16px;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
html, body {
|
||||
background-color: #f3f2ee;
|
||||
font-family: "PT Serif", 'Times New Roman', Times, serif;
|
||||
color: #1f0909;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
/*#write {
|
||||
overflow-x: auto;
|
||||
max-width: initial;
|
||||
padding-left: calc(50% - 17em);
|
||||
padding-right: calc(50% - 17em);
|
||||
}
|
||||
|
||||
@media (max-width: 36em) {
|
||||
#write {
|
||||
padding-left: 1em;
|
||||
padding-right: 1em;
|
||||
}
|
||||
}*/
|
||||
|
||||
#write {
|
||||
max-width: 40em;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 1400px) {
|
||||
#write {
|
||||
max-width: 914px;
|
||||
}
|
||||
}
|
||||
|
||||
ol li {
|
||||
list-style-type: decimal;
|
||||
list-style-position: outside;
|
||||
}
|
||||
ul li {
|
||||
list-style-type: disc;
|
||||
list-style-position: outside;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
blockquote,
|
||||
q {
|
||||
quotes: none;
|
||||
}
|
||||
blockquote:before,
|
||||
blockquote:after,
|
||||
q:before,
|
||||
q:after {
|
||||
content: '';
|
||||
content: none;
|
||||
}
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
/* styles */
|
||||
|
||||
/* ====== */
|
||||
|
||||
/* headings */
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-weight: bold;
|
||||
}
|
||||
h1 {
|
||||
font-size: 1.875em;
|
||||
/*30 / 16*/
|
||||
line-height: 1.6em;
|
||||
/* 48 / 30*/
|
||||
margin-top: 2em;
|
||||
}
|
||||
h2,
|
||||
h3 {
|
||||
font-size: 1.3125em;
|
||||
/*21 / 16*/
|
||||
line-height: 1.15;
|
||||
/*24 / 21*/
|
||||
margin-top: 2.285714em;
|
||||
/*48 / 21*/
|
||||
margin-bottom: 1.15em;
|
||||
/*24 / 21*/
|
||||
}
|
||||
h3 {
|
||||
font-weight: normal;
|
||||
}
|
||||
h4 {
|
||||
font-size: 1.125em;
|
||||
/*18 / 16*/
|
||||
margin-top: 2.67em;
|
||||
/*48 / 18*/
|
||||
}
|
||||
h5,
|
||||
h6 {
|
||||
font-size: 1em;
|
||||
/*16*/
|
||||
}
|
||||
h1 {
|
||||
border-bottom: 1px solid;
|
||||
margin-bottom: 1.875em;
|
||||
padding-bottom: 0.8125em;
|
||||
}
|
||||
/* links */
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #065588;
|
||||
}
|
||||
a:hover,
|
||||
a:active {
|
||||
text-decoration: underline;
|
||||
}
|
||||
/* block spacing */
|
||||
|
||||
p,
|
||||
blockquote,
|
||||
.md-fences {
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
/* blockquote */
|
||||
|
||||
blockquote {
|
||||
font-style: italic;
|
||||
border-left: 5px solid;
|
||||
margin-left: 2em;
|
||||
padding-left: 1em;
|
||||
}
|
||||
/* lists */
|
||||
|
||||
ul,
|
||||
ol {
|
||||
margin: 0 0 1.5em 1.5em;
|
||||
}
|
||||
/* tables */
|
||||
.md-meta,.md-before, .md-after {
|
||||
color:#999;
|
||||
}
|
||||
|
||||
table {
|
||||
margin-bottom: 1.5em;
|
||||
/*24 / 16*/
|
||||
font-size: 1em;
|
||||
/* width: 100%; */
|
||||
}
|
||||
thead th,
|
||||
tfoot th {
|
||||
padding: .25em .25em .25em .4em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
th {
|
||||
text-align: left;
|
||||
}
|
||||
td {
|
||||
vertical-align: top;
|
||||
padding: .25em .25em .25em .4em;
|
||||
}
|
||||
|
||||
code,
|
||||
.md-fences {
|
||||
background-color: #dadada;
|
||||
}
|
||||
|
||||
code {
|
||||
padding-left: 2px;
|
||||
padding-right: 2px;
|
||||
}
|
||||
|
||||
.md-fences {
|
||||
margin-left: 2em;
|
||||
margin-bottom: 3em;
|
||||
padding-left: 1ch;
|
||||
padding-right: 1ch;
|
||||
}
|
||||
|
||||
pre,
|
||||
code,
|
||||
tt {
|
||||
font-size: .875em;
|
||||
line-height: 1.714285em;
|
||||
}
|
||||
/* some fixes */
|
||||
|
||||
h1 {
|
||||
line-height: 1.3em;
|
||||
font-weight: normal;
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
|
||||
p + ul,
|
||||
p + ol{
|
||||
margin-top: .5em;
|
||||
}
|
||||
|
||||
h3 + ul,
|
||||
h4 + ul,
|
||||
h5 + ul,
|
||||
h6 + ul,
|
||||
h3 + ol,
|
||||
h4 + ol,
|
||||
h5 + ol,
|
||||
h6 + ol {
|
||||
margin-top: .5em;
|
||||
}
|
||||
|
||||
li > ul,
|
||||
li > ol {
|
||||
margin-top: inherit;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
li ol>li {
|
||||
list-style-type: lower-alpha;
|
||||
}
|
||||
|
||||
li li ol>li{
|
||||
list-style-type: lower-roman;
|
||||
}
|
||||
|
||||
h2,
|
||||
h3 {
|
||||
margin-bottom: .75em;
|
||||
}
|
||||
hr {
|
||||
border-top: none;
|
||||
border-right: none;
|
||||
border-bottom: 1px solid;
|
||||
border-left: none;
|
||||
}
|
||||
h1 {
|
||||
border-color: #c5c5c5;
|
||||
}
|
||||
blockquote {
|
||||
border-color: #bababa;
|
||||
color: #656565;
|
||||
}
|
||||
|
||||
blockquote ul,
|
||||
blockquote ol {
|
||||
margin-left:0;
|
||||
}
|
||||
|
||||
.ty-table-edit {
|
||||
background-color: transparent;
|
||||
}
|
||||
thead {
|
||||
background-color: #dadada;
|
||||
}
|
||||
tr:nth-child(even) {
|
||||
background: #e8e7e7;
|
||||
}
|
||||
hr {
|
||||
border-color: #c5c5c5;
|
||||
}
|
||||
.task-list{
|
||||
padding-left: 1rem;
|
||||
}
|
||||
|
||||
.md-task-list-item {
|
||||
padding-left: 1.5rem;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.md-task-list-item > input:before {
|
||||
content: '\221A';
|
||||
display: inline-block;
|
||||
width: 1.25rem;
|
||||
height: 1.6rem;
|
||||
vertical-align: middle;
|
||||
text-align: center;
|
||||
color: #ddd;
|
||||
background-color: #F3F2EE;
|
||||
}
|
||||
|
||||
.md-task-list-item > input:checked:before,
|
||||
.md-task-list-item > input[checked]:before{
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
#write pre.md-meta-block {
|
||||
min-height: 1.875rem;
|
||||
color: #555;
|
||||
border: 0px;
|
||||
background: transparent;
|
||||
margin-top: -4px;
|
||||
margin-left: 1em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
.md-image>.md-meta {
|
||||
color: #9B5146;
|
||||
}
|
||||
|
||||
.md-image>.md-meta{
|
||||
font-family: Menlo, 'Ubuntu Mono', Consolas, 'Courier New', 'Microsoft Yahei', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', serif;
|
||||
}
|
||||
|
||||
|
||||
#write>h3.md-focus:before{
|
||||
left: -1.5rem;
|
||||
color:#999;
|
||||
border-color:#999;
|
||||
}
|
||||
#write>h4.md-focus:before{
|
||||
left: -1.5rem;
|
||||
top: .25rem;
|
||||
color:#999;
|
||||
border-color:#999;
|
||||
}
|
||||
#write>h5.md-focus:before{
|
||||
left: -1.5rem;
|
||||
top: .0.3125rem;
|
||||
color:#999;
|
||||
border-color:#999;
|
||||
}
|
||||
#write>h6.md-focus:before{
|
||||
left: -1.5rem;
|
||||
top: 0.3125rem;
|
||||
color:#999;
|
||||
border-color:#999;
|
||||
}
|
||||
|
||||
.md-toc:focus .md-toc-content{
|
||||
margin-top: 19px;
|
||||
}
|
||||
|
||||
.md-toc-content:empty:before{
|
||||
color: #065588;
|
||||
}
|
||||
.md-toc-item {
|
||||
color: #065588;
|
||||
}
|
||||
#write div.md-toc-tooltip {
|
||||
background-color: #f3f2ee;
|
||||
}
|
||||
|
||||
#typora-sidebar {
|
||||
background-color: #f3f2ee;
|
||||
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.375);
|
||||
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.375);
|
||||
}
|
||||
|
||||
.pin-outline #typora-sidebar {
|
||||
background: inherit;
|
||||
box-shadow: none;
|
||||
border-right: 1px dashed;
|
||||
}
|
||||
|
||||
.pin-outline #typora-sidebar:hover .outline-title-wrapper {
|
||||
border-left:1px dashed;
|
||||
}
|
||||
|
||||
.outline-item:hover {
|
||||
background-color: #dadada;
|
||||
border-left: 28px solid #dadada;
|
||||
border-right: 18px solid #dadada;
|
||||
}
|
||||
|
||||
.typora-node .outline-item:hover {
|
||||
border-right: 28px solid #dadada;
|
||||
}
|
||||
|
||||
.outline-expander:before {
|
||||
content: "\f0da";
|
||||
font-family: FontAwesome;
|
||||
font-size:14px;
|
||||
top: 1px;
|
||||
}
|
||||
|
||||
.outline-expander:hover:before,
|
||||
.outline-item-open>.outline-item>.outline-expander:before {
|
||||
content: "\f0d7";
|
||||
}
|
||||
|
||||
.modal-content {
|
||||
background-color: #f3f2ee;
|
||||
}
|
||||
|
||||
.auto-suggest-container ul li {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
/** UI for electron */
|
||||
|
||||
.megamenu-menu,
|
||||
#top-titlebar, #top-titlebar *,
|
||||
.megamenu-content {
|
||||
background: #f3f2ee;
|
||||
color: #1f0909;
|
||||
}
|
||||
|
||||
.megamenu-menu-header {
|
||||
border-bottom: 1px dashed #202B33;
|
||||
}
|
||||
|
||||
.megamenu-menu {
|
||||
box-shadow: none;
|
||||
border-right: 1px dashed;
|
||||
}
|
||||
|
||||
header, .context-menu, .megamenu-content, footer {
|
||||
font-family: "PT Serif", 'Times New Roman', Times, serif;
|
||||
color: #1f0909;
|
||||
}
|
||||
|
||||
#megamenu-back-btn {
|
||||
color: #1f0909;
|
||||
border-color: #1f0909;
|
||||
}
|
||||
|
||||
.megamenu-menu-header #megamenu-menu-header-title:before {
|
||||
color: #1f0909;
|
||||
}
|
||||
|
||||
.megamenu-menu-list li a:hover, .megamenu-menu-list li a.active {
|
||||
color: inherit;
|
||||
background-color: #e8e7df;
|
||||
}
|
||||
|
||||
.long-btn:hover {
|
||||
background-color: #e8e7df;
|
||||
}
|
||||
|
||||
#recent-file-panel tbody tr:nth-child(2n-1) {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
.megamenu-menu-panel tbody tr:hover td:nth-child(2) {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.megamenu-menu-panel .btn {
|
||||
background-color: #D2D1D1;
|
||||
}
|
||||
|
||||
.btn-default {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.typora-sourceview-on #toggle-sourceview-btn,
|
||||
.ty-show-word-count #footer-word-count {
|
||||
background: #c7c5c5;
|
||||
}
|
||||
|
||||
#typora-quick-open {
|
||||
background-color: inherit;
|
||||
}
|
||||
|
||||
.md-diagram-panel {
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.file-list-item-file-name {
|
||||
font-weight: initial;
|
||||
}
|
||||
|
||||
.file-list-item-summary {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.file-list-item {
|
||||
color: #777;
|
||||
}
|
||||
|
||||
.file-list-item.active {
|
||||
background-color: inherit;
|
||||
color: black;
|
||||
}
|
||||
|
||||
.ty-side-sort-btn.active {
|
||||
background-color: inherit;
|
||||
}
|
||||
|
||||
.file-list-item.active .file-list-item-file-name {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.file-list-item{
|
||||
opacity:1 !important;
|
||||
}
|
||||
|
||||
.file-library-node.active>.file-node-background{
|
||||
background-color: rgba(32, 43, 51, 0.63);
|
||||
background-color: var(--active-file-bg-color);
|
||||
}
|
||||
|
||||
.file-tree-node.active>.file-node-content{
|
||||
color: white;
|
||||
color: var(--active-file-text-color);
|
||||
}
|
||||
|
||||
.md-task-list-item>input {
|
||||
margin-left: -1.7em;
|
||||
margin-top: calc(1rem - 12px);
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
input {
|
||||
border: 1px solid #aaa;
|
||||
}
|
||||
|
||||
.megamenu-menu-header #megamenu-menu-header-title,
|
||||
.megamenu-menu-header:hover,
|
||||
.megamenu-menu-header:focus {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.dropdown-menu .divider {
|
||||
border-color: #e5e5e5;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/* https://github.com/typora/typora-issues/issues/2046 */
|
||||
.os-windows-7 strong,
|
||||
.os-windows-7 strong {
|
||||
font-weight: 760;
|
||||
}
|
||||
|
||||
.ty-preferences .btn-default {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.ty-preferences .window-header {
|
||||
border-bottom: 1px dashed #202B33;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
#sidebar-loading-template, #sidebar-loading-template.file-list-item {
|
||||
color: #777;
|
||||
}
|
||||
|
||||
.searchpanel-search-option-btn.active {
|
||||
background: #777;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.export-detail, .light .export-detail,
|
||||
.light .export-item.active,
|
||||
.light .export-items-list-control {
|
||||
background: #e0e0e0;
|
||||
border-radius: 2px;
|
||||
font-weight: 700;
|
||||
color: inherit
|
||||
}
|
BIN
old-themes/newsprint/pt-serif-v9-latin-700.woff
Normal file
BIN
old-themes/newsprint/pt-serif-v9-latin-700.woff
Normal file
Binary file not shown.
BIN
old-themes/newsprint/pt-serif-v9-latin-700italic.woff
Normal file
BIN
old-themes/newsprint/pt-serif-v9-latin-700italic.woff
Normal file
Binary file not shown.
BIN
old-themes/newsprint/pt-serif-v9-latin-italic.woff
Normal file
BIN
old-themes/newsprint/pt-serif-v9-latin-italic.woff
Normal file
Binary file not shown.
BIN
old-themes/newsprint/pt-serif-v9-latin-regular.woff
Normal file
BIN
old-themes/newsprint/pt-serif-v9-latin-regular.woff
Normal file
Binary file not shown.
1017
old-themes/night.css
Normal file
1017
old-themes/night.css
Normal file
File diff suppressed because it is too large
Load Diff
113
old-themes/night/codeblock.dark.css
Normal file
113
old-themes/night/codeblock.dark.css
Normal file
@@ -0,0 +1,113 @@
|
||||
@charset "UTF-8";
|
||||
/* CSS Document */
|
||||
|
||||
/** code highlight */
|
||||
|
||||
.cm-s-inner .cm-variable,
|
||||
.cm-s-inner .cm-operator,
|
||||
.cm-s-inner .cm-property {
|
||||
color: #b8bfc6;
|
||||
}
|
||||
|
||||
.cm-s-inner .cm-keyword {
|
||||
color: #C88FD0;
|
||||
}
|
||||
|
||||
.cm-s-inner .cm-tag {
|
||||
color: #7DF46A;
|
||||
}
|
||||
|
||||
.cm-s-inner .cm-attribute {
|
||||
color: #7575E4;
|
||||
}
|
||||
|
||||
.CodeMirror div.CodeMirror-cursor {
|
||||
border-left: 1px solid #b8bfc6;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.cm-s-inner .cm-string {
|
||||
color: #D26B6B;
|
||||
}
|
||||
|
||||
.cm-s-inner .cm-comment,
|
||||
.cm-s-inner.cm-comment {
|
||||
color: #DA924A;
|
||||
}
|
||||
|
||||
.cm-s-inner .cm-header,
|
||||
.cm-s-inner .cm-def,
|
||||
.cm-s-inner.cm-header,
|
||||
.cm-s-inner.cm-def {
|
||||
color: #8d8df0;
|
||||
}
|
||||
|
||||
.cm-s-inner .cm-quote,
|
||||
.cm-s-inner.cm-quote {
|
||||
color: #57ac57;
|
||||
}
|
||||
|
||||
.cm-s-inner .cm-hr {
|
||||
color: #d8d5d5;
|
||||
}
|
||||
|
||||
.cm-s-inner .cm-link {
|
||||
color: #d3d3ef;
|
||||
}
|
||||
|
||||
.cm-s-inner .cm-negative {
|
||||
color: #d95050;
|
||||
}
|
||||
|
||||
.cm-s-inner .cm-positive {
|
||||
color: #50e650;
|
||||
}
|
||||
|
||||
.cm-s-inner .cm-string-2 {
|
||||
color: #f50;
|
||||
}
|
||||
|
||||
.cm-s-inner .cm-meta,
|
||||
.cm-s-inner .cm-qualifier {
|
||||
color: #b7b3b3;
|
||||
}
|
||||
|
||||
.cm-s-inner .cm-builtin {
|
||||
color: #f3b3f8;
|
||||
}
|
||||
|
||||
.cm-s-inner .cm-bracket {
|
||||
color: #997;
|
||||
}
|
||||
|
||||
.cm-s-inner .cm-atom,
|
||||
.cm-s-inner.cm-atom {
|
||||
color: #84B6CB;
|
||||
}
|
||||
|
||||
.cm-s-inner .cm-number {
|
||||
color: #64AB8F;
|
||||
}
|
||||
|
||||
.cm-s-inner .cm-variable {
|
||||
color: #b8bfc6;
|
||||
}
|
||||
|
||||
.cm-s-inner .cm-variable-2 {
|
||||
color: #9FBAD5;
|
||||
}
|
||||
|
||||
.cm-s-inner .cm-variable-3 {
|
||||
color: #1cc685;
|
||||
}
|
||||
|
||||
.CodeMirror-selectedtext,
|
||||
.CodeMirror-selected {
|
||||
background: #4a89dc;
|
||||
color: #fff !important;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.CodeMirror-gutters {
|
||||
border-right: none;
|
||||
}
|
1
old-themes/night/credit.html
Normal file
1
old-themes/night/credit.html
Normal file
@@ -0,0 +1 @@
|
||||
<div>Icons made by <a href="http://www.freepik.com" title="Freepik">Freepik</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a></div>
|
BIN
old-themes/night/cursor.png
Normal file
BIN
old-themes/night/cursor.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 372 B |
BIN
old-themes/night/cursor@2x.png
Normal file
BIN
old-themes/night/cursor@2x.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 407 B |
465
old-themes/night/mermaid.dark.css
Normal file
465
old-themes/night/mermaid.dark.css
Normal file
@@ -0,0 +1,465 @@
|
||||
/* Flowchart variables */
|
||||
/* Sequence Diagram variables */
|
||||
/* Gantt chart variables */
|
||||
/* state colors */
|
||||
.label {
|
||||
|
||||
color: #333; }
|
||||
|
||||
.label text {
|
||||
fill: #333; }
|
||||
|
||||
.node rect,
|
||||
.node circle,
|
||||
.node ellipse,
|
||||
.node polygon {
|
||||
fill: #BDD5EA;
|
||||
stroke: #9370DB;
|
||||
stroke-width: 1px; }
|
||||
|
||||
.node .label {
|
||||
text-align: center; }
|
||||
|
||||
.node.clickable {
|
||||
cursor: pointer; }
|
||||
|
||||
.arrowheadPath {
|
||||
fill: lightgrey; }
|
||||
|
||||
.edgePath .path {
|
||||
stroke: lightgrey;
|
||||
stroke-width: 1.5px; }
|
||||
|
||||
.edgeLabel {
|
||||
background-color: #e8e8e8;
|
||||
text-align: center; }
|
||||
|
||||
.cluster rect {
|
||||
fill: #6D6D65;
|
||||
stroke: rgba(255, 255, 255, 0.25);
|
||||
stroke-width: 1px; }
|
||||
|
||||
.cluster text {
|
||||
fill: #F9FFFE; }
|
||||
|
||||
div.mermaidTooltip {
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
max-width: 200px;
|
||||
padding: 2px;
|
||||
|
||||
font-size: 12px;
|
||||
background: #6D6D65;
|
||||
border: 1px solid rgba(255, 255, 255, 0.25);
|
||||
border-radius: 2px;
|
||||
pointer-events: none;
|
||||
z-index: 100; }
|
||||
|
||||
.actor {
|
||||
stroke: #81B1DB;
|
||||
fill: #BDD5EA; }
|
||||
|
||||
text.actor {
|
||||
fill: black;
|
||||
stroke: none; }
|
||||
|
||||
.actor-line {
|
||||
stroke: lightgrey; }
|
||||
|
||||
.messageLine0 {
|
||||
stroke-width: 1.5;
|
||||
stroke-dasharray: '2 2';
|
||||
stroke: lightgrey; }
|
||||
|
||||
.messageLine1 {
|
||||
stroke-width: 1.5;
|
||||
stroke-dasharray: '2 2';
|
||||
stroke: lightgrey; }
|
||||
|
||||
#arrowhead {
|
||||
fill: lightgrey; }
|
||||
|
||||
.sequenceNumber {
|
||||
fill: white; }
|
||||
|
||||
#sequencenumber {
|
||||
fill: lightgrey; }
|
||||
|
||||
#crosshead path {
|
||||
fill: lightgrey !important;
|
||||
stroke: lightgrey !important; }
|
||||
|
||||
.messageText {
|
||||
fill: lightgrey;
|
||||
stroke: none; }
|
||||
|
||||
.labelBox {
|
||||
stroke: #81B1DB;
|
||||
fill: #BDD5EA; }
|
||||
|
||||
.labelText {
|
||||
fill: #323D47;
|
||||
stroke: none; }
|
||||
|
||||
.loopText {
|
||||
fill: lightgrey;
|
||||
stroke: none; }
|
||||
|
||||
.loopLine {
|
||||
stroke-width: 2;
|
||||
stroke-dasharray: '2 2';
|
||||
stroke: #81B1DB; }
|
||||
|
||||
.note {
|
||||
stroke: rgba(255, 255, 255, 0.25);
|
||||
fill: #fff5ad; }
|
||||
|
||||
.noteText {
|
||||
fill: black;
|
||||
stroke: none;
|
||||
|
||||
font-size: 14px; }
|
||||
|
||||
.activation0 {
|
||||
fill: #f4f4f4;
|
||||
stroke: #666; }
|
||||
|
||||
.activation1 {
|
||||
fill: #f4f4f4;
|
||||
stroke: #666; }
|
||||
|
||||
.activation2 {
|
||||
fill: #f4f4f4;
|
||||
stroke: #666; }
|
||||
|
||||
/** Section styling */
|
||||
.section {
|
||||
stroke: none;
|
||||
opacity: 0.2; }
|
||||
|
||||
.section0 {
|
||||
fill: rgba(255, 255, 255, 0.3); }
|
||||
|
||||
.section2 {
|
||||
fill: #EAE8B9; }
|
||||
|
||||
.section1,
|
||||
.section3 {
|
||||
fill: white;
|
||||
opacity: 0.2; }
|
||||
|
||||
.sectionTitle0 {
|
||||
fill: #F9FFFE; }
|
||||
|
||||
.sectionTitle1 {
|
||||
fill: #F9FFFE; }
|
||||
|
||||
.sectionTitle2 {
|
||||
fill: #F9FFFE; }
|
||||
|
||||
.sectionTitle3 {
|
||||
fill: #F9FFFE; }
|
||||
|
||||
.sectionTitle {
|
||||
text-anchor: start;
|
||||
font-size: 11px;
|
||||
text-height: 14px;
|
||||
}
|
||||
|
||||
/* Grid and axis */
|
||||
.grid .tick {
|
||||
stroke: lightgrey;
|
||||
opacity: 0.3;
|
||||
shape-rendering: crispEdges; }
|
||||
|
||||
.grid path {
|
||||
stroke-width: 0; }
|
||||
|
||||
/* Today line */
|
||||
.today {
|
||||
fill: none;
|
||||
stroke: #DB5757;
|
||||
stroke-width: 2px; }
|
||||
|
||||
/* Task styling */
|
||||
/* Default task */
|
||||
.task {
|
||||
stroke-width: 2; }
|
||||
|
||||
.taskText {
|
||||
text-anchor: middle;
|
||||
}
|
||||
|
||||
.taskText:not([font-size]) {
|
||||
font-size: 11px; }
|
||||
|
||||
.taskTextOutsideRight {
|
||||
fill: #323D47;
|
||||
text-anchor: start;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.taskTextOutsideLeft {
|
||||
fill: #323D47;
|
||||
text-anchor: end;
|
||||
font-size: 11px; }
|
||||
|
||||
/* Special case clickable */
|
||||
.task.clickable {
|
||||
cursor: pointer; }
|
||||
|
||||
.taskText.clickable {
|
||||
cursor: pointer;
|
||||
fill: #003163 !important;
|
||||
font-weight: bold; }
|
||||
|
||||
.taskTextOutsideLeft.clickable {
|
||||
cursor: pointer;
|
||||
fill: #003163 !important;
|
||||
font-weight: bold; }
|
||||
|
||||
.taskTextOutsideRight.clickable {
|
||||
cursor: pointer;
|
||||
fill: #003163 !important;
|
||||
font-weight: bold; }
|
||||
|
||||
/* Specific task settings for the sections*/
|
||||
.taskText0,
|
||||
.taskText1,
|
||||
.taskText2,
|
||||
.taskText3 {
|
||||
fill: #323D47; }
|
||||
|
||||
.task0,
|
||||
.task1,
|
||||
.task2,
|
||||
.task3 {
|
||||
fill: #BDD5EA;
|
||||
stroke: rgba(255, 255, 255, 0.5); }
|
||||
|
||||
.taskTextOutside0,
|
||||
.taskTextOutside2 {
|
||||
fill: lightgrey; }
|
||||
|
||||
.taskTextOutside1,
|
||||
.taskTextOutside3 {
|
||||
fill: lightgrey; }
|
||||
|
||||
/* Active task */
|
||||
.active0,
|
||||
.active1,
|
||||
.active2,
|
||||
.active3 {
|
||||
fill: #81B1DB;
|
||||
stroke: rgba(255, 255, 255, 0.5); }
|
||||
|
||||
.activeText0,
|
||||
.activeText1,
|
||||
.activeText2,
|
||||
.activeText3 {
|
||||
fill: #323D47 !important; }
|
||||
|
||||
/* Completed task */
|
||||
.done0,
|
||||
.done1,
|
||||
.done2,
|
||||
.done3 {
|
||||
stroke: grey;
|
||||
fill: lightgrey;
|
||||
stroke-width: 2; }
|
||||
|
||||
.doneText0,
|
||||
.doneText1,
|
||||
.doneText2,
|
||||
.doneText3 {
|
||||
fill: #323D47 !important; }
|
||||
|
||||
/* Tasks on the critical line */
|
||||
.crit0,
|
||||
.crit1,
|
||||
.crit2,
|
||||
.crit3 {
|
||||
stroke: #E83737;
|
||||
fill: #E83737;
|
||||
stroke-width: 2; }
|
||||
|
||||
.activeCrit0,
|
||||
.activeCrit1,
|
||||
.activeCrit2,
|
||||
.activeCrit3 {
|
||||
stroke: #E83737;
|
||||
fill: #81B1DB;
|
||||
stroke-width: 2; }
|
||||
|
||||
.doneCrit0,
|
||||
.doneCrit1,
|
||||
.doneCrit2,
|
||||
.doneCrit3 {
|
||||
stroke: #E83737;
|
||||
fill: lightgrey;
|
||||
stroke-width: 2;
|
||||
cursor: pointer;
|
||||
shape-rendering: crispEdges; }
|
||||
|
||||
.milestone {
|
||||
transform: rotate(45deg) scale(0.8, 0.8); }
|
||||
|
||||
.milestoneText {
|
||||
font-style: italic; }
|
||||
|
||||
.doneCritText0,
|
||||
.doneCritText1,
|
||||
.doneCritText2,
|
||||
.doneCritText3 {
|
||||
fill: #323D47 !important; }
|
||||
|
||||
.activeCritText0,
|
||||
.activeCritText1,
|
||||
.activeCritText2,
|
||||
.activeCritText3 {
|
||||
fill: #323D47 !important; }
|
||||
|
||||
.titleText {
|
||||
text-anchor: middle;
|
||||
font-size: 18px;
|
||||
fill: #323D47;
|
||||
}
|
||||
|
||||
g.classGroup text {
|
||||
fill: #9370DB;
|
||||
stroke: none;
|
||||
|
||||
font-size: 10px; }
|
||||
g.classGroup text .title {
|
||||
font-weight: bolder; }
|
||||
|
||||
g.classGroup rect {
|
||||
fill: #BDD5EA;
|
||||
stroke: #9370DB; }
|
||||
|
||||
g.classGroup line {
|
||||
stroke: #9370DB;
|
||||
stroke-width: 1; }
|
||||
|
||||
.classLabel .box {
|
||||
stroke: none;
|
||||
stroke-width: 0;
|
||||
fill: #BDD5EA;
|
||||
opacity: 0.5; }
|
||||
|
||||
.classLabel .label {
|
||||
fill: #9370DB;
|
||||
font-size: 10px; }
|
||||
|
||||
.relation {
|
||||
stroke: #9370DB;
|
||||
stroke-width: 1;
|
||||
fill: none; }
|
||||
|
||||
#compositionStart {
|
||||
fill: #9370DB;
|
||||
stroke: #9370DB;
|
||||
stroke-width: 1; }
|
||||
|
||||
#compositionEnd {
|
||||
fill: #9370DB;
|
||||
stroke: #9370DB;
|
||||
stroke-width: 1; }
|
||||
|
||||
#aggregationStart {
|
||||
fill: #BDD5EA;
|
||||
stroke: #9370DB;
|
||||
stroke-width: 1; }
|
||||
|
||||
#aggregationEnd {
|
||||
fill: #BDD5EA;
|
||||
stroke: #9370DB;
|
||||
stroke-width: 1; }
|
||||
|
||||
#dependencyStart {
|
||||
fill: #9370DB;
|
||||
stroke: #9370DB;
|
||||
stroke-width: 1; }
|
||||
|
||||
#dependencyEnd {
|
||||
fill: #9370DB;
|
||||
stroke: #9370DB;
|
||||
stroke-width: 1; }
|
||||
|
||||
#extensionStart {
|
||||
fill: #9370DB;
|
||||
stroke: #9370DB;
|
||||
stroke-width: 1; }
|
||||
|
||||
#extensionEnd {
|
||||
fill: #9370DB;
|
||||
stroke: #9370DB;
|
||||
stroke-width: 1; }
|
||||
|
||||
.commit-id,
|
||||
.commit-msg,
|
||||
.branch-label {
|
||||
fill: lightgrey;
|
||||
color: lightgrey;
|
||||
}
|
||||
|
||||
.pieTitleText {
|
||||
text-anchor: middle;
|
||||
font-size: 25px;
|
||||
fill: #eee;
|
||||
}
|
||||
|
||||
.slice {
|
||||
}
|
||||
|
||||
g.stateGroup text {
|
||||
fill: #eee;
|
||||
stroke: none;
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
g.stateGroup circle {
|
||||
fill: white !important;
|
||||
stroke: white !important;
|
||||
}
|
||||
|
||||
g.stateGroup .state-title {
|
||||
font-weight: bolder;
|
||||
fill: black; }
|
||||
|
||||
g.stateGroup rect {
|
||||
fill: #ececff;
|
||||
stroke: #9370DB; }
|
||||
|
||||
g.stateGroup line {
|
||||
stroke: #9370DB;
|
||||
stroke-width: 1; }
|
||||
|
||||
.transition {
|
||||
stroke: #9370DB;
|
||||
stroke-width: 1;
|
||||
fill: none; }
|
||||
|
||||
.stateGroup .composit {
|
||||
fill: #555;
|
||||
border-bottom: 1px; }
|
||||
|
||||
.state-note {
|
||||
stroke: rgba(255, 255, 255, 0.25);
|
||||
fill: #fff5ad; }
|
||||
.state-note text {
|
||||
fill: black;
|
||||
stroke: none;
|
||||
font-size: 10px; }
|
||||
|
||||
.stateLabel .box {
|
||||
stroke: none;
|
||||
stroke-width: 0;
|
||||
fill: #BDD5EA;
|
||||
opacity: 0.5; }
|
||||
|
||||
.stateLabel text {
|
||||
fill: black;
|
||||
font-size: 10px;
|
||||
font-weight: bold;
|
||||
}
|
38
old-themes/night/sourcemode.dark.css
Normal file
38
old-themes/night/sourcemode.dark.css
Normal file
@@ -0,0 +1,38 @@
|
||||
@charset "UTF-8";
|
||||
/* CSS Document */
|
||||
|
||||
/** markdown source **/
|
||||
.cm-s-typora-default .cm-header,
|
||||
.cm-s-typora-default .cm-property
|
||||
{
|
||||
color: #cebcca;
|
||||
}
|
||||
|
||||
.CodeMirror.cm-s-typora-default div.CodeMirror-cursor{
|
||||
border-left: 3px solid #b8bfc6;
|
||||
}
|
||||
|
||||
.cm-s-typora-default .cm-comment {
|
||||
color: #9FB1FF;
|
||||
}
|
||||
|
||||
.cm-s-typora-default .cm-string {
|
||||
color: #A7A7D9
|
||||
}
|
||||
|
||||
.cm-s-typora-default .cm-atom, .cm-s-typora-default .cm-number {
|
||||
color: #848695;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.cm-s-typora-default .cm-link {
|
||||
color: #95B94B;
|
||||
}
|
||||
|
||||
.cm-s-typora-default .CodeMirror-activeline-background {
|
||||
background: rgba(51, 51, 51, 0.72);
|
||||
}
|
||||
|
||||
.cm-s-typora-default .cm-comment, .cm-s-typora-default .cm-code {
|
||||
color: #8aa1e1;
|
||||
}
|
520
old-themes/pixyll.css
Normal file
520
old-themes/pixyll.css
Normal file
@@ -0,0 +1,520 @@
|
||||
@include-when-export url(https://fonts.loli.net/css?family=Merriweather:900,900italic,300,300italic&subset=latin-ext);
|
||||
@include-when-export url(https://fonts.loli.net/css?family=Lato:900,300&subset=latin-ext);
|
||||
|
||||
:root {
|
||||
--control-text-color: #777;
|
||||
}
|
||||
|
||||
/**
|
||||
* forked from pixyll.com
|
||||
* MIT license
|
||||
*/
|
||||
|
||||
@font-face {
|
||||
font-family: 'Merriweather';
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
src: local('Merriweather Light'), local('Merriweather-Light'), url('./pixyll/merriweather-v19-latin-300.woff') format('woff');
|
||||
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;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Merriweather';
|
||||
font-style: normal;
|
||||
font-weight: bold;
|
||||
src: local('Merriweather Heavy'), local('Merriweather-Heavy'), url('./pixyll/merriweather-v19-latin-700.woff') format('woff');
|
||||
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;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Merriweather';
|
||||
font-style: italic;
|
||||
font-weight: normal;
|
||||
src: local('Merriweather Light Italic'), local('Merriweather-LightItalic'), url('./pixyll/merriweather-v19-latin-300italic.woff') format('woff');
|
||||
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;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Merriweather';
|
||||
font-style: italic;
|
||||
font-weight: bold;
|
||||
src: local('Merriweather Heavy Italic'), local('Merriweather-HeavyItalic'), url('./pixyll/merriweather-v19-latin-700italic.woff') format('woff');
|
||||
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;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Lato';
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
src: local('Lato Light'), local('Lato-Light'), url('./pixyll/lato-v14-latin-300.woff') format('woff');
|
||||
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;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Lato';
|
||||
font-style: normal;
|
||||
font-weight: bold;
|
||||
src: local('Lato Black'), local('Lato-Blcak'), url('./pixyll/lato-v14-latin-900.woff') format('woff');
|
||||
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;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Lato';
|
||||
font-style: italic;
|
||||
font-weight: normal;
|
||||
src: local('Lato LightItalic'), local('Lato-LightItalic'), url('./pixyll/lato-v14-latin-300italic.woff') format('woff');
|
||||
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;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Lato';
|
||||
font-style: italic;
|
||||
font-weight: bold;
|
||||
src: local('Lato BlackItalic'), local('Lato-BlackItalic'), url('./pixyll/lato-v14-latin-900italic.woff') format('woff');
|
||||
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;
|
||||
}
|
||||
|
||||
h1,
|
||||
.h1,
|
||||
.f1 {
|
||||
font-size: 2rem;
|
||||
line-height: 2.5rem;
|
||||
}
|
||||
h2,
|
||||
.h2,
|
||||
.f2 {
|
||||
font-size: 1.5rem;
|
||||
line-height: 2rem;
|
||||
}
|
||||
h3,
|
||||
.h3,
|
||||
.f3 {
|
||||
font-size: 1.25rem;
|
||||
line-height: 1.5rem;
|
||||
}
|
||||
p,
|
||||
.p,
|
||||
.f4,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
dl,
|
||||
ol,
|
||||
ul,
|
||||
pre[cid],
|
||||
div[cid],
|
||||
#typora-source {
|
||||
font-size: 1.125rem;
|
||||
line-height: 1.5rem;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 1.13rem;
|
||||
}
|
||||
/*
|
||||
Pixyll
|
||||
A simple, beautiful theme for Jekyll that emphasizes content rather than aesthetic fluff.
|
||||
Best served with BASSCSS (http://jxnblk.github.io/basscss)
|
||||
Crafted with <3 by John Otander (@4lpine) - ©2015 John Otander MIT License http://opensource.org/licenses/MIT
|
||||
|
||||
*/
|
||||
|
||||
body {
|
||||
font-family: "Merriweather", "PT Serif", Georgia, "Times New Roman", "STSong", 'Segoe UI Emoji', Serif;
|
||||
line-height: 1.5rem;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
#write {
|
||||
max-width: 914px;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 1400px) {
|
||||
#write {
|
||||
max-width: 1100px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 1700px) {
|
||||
#write {
|
||||
max-width: 1200px;
|
||||
}
|
||||
}
|
||||
|
||||
img {
|
||||
width: auto;
|
||||
max-width: 100%;
|
||||
}
|
||||
body {
|
||||
font-size: 1.5rem;
|
||||
box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
-webkit-box-sizing: border-box;
|
||||
}
|
||||
|
||||
.ty-table-edit {
|
||||
background: #ededed;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
font-size: 1.125rem;
|
||||
}
|
||||
table > thead > tr > th,
|
||||
table > thead > tr > td,
|
||||
table > tbody > tr > th,
|
||||
table > tbody > tr > td,
|
||||
table > tfoot > tr > th,
|
||||
table > tfoot > tr > td {
|
||||
padding: 12px;
|
||||
line-height: 1.2;
|
||||
vertical-align: top;
|
||||
border-top: 1px solid #333;
|
||||
}
|
||||
table > thead > tr > th {
|
||||
vertical-align: bottom;
|
||||
border-bottom: 2px solid #333;
|
||||
}
|
||||
table > caption + thead > tr:first-child > th,
|
||||
table > caption + thead > tr:first-child > td,
|
||||
table > colgroup + thead > tr:first-child > th,
|
||||
table > colgroup + thead > tr:first-child > td,
|
||||
table > thead:first-child > tr:first-child > th,
|
||||
table > thead:first-child > tr:first-child > td {
|
||||
border-top: 0;
|
||||
}
|
||||
table > tbody + tbody {
|
||||
border-top: 2px solid #333;
|
||||
}
|
||||
p {
|
||||
font-weight: 300;
|
||||
line-height: 1.5;
|
||||
}
|
||||
abbr {
|
||||
border-bottom: 1px black dotted;
|
||||
cursor: help;
|
||||
}
|
||||
pre,
|
||||
code {
|
||||
font-family: Menlo, Monaco, "Courier New", monospace;
|
||||
}
|
||||
|
||||
code,
|
||||
.md-fences {
|
||||
color: #7a7a7a;
|
||||
}
|
||||
|
||||
.md-fences {
|
||||
padding: 1.125em;
|
||||
margin-bottom: 0.88em;
|
||||
font-size: 1rem;
|
||||
border: 1px solid #7a7a7a;
|
||||
padding-bottom: 0.5rem;
|
||||
padding-top: 0.5rem;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
padding: 1.33em;
|
||||
font-style: italic;
|
||||
border-left: 5px solid #7a7a7a;
|
||||
color: #555;
|
||||
}
|
||||
blockquote em {
|
||||
color: #000;
|
||||
}
|
||||
blockquote footer {
|
||||
font-size: .85rem;
|
||||
font-style: normal;
|
||||
background-color: #fff;
|
||||
color: #7a7a7a;
|
||||
border-color: transparent;
|
||||
}
|
||||
h1,
|
||||
.h1,
|
||||
h2,
|
||||
.h2,
|
||||
h3,
|
||||
.h3,
|
||||
h4,
|
||||
.h4,
|
||||
h5,
|
||||
.h5,
|
||||
h6,
|
||||
.h6 {
|
||||
font-family: "Lato", 'Helvetica Neue', Helvetica, sans-serif;
|
||||
font-weight: bold;
|
||||
line-height: 1.2;
|
||||
margin: 1em 0 0.5em;
|
||||
}
|
||||
@media screen and (min-width: 48em) {
|
||||
.h1,
|
||||
h1 {
|
||||
font-size: 3.250rem;
|
||||
}
|
||||
.h2,
|
||||
h2 {
|
||||
font-size: 2.298rem;
|
||||
}
|
||||
.h3,
|
||||
h3 {
|
||||
font-size: 1.625rem;
|
||||
}
|
||||
.h4,
|
||||
h4 {
|
||||
font-size: 1.3rem;
|
||||
}
|
||||
#write>h4.md-focus:before,
|
||||
#write>h5.md-focus:before,
|
||||
#write>h6.md-focus:before{
|
||||
top: 1px;
|
||||
}
|
||||
.p,
|
||||
p,
|
||||
li {
|
||||
font-size: 1.25rem;
|
||||
line-height: 1.8;
|
||||
}
|
||||
table {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
}
|
||||
@media (max-width: 48em) {
|
||||
blockquote {
|
||||
margin-left: 1rem;
|
||||
margin-right: 0;
|
||||
padding: 0.5em;
|
||||
}
|
||||
.h1,
|
||||
h1 {
|
||||
font-size: 2.827rem;
|
||||
}
|
||||
.h2,
|
||||
h2 {
|
||||
font-size: 1.999rem;
|
||||
}
|
||||
.h3,
|
||||
h3 {
|
||||
font-size: 1.413rem;
|
||||
}
|
||||
.h4,
|
||||
h4 {
|
||||
font-size: 1.3rem;
|
||||
}
|
||||
}
|
||||
@media screen and (min-width: 64em) {
|
||||
.h1,
|
||||
h1 {
|
||||
font-size: 4.498rem;
|
||||
}
|
||||
.h2,
|
||||
h2 {
|
||||
font-size: 2.29rem;
|
||||
}
|
||||
.h3,
|
||||
h3 {
|
||||
font-size: 1.9rem;
|
||||
}
|
||||
.h4,
|
||||
h4 {
|
||||
font-size: 1.591rem;
|
||||
}
|
||||
#write>h4.md-focus:before{
|
||||
top:4px;
|
||||
}
|
||||
}
|
||||
a {
|
||||
color: #463F5C;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#write {
|
||||
padding-top: 2rem;
|
||||
}
|
||||
|
||||
#write pre.md-meta-block {
|
||||
min-height: 35px;
|
||||
padding: 0.5em 1em;
|
||||
white-space: pre;
|
||||
border: 0px;
|
||||
|
||||
border-left: 30px #f8f8f8 solid;
|
||||
border-right: 30px #f8f8f8 solid;
|
||||
width: 100vw;
|
||||
max-width: calc(100% + 60px);
|
||||
|
||||
margin-left: -30px;
|
||||
margin-bottom: 2em;
|
||||
margin-top: -2010px;
|
||||
padding-top: 2000px;
|
||||
padding-bottom: 10px;
|
||||
line-height: 1.5em;
|
||||
color: #7a7a7a;
|
||||
background-color: #fafafa;
|
||||
font-family: 'Lato', 'Helvetica Neue', Helvetica, sans-serif;
|
||||
font-weight: 300;
|
||||
clear: both;
|
||||
padding-left: 0;
|
||||
font-size:1.125rem;
|
||||
}
|
||||
.md-image>.md-meta {
|
||||
color: #463F5C
|
||||
}
|
||||
.footnotes {
|
||||
font-size:1.1rem;
|
||||
}
|
||||
.md-tag {
|
||||
font-family: 'Lato', 'Helvetica Neue', Helvetica, sans-serif;
|
||||
}
|
||||
.code-tooltip {
|
||||
background: white;
|
||||
}
|
||||
.code-tooltip-content {
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.task-list{
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.md-task-list-item {
|
||||
padding-left:34px;
|
||||
}
|
||||
|
||||
.md-task-list-item > input{
|
||||
width: 1.25rem;
|
||||
height: 1.25rem;
|
||||
display: block;
|
||||
-webkit-appearance: initial;
|
||||
top: -0.2rem;
|
||||
margin-left: -1.6em;
|
||||
margin-top: calc(1rem - 7px);
|
||||
border: none;
|
||||
}
|
||||
|
||||
.md-task-list-item > input:focus{
|
||||
outline: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.md-task-list-item > input:before{
|
||||
border: 1px solid #555;
|
||||
border-radius: 1.5rem;
|
||||
width: 1.5rem;
|
||||
height: 1.5rem;
|
||||
background: #fff;
|
||||
content: ' ';
|
||||
transition: background-color 200ms ease-in-out;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.md-task-list-item > input:checked:before,
|
||||
.md-task-list-item > input[checked]:before{
|
||||
background: #333;
|
||||
border-width: 2px;
|
||||
display:inline-block;
|
||||
transition: background-color 200ms ease-in-out;
|
||||
}
|
||||
|
||||
.md-task-list-item > input:checked:after,
|
||||
.md-task-list-item > input[checked]:after {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.md-task-list-item > input:after {
|
||||
opacity: 1;
|
||||
-webkit-transition: opacity 0.05s ease-in-out;
|
||||
-moz-transition: opacity 0.05s ease-in-out;
|
||||
transition: opacity 0.05s ease-in-out;
|
||||
-webkit-transform: rotate(-45deg);
|
||||
-moz-transform: rotate(-45deg);
|
||||
transform: rotate(-45deg);
|
||||
position: absolute;
|
||||
top: 0.4375rem;
|
||||
left: 0.28125rem;
|
||||
width: 0.9375rem;
|
||||
height: 0.5rem;
|
||||
border: 3px solid #fff;
|
||||
border-top: 0;
|
||||
border-right: 0;
|
||||
content: ' ';
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.md-tag {
|
||||
color:inherit;
|
||||
}
|
||||
|
||||
.md-toc:focus .md-toc-content{
|
||||
margin-top: 19px;
|
||||
}
|
||||
|
||||
#typora-sidebar {
|
||||
font-size:1rem !important;
|
||||
}
|
||||
|
||||
.html-for-mac #typora-sidebar {
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
.outline-content li, .outline-content ul {
|
||||
font-size:1rem !important;
|
||||
}
|
||||
|
||||
.outline-title {
|
||||
line-height: inherit;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.outline-expander {
|
||||
width: 18px;
|
||||
}
|
||||
|
||||
.outline-expander:before {
|
||||
content: "+";
|
||||
font-family: inherit;
|
||||
color: rgb(108, 108, 108);
|
||||
font-size: 1.5rem;
|
||||
top: -0.1rem;
|
||||
}
|
||||
|
||||
.outline-expander:hover:before {
|
||||
content: "+";
|
||||
}
|
||||
|
||||
.outline-item-open>.outline-item>.outline-expander:before{
|
||||
content: "-";
|
||||
}
|
||||
|
||||
/** source code mode */
|
||||
#typora-source {
|
||||
font-family: Courier, monospace;
|
||||
color: #6A6A6A;
|
||||
}
|
||||
|
||||
.os-windows #typora-source {
|
||||
font-family: inherit;
|
||||
}
|
||||
|
||||
.cm-s-typora-default .cm-header,
|
||||
.cm-s-typora-default .cm-property,
|
||||
.CodeMirror.cm-s-typora-default div.CodeMirror-cursor {
|
||||
color: #428bca;
|
||||
}
|
||||
|
||||
.cm-s-typora-default .cm-atom, .cm-s-typora-default .cm-number {
|
||||
color: #777777;
|
||||
}
|
||||
|
||||
.md-diagram-panel {
|
||||
margin-top: 24px;
|
||||
margin-left: -1.2em;
|
||||
}
|
||||
|
||||
.md-mathjax-midline {
|
||||
background: #fafafa;
|
||||
}
|
||||
|
||||
.enable-diagrams pre.md-fences[lang="sequence"] .code-tooltip,
|
||||
.enable-diagrams pre.md-fences[lang="flow"] .code-tooltip,
|
||||
.enable-diagrams pre.md-fences[lang="mermaid"] .code-tooltip {
|
||||
bottom: -3.4em;
|
||||
}
|
||||
|
||||
.dropdown-menu .divider {
|
||||
border-color: #e5e5e5;
|
||||
}
|
BIN
old-themes/pixyll/lato-v14-latin-300.woff
Normal file
BIN
old-themes/pixyll/lato-v14-latin-300.woff
Normal file
Binary file not shown.
BIN
old-themes/pixyll/lato-v14-latin-300italic.woff
Normal file
BIN
old-themes/pixyll/lato-v14-latin-300italic.woff
Normal file
Binary file not shown.
BIN
old-themes/pixyll/lato-v14-latin-900.woff
Normal file
BIN
old-themes/pixyll/lato-v14-latin-900.woff
Normal file
Binary file not shown.
BIN
old-themes/pixyll/lato-v14-latin-900italic.woff
Normal file
BIN
old-themes/pixyll/lato-v14-latin-900italic.woff
Normal file
Binary file not shown.
BIN
old-themes/pixyll/merriweather-v19-latin-300.woff
Normal file
BIN
old-themes/pixyll/merriweather-v19-latin-300.woff
Normal file
Binary file not shown.
BIN
old-themes/pixyll/merriweather-v19-latin-300italic.woff
Normal file
BIN
old-themes/pixyll/merriweather-v19-latin-300italic.woff
Normal file
Binary file not shown.
BIN
old-themes/pixyll/merriweather-v19-latin-700.woff
Normal file
BIN
old-themes/pixyll/merriweather-v19-latin-700.woff
Normal file
Binary file not shown.
BIN
old-themes/pixyll/merriweather-v19-latin-700italic.woff
Normal file
BIN
old-themes/pixyll/merriweather-v19-latin-700italic.woff
Normal file
Binary file not shown.
292
old-themes/whitey.css
Normal file
292
old-themes/whitey.css
Normal file
@@ -0,0 +1,292 @@
|
||||
html {
|
||||
font-size: 19px;
|
||||
}
|
||||
|
||||
html, body {
|
||||
margin: auto;
|
||||
background: #fefefe;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
body {
|
||||
font-family: "Vollkorn", Palatino, Times;
|
||||
color: #333;
|
||||
line-height: 1.4;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
#write {
|
||||
max-width: 960px;
|
||||
margin: 0 auto;
|
||||
margin-bottom: 2em;
|
||||
line-height: 1.53;
|
||||
padding-top: 40px;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 1400px) {
|
||||
#write {
|
||||
max-width: 1100px;
|
||||
}
|
||||
}
|
||||
|
||||
@media print {
|
||||
html {
|
||||
font-size: 13px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Typography
|
||||
-------------------------------------------------------- */
|
||||
|
||||
#write>h1:first-child,
|
||||
h1 {
|
||||
margin-top: 1.6em;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size:3em;
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin-top:2em;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
margin-top: 3em;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h2:after{
|
||||
border-bottom: 1px solid #2f2f2f;
|
||||
content: '';
|
||||
width: 100px;
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
height: 1px;
|
||||
}
|
||||
|
||||
h1+h2, h2+h3 {
|
||||
margin-top: 0.83em;
|
||||
}
|
||||
|
||||
p,
|
||||
.mathjax-block {
|
||||
margin-top: 0;
|
||||
-webkit-hypens: auto;
|
||||
-moz-hypens: auto;
|
||||
hyphens: auto;
|
||||
}
|
||||
ul {
|
||||
list-style: square;
|
||||
padding-left: 1.2em;
|
||||
}
|
||||
ol {
|
||||
padding-left: 1.2em;
|
||||
}
|
||||
blockquote {
|
||||
margin-left: 1em;
|
||||
padding-left: 1em;
|
||||
border-left: 1px solid #ddd;
|
||||
}
|
||||
code,
|
||||
pre {
|
||||
font-family: "Consolas", "Menlo", "Monaco", monospace, serif;
|
||||
font-size: .9em;
|
||||
background: white;
|
||||
}
|
||||
.md-fences{
|
||||
margin-left: 1em;
|
||||
padding-left: 1em;
|
||||
border: 1px solid #ddd;
|
||||
padding-bottom: 8px;
|
||||
padding-top: 6px;
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #2484c1;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
a img {
|
||||
border: none;
|
||||
}
|
||||
h1 a,
|
||||
h1 a:hover {
|
||||
color: #333;
|
||||
text-decoration: none;
|
||||
}
|
||||
hr {
|
||||
color: #ddd;
|
||||
height: 1px;
|
||||
margin: 2em 0;
|
||||
border-top: solid 1px #ddd;
|
||||
border-bottom: none;
|
||||
border-left: 0;
|
||||
border-right: 0;
|
||||
}
|
||||
.ty-table-edit {
|
||||
background: #ededed;
|
||||
padding-top: 4px;
|
||||
}
|
||||
table {
|
||||
margin-bottom: 1.333333rem
|
||||
}
|
||||
table th,
|
||||
table td {
|
||||
padding: 8px;
|
||||
line-height: 1.333333rem;
|
||||
vertical-align: top;
|
||||
border-top: 1px solid #ddd
|
||||
}
|
||||
table th {
|
||||
font-weight: bold
|
||||
}
|
||||
table thead th {
|
||||
vertical-align: bottom
|
||||
}
|
||||
table caption+thead tr:first-child th,
|
||||
table caption+thead tr:first-child td,
|
||||
table colgroup+thead tr:first-child th,
|
||||
table colgroup+thead tr:first-child td,
|
||||
table thead:first-child tr:first-child th,
|
||||
table thead:first-child tr:first-child td {
|
||||
border-top: 0
|
||||
}
|
||||
table tbody+tbody {
|
||||
border-top: 2px solid #ddd
|
||||
}
|
||||
|
||||
.task-list{
|
||||
padding:0;
|
||||
}
|
||||
|
||||
.md-task-list-item {
|
||||
padding-left: 1.6rem;
|
||||
}
|
||||
|
||||
.md-task-list-item > input:before {
|
||||
content: '\221A';
|
||||
display: inline-block;
|
||||
width: 1.33333333rem;
|
||||
height: 1.6rem;
|
||||
vertical-align: middle;
|
||||
text-align: center;
|
||||
color: #ddd;
|
||||
background-color: #fefefe;
|
||||
}
|
||||
|
||||
.md-task-list-item > input:checked:before,
|
||||
.md-task-list-item > input[checked]:before{
|
||||
color: inherit;
|
||||
}
|
||||
.md-tag {
|
||||
color: inherit;
|
||||
font: inherit;
|
||||
}
|
||||
#write pre.md-meta-block {
|
||||
min-height: 35px;
|
||||
padding: 0.5em 1em;
|
||||
}
|
||||
#write pre.md-meta-block {
|
||||
white-space: pre;
|
||||
background: #f8f8f8;
|
||||
border: 0px;
|
||||
color: #999;
|
||||
|
||||
width: 100vw;
|
||||
max-width: calc(100% + 60px);
|
||||
margin-left: -30px;
|
||||
border-left: 30px #f8f8f8 solid;
|
||||
border-right: 30px #f8f8f8 solid;
|
||||
|
||||
margin-bottom: 2em;
|
||||
margin-top: -1.3333333333333rem;
|
||||
padding-top: 26px;
|
||||
padding-bottom: 10px;
|
||||
line-height: 1.8em;
|
||||
font-size: 0.9em;
|
||||
font-size: 0.76em;
|
||||
padding-left: 0;
|
||||
}
|
||||
.md-img-error.md-image>.md-meta{
|
||||
vertical-align: bottom;
|
||||
}
|
||||
#write>h5.md-focus:before {
|
||||
top: 2px;
|
||||
}
|
||||
|
||||
.md-toc {
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.md-toc-content {
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
|
||||
.outline-expander:before {
|
||||
color: inherit;
|
||||
font-size: 14px;
|
||||
top: auto;
|
||||
content: "\f0da";
|
||||
font-family: FontAwesome;
|
||||
}
|
||||
|
||||
.outline-expander:hover:before,
|
||||
.outline-item-open>.outline-item>.outline-expander:before {
|
||||
content: "\f0d7";
|
||||
}
|
||||
|
||||
/** source code mode */
|
||||
#typora-source {
|
||||
font-family: Courier, monospace;
|
||||
color: #6A6A6A;
|
||||
}
|
||||
|
||||
.html-for-mac #typora-sidebar {
|
||||
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
|
||||
box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
|
||||
}
|
||||
|
||||
.cm-s-typora-default .cm-header,
|
||||
.cm-s-typora-default .cm-property,
|
||||
.CodeMirror.cm-s-typora-default div.CodeMirror-cursor {
|
||||
color: #428bca;
|
||||
}
|
||||
|
||||
.cm-s-typora-default .cm-atom, .cm-s-typora-default .cm-number {
|
||||
color: #777777;
|
||||
}
|
||||
|
||||
.typora-node .file-list-item-parent-loc,
|
||||
.typora-node .file-list-item-time,
|
||||
.typora-node .file-list-item-summary {
|
||||
font-family: arial, sans-serif;
|
||||
}
|
||||
|
||||
.md-task-list-item>input {
|
||||
margin-left: -1.3em;
|
||||
margin-top: calc(1rem - 12px);
|
||||
}
|
||||
|
||||
.md-mathjax-midline {
|
||||
background: #fafafa;
|
||||
}
|
||||
|
||||
.md-fences .code-tooltip {
|
||||
bottom: -2em !important;
|
||||
}
|
||||
|
||||
.dropdown-menu .divider {
|
||||
border-color: #e5e5e5;
|
||||
}
|
Reference in New Issue
Block a user