-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[+] optimized TOC display [+] add docker support
- Loading branch information
Showing
23 changed files
with
2,420 additions
and
1,253 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM nginx:alpine | ||
WORKDIR /usr/share/nginx/html | ||
COPY . . | ||
RUN echo "server { listen 8866; location / { root /usr/share/nginx/html; index index.html; } }" > /etc/nginx/conf.d/default.conf | ||
EXPOSE 8866 | ||
CMD ["nginx", "-g", "daemon off;"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,121 +1,121 @@ | ||
@charset "UTF-8"; | ||
body { | ||
margin-top:0%; | ||
margin-bottom:4.5em; | ||
margin-left:0%; | ||
margin-right:0%; | ||
margin-top: 0%; | ||
margin-bottom: 4.5em; | ||
margin-left: 0%; | ||
margin-right: 0%; | ||
} | ||
img { | ||
max-width:100%; | ||
max-height:100%; | ||
margin:auto; | ||
overflow:auto; | ||
max-width: 100%; | ||
max-height: 100%; | ||
margin: auto; | ||
overflow: auto; | ||
} | ||
p { | ||
font-family:var(--fontFamily_body); | ||
font-size:var(--p_fontSize); | ||
color:var(--fontColor); | ||
text-align:justify; | ||
text-indent:2em; | ||
line-height:var(--p_lineHeight); | ||
margin:1em; | ||
font-family: var(--fontFamily_body); | ||
font-size: var(--p_fontSize); | ||
color: var(--fontColor); | ||
text-align: justify; | ||
text-indent: 2em; | ||
line-height: var(--p_lineHeight); | ||
margin: 1em; | ||
} | ||
p.first { | ||
text-indent:0em!important; | ||
text-indent: 0em !important; | ||
} | ||
.cover { | ||
width:100%; | ||
width: 100%; | ||
} | ||
.center { | ||
text-align:center; | ||
margin-left:0%; | ||
margin-right:0%; | ||
text-align: center; | ||
margin-left: 0%; | ||
margin-right: 0%; | ||
} | ||
.left { | ||
text-align:left; | ||
margin-left:0%; | ||
margin-right:0%; | ||
text-align: left; | ||
margin-left: 0%; | ||
margin-right: 0%; | ||
} | ||
.right { | ||
text-align:right; | ||
margin-left:0%; | ||
margin-right:0%; | ||
text-align: right; | ||
margin-left: 0%; | ||
margin-right: 0%; | ||
} | ||
.quote { | ||
margin-top:0%; | ||
margin-bottom:0%; | ||
margin-left:1em; | ||
margin-right:1em; | ||
text-align:justify; | ||
font-family:var(--fontFamily_body); | ||
color:var(--fontColor); | ||
margin-top: 0%; | ||
margin-bottom: 0%; | ||
margin-left: 1em; | ||
margin-right: 1em; | ||
text-align: justify; | ||
font-family: var(--fontFamily_body); | ||
color: var(--fontColor); | ||
} | ||
.stickupCap { | ||
font-size:4em; | ||
font-weight:bold; | ||
font-size: 4em; | ||
font-weight: bold; | ||
margin: 7px 6px 6px -1px; | ||
padding:3px; | ||
text-indent:0em !important; | ||
padding: 3px; | ||
text-indent: 0em !important; | ||
} | ||
.dropCap { | ||
font-size:4em; | ||
font-weight:bold; | ||
float:left !important; | ||
font-size: 4em; | ||
font-weight: bold; | ||
float: left !important; | ||
margin: 7px 6px 6px -1px; | ||
padding:3px; | ||
text-indent:0em !important; | ||
padding: 3px; | ||
text-indent: 0em !important; | ||
} | ||
h1 { | ||
line-height:var(--h1_lineHeight); | ||
text-align:center; | ||
font-weight:bold; | ||
font-size:xxx-large; | ||
font-family:var(--fontFamily_title); | ||
color:var(--mainColor_active); | ||
margin:var(--h1_margin) 0 var(--h1_margin) 0; | ||
line-height: var(--h1_lineHeight); | ||
text-align: center; | ||
font-weight: bold; | ||
font-size: xxx-large; | ||
font-family: var(--fontFamily_title); | ||
color: var(--mainColor_active); | ||
margin: var(--h1_margin) 0 var(--h1_margin) 0; | ||
} | ||
h2 { | ||
line-height:var(--h2_lineHeight); | ||
text-align:center; | ||
font-weight:bold; | ||
font-size:xx-large; | ||
font-family:var(--fontFamily_title); | ||
color:var(--mainColor_active); | ||
margin:var(--h2_margin) 0 var(--h2_margin) 0; | ||
line-height: var(--h2_lineHeight); | ||
text-align: center; | ||
font-weight: bold; | ||
font-size: xx-large; | ||
font-family: var(--fontFamily_title); | ||
color: var(--mainColor_active); | ||
margin: var(--h2_margin) 0 var(--h2_margin) 0; | ||
} | ||
h3 { | ||
line-height:var(--h3_lineHeight); | ||
text-align:center; | ||
font-weight:bold; | ||
font-size:x-large; | ||
font-family:var(--fontFamily_title); | ||
color:var(--mainColor_active); | ||
margin:var(--h3_margin) 0 var(--h3_margin) 0; | ||
line-height: var(--h3_lineHeight); | ||
text-align: center; | ||
font-weight: bold; | ||
font-size: x-large; | ||
font-family: var(--fontFamily_title); | ||
color: var(--mainColor_active); | ||
margin: var(--h3_margin) 0 var(--h3_margin) 0; | ||
} | ||
h4 { | ||
line-height:var(--h4_lineHeight); | ||
text-align:center; | ||
font-weight:bold; | ||
font-size:large; | ||
font-family:var(--fontFamily_title); | ||
color:var(--mainColor_active); | ||
margin:var(--h4_margin) 0 var(--h4_margin) 0; | ||
line-height: var(--h4_lineHeight); | ||
text-align: center; | ||
font-weight: bold; | ||
font-size: large; | ||
font-family: var(--fontFamily_title); | ||
color: var(--mainColor_active); | ||
margin: var(--h4_margin) 0 var(--h4_margin) 0; | ||
} | ||
h5 { | ||
line-height:var(--h5_lineHeight); | ||
text-align:center; | ||
font-weight:bold; | ||
font-size:medium; | ||
font-family:var(--fontFamily_title); | ||
color:var(--mainColor_active); | ||
margin:var(--h5_margin) 0 var(--h5_margin) 0; | ||
line-height: var(--h5_lineHeight); | ||
text-align: center; | ||
font-weight: bold; | ||
font-size: medium; | ||
font-family: var(--fontFamily_title); | ||
color: var(--mainColor_active); | ||
margin: var(--h5_margin) 0 var(--h5_margin) 0; | ||
} | ||
h6 { | ||
line-height:var(--h6_lineHeight); | ||
text-align:center; | ||
font-weight:bold; | ||
font-size:small; | ||
font-family:var(--fontFamily_title); | ||
color:var(--mainColor_active); | ||
margin:var(--h6_margin) 0 var(--h6_margin) 0; | ||
line-height: var(--h6_lineHeight); | ||
text-align: center; | ||
font-weight: bold; | ||
font-size: small; | ||
font-family: var(--fontFamily_title); | ||
color: var(--mainColor_active); | ||
margin: var(--h6_margin) 0 var(--h6_margin) 0; | ||
} |
Oops, something went wrong.