Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/IvanChou/hugo-theme-vec.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIChou <me@ichou.cn>2018-06-17 21:14:24 +0300
committerIChou <me@ichou.cn>2018-06-17 21:14:24 +0300
commit2d886473436c2c90dc7dd658a9e795143c3f244b (patch)
treea6f7515593362f248b741f649a3db29f4a0868a1
parent086484cef81a392e96334a9f4b75853ea3c705f2 (diff)
fix postion for anchor tag
-rw-r--r--images/tn2.pngbin143376 -> 0 bytes
-rw-r--r--layouts/_default/single.html2
-rw-r--r--layouts/index.html12
-rw-r--r--layouts/partials/footer.html2
-rw-r--r--layouts/partials/header.html2
-rw-r--r--src/vec.scss135
-rw-r--r--static/css/vec.css424
-rw-r--r--static/css/vec.css.map4
8 files changed, 528 insertions, 53 deletions
diff --git a/images/tn2.png b/images/tn2.png
deleted file mode 100644
index 49c9d60..0000000
--- a/images/tn2.png
+++ /dev/null
Binary files differ
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index eeaf346..2ec3fec 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -9,7 +9,7 @@
<body>
{{ partial "header.html" . }}
- <div class="content">
+ <div class="content {{ if .Params.toc }}toc{{ else }}wide{{ end }}">
{{ if .Params.toc }}{{ .TableOfContents }}{{ end }}
<section class="post">
diff --git a/layouts/index.html b/layouts/index.html
index 5b2ec46..5eba00c 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -10,7 +10,7 @@
</head>
-<body>
+<body class="index">
{{ partial "header.html" . }}
<section class="user-profile">
@@ -18,19 +18,19 @@
<img alt="avater" src="{{ .Site.Params.Avater }}">
<figcaption class="user-socials">
{{ with .Site.Params.TwitterID }}
- <a href="https://twitter.com/{{.}}" title="Twitter"><i class="fa fa-twitter-square" aria-hidden="true"></i></a>
+ <a href="https://twitter.com/{{.}}" title="Twitter"><i class="fab fa-twitter-square" aria-hidden="true"></i></a>
{{ end }}
{{ with .Site.Params.GoogleplusID }}
- <a href="https://plus.google.com/{{.}}/about" title="Google+"><i class="fa fa-google-plus-square" aria-hidden="true"></i></a>
+ <a href="https://plus.google.com/{{.}}/about" title="Google+"><i class="fab fa-google-plus-square" aria-hidden="true"></i></a>
{{ end }}
{{ with .Site.Params.FacebookID }}
- <a href="https://facebook.com/{{.}}" title="Facebook"><i class="fa fa-facebook-square" aria-hidden="true"></i></a>
+ <a href="https://facebook.com/{{.}}" title="Facebook"><i class="fab fa-facebook-square" aria-hidden="true"></i></a>
{{ end }}
{{ with .Site.Params.GithubID }}
- <a href="https://github.com/{{.}}" title="GitHub"><i class="fa fa-github-square" aria-hidden="true"></i></a>
+ <a href="https://github.com/{{.}}" title="GitHub"><i class="fab fa-github-square" aria-hidden="true"></i></a>
{{ end }}
{{ with .Site.Params.LinkedInID }}
- <a href="http://linkedin.com/in/{{.}}" title="LinkedIn"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
+ <a href="http://linkedin.com/in/{{.}}" title="LinkedIn"><i class="fab fa-linkedin-square" aria-hidden="true"></i></a>
{{ end }}
</figcaption>
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 160661e..468680f 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -1,7 +1,7 @@
<footer>
<div class="footer-info">
<p>
- <a href="mailto:{{ .Site.Params.Email }}?subject="><i class="fa fa-envelope-o"></i> {{ .Site.Params.Email }} </a>
+ <a href="mailto:{{ .Site.Params.Email }}?subject="><i class="far fa-envelope"></i> {{ .Site.Params.Email }} </a>
{
<a href="https://gohugo.io/" title="Hugo :: A fast and modern static website engine">Hugo {{ .Hugo.Version }}</a>,
<a href="https://github.com/IvanChou/yii.im" title="vec">Vec</a>
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 2d79b28..e2d70ec 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -13,7 +13,7 @@
</li>
{{end}}
- <li class="pull-right"><a href="{{ .RSSLink }}"><i class="fa fa-rss"></i></a></li>
+ <li class="pull-right"><a href="{{ .RSSLink }}"><i class="fas fa-rss"></i></a></li>
</ul>
</nav>
</header> \ No newline at end of file
diff --git a/src/vec.scss b/src/vec.scss
index 6380580..8f5cbb3 100644
--- a/src/vec.scss
+++ b/src/vec.scss
@@ -1,5 +1,5 @@
@import url(//fonts.googleapis.com/css?family=Droid+Sans+Mono|Russo+One|Source+Sans+Pro:400,700);
-@import url(//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css);
+@import url(//use.fontawesome.com/releases/v5.0.7/css/all.css);
@import "github-gist.scss";
@@ -66,7 +66,7 @@ img,video {
@mixin awesome-fa {
display: inline-block;
- font: normal normal normal 14px/1 FontAwesome;
+ font: normal normal 900 14px/1 "Font Awesome 5 Free";
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
@@ -137,9 +137,14 @@ footer {
/* ============== Index ============== */
+.index {
+ display: flex;
+ align-items: center;
+}
+
.user-profile {
width: 100%;
- padding: 4rem 1rem 8rem;
+ padding: 4rem 1rem 12rem;
font-family: $font-title;
color: #888;
text-align: center;
@@ -197,10 +202,23 @@ footer {
ol {
margin-left: 12rem;
+ list-style-type: none;
+ counter-reset: li;
li {
margin-bottom: .5rem;
- list-style: decimal;
+ list-style: none;
+ counter-increment: li;
+
+ &::before {
+ content: counter(li) ".";
+ color: #005580;
+ display: inline-block;
+ width: 1em;
+ margin-left: -1.5em;
+ margin-right: 0.5em;
+ text-align: right;
+ }
}
}
}
@@ -208,10 +226,28 @@ footer {
/* ============== Page ============== */
+.content {
+ &.wide {
+ max-width: 52rem;
+ }
+
+ &.toc {
+ max-width: 50rem;
+ }
+}
+
.post {
color: #444;
line-height: 1.8;
width: 100%;
+
+ h1,h2,h3,h4,h5,h6 {
+ padding: 2.5rem 0 1rem;
+ -webkit-margin-before: 0;
+ -webkit-margin-after: 0;
+ -webkit-margin-start: 0;
+ -webkit-margin-end: 0;
+ }
hr {
height: 0.25rem;
@@ -276,7 +312,7 @@ footer {
border-radius: .25rem;
padding: 1rem;
background-color: #f7f7f7;
- margin: 5rem 0 0 35rem;
+ margin: 5rem 0 0 45rem;
position: absolute;
font-size: .875rem;
@@ -284,20 +320,30 @@ footer {
list-style: none;
margin: 0;
padding: 0;
- }
-
- a {
- display: inline-block;
- white-space: nowrap;
- overflow: hidden;
- max-width: 14rem;
- text-overflow: ellipsis;
-
- &:before {
- content: '•';
- padding-right: .25rem;
+
+ li {
+ a {
+ display: inline-block;
+ white-space: nowrap;
+ overflow: hidden;
+ max-width: 14rem;
+ text-overflow: ellipsis;
+
+ &:before {
+ content: '├';
+ padding-right: .25rem;
+ }
+ }
+
+ &:last-of-type > a {
+ &:before {
+ content: '└';
+ padding-right: .25rem;
+ }
+ }
}
}
+
a + ul {
padding-left: 1.5rem;
@@ -396,33 +442,15 @@ footer {
}
-
/* ============== media ============== */
-@media (max-width: 480px) {
- .content {
- margin: 0 auto;
- padding: 4rem 1rem 8rem;
- }
-
- .user-profile .user-avatar img {
- width: 8rem;
- height: 8rem
- }
-
- .user-profile .user-motivation {
- font-size: 2.625rem;
- line-height: 3.125rem
+@media (max-width: 1200px) {
+ .content.toc {
+ max-width: 40rem;
}
- .pagination {
- a {
- font-size: .75rem;
- }
-
- .previous:before, .next:after {
- margin-top: -.35rem;
- }
+ #TableOfContents {
+ margin: 5rem 0 0 35rem;
}
}
@@ -438,7 +466,6 @@ footer {
margin-left: 0rem;
}
}
-
}
@media (max-width: 700px) {
@@ -459,3 +486,29 @@ footer {
}
}
+@media (max-width: 480px) {
+ .content {
+ margin: 0 auto;
+ padding: 4rem 1rem 8rem;
+ }
+
+ .user-profile .user-avatar img {
+ width: 8rem;
+ height: 8rem
+ }
+
+ .user-profile .user-motivation {
+ font-size: 2.625rem;
+ line-height: 3.125rem
+ }
+
+ .pagination {
+ a {
+ font-size: .75rem;
+ }
+
+ .previous:before, .next:after {
+ margin-top: -.35rem;
+ }
+ }
+}
diff --git a/static/css/vec.css b/static/css/vec.css
index e9a4bbf..5dc09f9 100644
--- a/static/css/vec.css
+++ b/static/css/vec.css
@@ -1,2 +1,424 @@
-@import url(//fonts.googleapis.com/css?family=Droid+Sans+Mono|Russo+One|Source+Sans+Pro:400,700);@import url(//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css);.hljs{display:block;background:white;padding:0.5em;color:#333333;overflow-x:auto}.hljs-comment,.hljs-meta{color:#969896}.hljs-string,.hljs-variable,.hljs-template-variable,.hljs-strong,.hljs-emphasis,.hljs-quote{color:#df5000}.hljs-keyword,.hljs-selector-tag,.hljs-type{color:#a71d5d}.hljs-literal,.hljs-symbol,.hljs-bullet,.hljs-attribute{color:#0086b3}.hljs-section,.hljs-name{color:#63a35c}.hljs-tag{color:#333333}.hljs-title,.hljs-attr,.hljs-selector-id,.hljs-selector-class,.hljs-selector-attr,.hljs-selector-pseudo{color:#795da3}.hljs-addition{color:#55a532;background-color:#eaffea}.hljs-deletion{color:#bd2c00;background-color:#ffecec}.hljs-link{text-decoration:underline}html{height:100%}body{margin:0;padding:0;min-height:100%;font-family:"Source Sans Pro","PingFang SC","Microsoft YaHei",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:100%;letter-spacing:.01rem;position:relative}h1,h2,h3,h4,h5,h6{font-family:"Russo One","Arial Black","Hiragino Sans GB","Microsoft YaHei",sans-serif;font-weight:700;line-height:1.25}a{color:#005580;text-decoration:none}a:hover{color:#08c}img,video{max-width:100%}.pull-left{float:left}.pull-right{float:right}.clearfix::before,.clearfix::after{display:table;content:"";line-height:0}.clearfix::after{clear:both}.content{margin:0 auto;padding:6rem 1.85rem 8rem;max-width:40rem}header{position:fixed;top:0;width:100%;height:1.75rem;font-family:"Droid Sans Mono",Consolas,"Liberation Mono",Menlo,Courier,monospace;font-size:.875rem;font-weight:bold;background:#2d2d2d;border-bottom:1px solid #000;z-index:99}header ul,header ol{margin:0;padding:0;list-style:none}header nav{padding:0 0.5rem}header .nav-center{text-align:center;line-height:1.75rem;color:#000;text-transform:uppercase;text-shadow:rgba(255,255,255,0.098) 0 1px 0,rgba(255,255,255,0.12) 0 0 1.875rem}header a{color:#bbb;line-height:1.75rem;padding:0 0.5rem}header a:hover,header .current a{color:#fff}footer{position:absolute;width:100%;padding:1rem;bottom:0;box-sizing:border-box;color:#ccc}footer a{color:#ccc}footer .footer-info{border-top:.4rem double #f2f2f2;padding-top:0.25rem}.user-profile{width:100%;padding:4rem 1rem 8rem;font-family:"Russo One","Arial Black","Hiragino Sans GB","Microsoft YaHei",sans-serif;color:#888;text-align:center;box-sizing:border-box}.user-profile .user-avatar{margin:1rem 0}.user-profile .user-avatar img{width:16rem;height:16rem}.user-profile .user-socials a{color:#a7a7a7;font-size:1.25rem;line-height:1.5rem;text-decoration:none}.user-profile .user-socials a:hover{color:#777}.user-profile .user-motivation{max-width:56rem;font-size:4rem;line-height:4.125rem;margin:1rem auto}.posts{margin-left:-6rem}.posts .posts-archive{margin-bottom:3rem}.posts .posts-archive time{display:block;width:10rem;float:left;font-family:"Russo One","Arial Black","Hiragino Sans GB","Microsoft YaHei",sans-serif;font-size:1.75rem;text-align:right;color:#CCCCCC;font-weight:bold;white-space:nowrap;line-height:1.25rem;padding:.125rem 0}.posts .posts-archive ol{margin-left:12rem}.posts .posts-archive ol li{margin-bottom:.5rem;list-style:decimal}.post{color:#444;line-height:1.8;width:100%}.post hr{height:0.25rem;padding:0;margin:1.5rem 0;background-color:#e7e7e7;border:0}.post em{text-emphasis-style:circle;text-emphasis-position:under}.post code{font-family:"Droid Sans Mono",Consolas,"Liberation Mono",Menlo,Courier,monospace;font-size:0.85rem;color:#555;background-color:#f5f5f5;border:1px solid #eef;border-radius:3px;padding:0.2rem 0.5rem}.post pre{display:block;margin:0 0 1rem 0;padding:1rem;font-size:0.8rem;line-height:1.4;white-space:pre;white-space:pre-wrap;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5}.post pre code{font-size:0.7rem;padding:0;color:inherit;border:none}.post blockquote{padding:0.5rem 1rem;margin:0.8rem 0;color:#7a7a7a;border-left:0.3rem solid #e5e5e5}.post blockquote p:first-child{margin-top:0}.post blockquote p:last-child{margin-bottom:0}#TableOfContents{border-radius:.25rem;padding:1rem;background-color:#f7f7f7;margin:5rem 0 0 35rem;position:absolute;font-size:.875rem}#TableOfContents ul{list-style:none;margin:0;padding:0}#TableOfContents a{display:inline-block;white-space:nowrap;overflow:hidden;max-width:14rem;text-overflow:ellipsis}#TableOfContents a:before{content:'•';padding-right:.25rem}#TableOfContents a+ul{padding-left:1.5rem}#TableOfContents ~ section{margin-left:-6rem}.pagination{width:100%;margin:4rem 0 0;padding:1.6rem 0;border-top:1px solid #e7e7e7}.pagination a{width:42%;overflow:hidden;position:relative}.pagination .previous{float:left;padding-left:1.25rem}.pagination .previous:before{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;top:50%;margin-top:-.5rem;left:0;content:"\f053"}.pagination .next{float:right;text-align:right;padding-right:1.25rem}.pagination .next:after{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;position:absolute;top:50%;margin-top:-.5rem;right:0;content:"\f054"}.disqus{width:100%;padding:5rem 0 2rem;border-top:1px solid #e7e7e7}.formspree input,.formspree textarea{font-size:0.8rem;border:1px solid #ddd;background:#fff;padding:0.5rem 2%;margin:1.2rem 1rem 1.2rem 0;line-height:1.5rem;width:96%;border:1px solid #ddd;border-radius:3px;display:block}.formspree input{max-width:25rem}.formspree button{float:right;color:#999;font-weight:bold;border-radius:3px;border:1px solid #d5d5d5;background:#fff;font-size:.8rem;padding:.5rem 1.2rem}.formspree button:hover{background:#f5f5f5}@media (max-width: 480px){.content{margin:0 auto;padding:4rem 1rem 8rem}.user-profile .user-avatar img{width:8rem;height:8rem}.user-profile .user-motivation{font-size:2.625rem;line-height:3.125rem}.pagination a{font-size:.75rem}.pagination .previous:before,.pagination .next:after{margin-top:-.35rem}}@media (max-width: 920px){.posts{margin-left:0rem}#TableOfContents{display:none}#TableOfContents ~ section{margin-left:0rem}}@media (max-width: 700px){.posts{margin-left:0rem}.posts .posts-archive time{float:none;text-align:left;margin-bottom:1rem}.posts .posts-archive ol{margin-left:0}}
+@charset "UTF-8";
+@import url(//fonts.googleapis.com/css?family=Droid+Sans+Mono|Russo+One|Source+Sans+Pro:400,700);
+@import url(//use.fontawesome.com/releases/v5.0.7/css/all.css);
+/**
+ * GitHub Gist Theme
+ * Author : Louis Barranqueiro - https://github.com/LouisBarranqueiro
+ */
+.hljs {
+ display: block;
+ background: white;
+ padding: 0.5em;
+ color: #333333;
+ overflow-x: auto; }
+
+.hljs-comment,
+.hljs-meta {
+ color: #969896; }
+
+.hljs-string,
+.hljs-variable,
+.hljs-template-variable,
+.hljs-strong,
+.hljs-emphasis,
+.hljs-quote {
+ color: #df5000; }
+
+.hljs-keyword,
+.hljs-selector-tag,
+.hljs-type {
+ color: #a71d5d; }
+
+.hljs-literal,
+.hljs-symbol,
+.hljs-bullet,
+.hljs-attribute {
+ color: #0086b3; }
+
+.hljs-section,
+.hljs-name {
+ color: #63a35c; }
+
+.hljs-tag {
+ color: #333333; }
+
+.hljs-title,
+.hljs-attr,
+.hljs-selector-id,
+.hljs-selector-class,
+.hljs-selector-attr,
+.hljs-selector-pseudo {
+ color: #795da3; }
+
+.hljs-addition {
+ color: #55a532;
+ background-color: #eaffea; }
+
+.hljs-deletion {
+ color: #bd2c00;
+ background-color: #ffecec; }
+
+.hljs-link {
+ text-decoration: underline; }
+
+html {
+ height: 100%; }
+
+body {
+ margin: 0;
+ padding: 0;
+ min-height: 100%;
+ font-family: "Source Sans Pro", "PingFang SC", "Microsoft YaHei", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
+ font-size: 100%;
+ letter-spacing: .01rem;
+ position: relative; }
+
+h1, h2, h3, h4, h5, h6 {
+ font-family: "Russo One", "Arial Black", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
+ font-weight: 700;
+ line-height: 1.25; }
+
+a {
+ color: #005580;
+ text-decoration: none; }
+ a:hover {
+ color: #08c; }
+
+img, video {
+ max-width: 100%; }
+
+.pull-left {
+ float: left; }
+
+.pull-right {
+ float: right; }
+
+.clearfix::before, .clearfix::after {
+ display: table;
+ content: "";
+ line-height: 0; }
+
+.clearfix::after {
+ clear: both; }
+
+.content {
+ margin: 0 auto;
+ padding: 6rem 1.85rem 8rem;
+ max-width: 40rem; }
+
+/* ============== Header ============== */
+header {
+ position: fixed;
+ top: 0;
+ width: 100%;
+ height: 1.75rem;
+ font-family: "Droid Sans Mono", Consolas, "Liberation Mono", Menlo, Courier, monospace;
+ font-size: .875rem;
+ font-weight: bold;
+ background: #2d2d2d;
+ border-bottom: 1px solid #000;
+ z-index: 99; }
+ header ul, header ol {
+ margin: 0;
+ padding: 0;
+ list-style: none; }
+ header nav {
+ padding: 0 0.5rem; }
+ header .nav-center {
+ text-align: center;
+ line-height: 1.75rem;
+ color: #000;
+ text-transform: uppercase;
+ text-shadow: rgba(255, 255, 255, 0.098) 0 1px 0, rgba(255, 255, 255, 0.12) 0 0 1.875rem; }
+ header a {
+ color: #bbb;
+ line-height: 1.75rem;
+ padding: 0 0.5rem; }
+ header a:hover, header .current a {
+ color: #fff; }
+
+/* ============== Footer ============== */
+footer {
+ position: absolute;
+ width: 100%;
+ padding: 1rem;
+ bottom: 0;
+ box-sizing: border-box;
+ color: #ccc; }
+ footer a {
+ color: #ccc; }
+ footer .footer-info {
+ border-top: .4rem double #f2f2f2;
+ padding-top: 0.25rem; }
+
+/* ============== Index ============== */
+.index {
+ display: flex;
+ align-items: center; }
+
+.user-profile {
+ width: 100%;
+ padding: 4rem 1rem 12rem;
+ font-family: "Russo One", "Arial Black", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
+ color: #888;
+ text-align: center;
+ box-sizing: border-box; }
+
+.user-profile .user-avatar {
+ margin: 1rem 0; }
+
+.user-profile .user-avatar img {
+ width: 16rem;
+ height: 16rem; }
+
+.user-profile .user-socials a {
+ color: #a7a7a7;
+ font-size: 1.25rem;
+ line-height: 1.5rem;
+ text-decoration: none; }
+
+.user-profile .user-socials a:hover {
+ color: #777; }
+
+.user-profile .user-motivation {
+ max-width: 56rem;
+ font-size: 4rem;
+ line-height: 4.125rem;
+ margin: 1rem auto; }
+
+/* ============== List ============== */
+.posts {
+ margin-left: -6rem; }
+ .posts .posts-archive {
+ margin-bottom: 3rem; }
+ .posts .posts-archive time {
+ display: block;
+ width: 10rem;
+ float: left;
+ font-family: "Russo One", "Arial Black", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
+ font-size: 1.75rem;
+ text-align: right;
+ color: #CCCCCC;
+ font-weight: bold;
+ white-space: nowrap;
+ line-height: 1.25rem;
+ padding: .125rem 0; }
+ .posts .posts-archive ol {
+ margin-left: 12rem;
+ list-style-type: none;
+ counter-reset: li; }
+ .posts .posts-archive ol li {
+ margin-bottom: .5rem;
+ list-style: none;
+ counter-increment: li; }
+ .posts .posts-archive ol li::before {
+ content: counter(li) ".";
+ color: #005580;
+ display: inline-block;
+ width: 1em;
+ margin-left: -1.5em;
+ margin-right: 0.5em;
+ text-align: right; }
+
+/* ============== Page ============== */
+.content.wide {
+ max-width: 52rem; }
+.content.toc {
+ max-width: 50rem; }
+
+.post {
+ color: #444;
+ line-height: 1.8;
+ width: 100%; }
+ .post h1, .post h2, .post h3, .post h4, .post h5, .post h6 {
+ padding: 2.5rem 0 1rem;
+ -webkit-margin-before: 0;
+ -webkit-margin-after: 0;
+ -webkit-margin-start: 0;
+ -webkit-margin-end: 0; }
+ .post hr {
+ height: 0.25rem;
+ padding: 0;
+ margin: 1.5rem 0;
+ background-color: #e7e7e7;
+ border: 0; }
+ .post em {
+ text-emphasis-style: circle;
+ text-emphasis-position: under; }
+ .post code {
+ font-family: "Droid Sans Mono", Consolas, "Liberation Mono", Menlo, Courier, monospace;
+ font-size: 0.85rem;
+ color: #555;
+ background-color: #f5f5f5;
+ border: 1px solid #eef;
+ border-radius: 3px;
+ padding: 0.2rem 0.5rem; }
+ .post pre {
+ display: block;
+ margin: 0 0 1rem 0;
+ padding: 1rem;
+ font-size: 0.8rem;
+ line-height: 1.4;
+ white-space: pre;
+ white-space: pre-wrap;
+ word-break: break-all;
+ word-wrap: break-word;
+ background-color: #f5f5f5; }
+ .post pre code {
+ font-size: 0.7rem;
+ padding: 0;
+ color: inherit;
+ border: none; }
+ .post blockquote {
+ padding: 0.5rem 1rem;
+ margin: 0.8rem 0;
+ color: #7a7a7a;
+ border-left: 0.3rem solid #e5e5e5; }
+ .post blockquote p:first-child {
+ margin-top: 0; }
+ .post blockquote p:last-child {
+ margin-bottom: 0; }
+
+#TableOfContents {
+ border-radius: .25rem;
+ padding: 1rem;
+ background-color: #f7f7f7;
+ margin: 5rem 0 0 45rem;
+ position: absolute;
+ font-size: .875rem; }
+ #TableOfContents ul {
+ list-style: none;
+ margin: 0;
+ padding: 0; }
+ #TableOfContents ul li a {
+ display: inline-block;
+ white-space: nowrap;
+ overflow: hidden;
+ max-width: 14rem;
+ text-overflow: ellipsis; }
+ #TableOfContents ul li a:before {
+ content: '├';
+ padding-right: .25rem; }
+ #TableOfContents ul li:last-of-type > a:before {
+ content: '└';
+ padding-right: .25rem; }
+ #TableOfContents a + ul {
+ padding-left: 1.5rem; }
+ #TableOfContents ~ section {
+ margin-left: -6rem; }
+
+.pagination {
+ width: 100%;
+ margin: 4rem 0 0;
+ padding: 1.6rem 0;
+ border-top: 1px solid #e7e7e7; }
+ .pagination a {
+ width: 42%;
+ overflow: hidden;
+ position: relative; }
+ .pagination .previous {
+ float: left;
+ padding-left: 1.25rem; }
+ .pagination .previous:before {
+ display: inline-block;
+ font: normal normal 900 14px/1 "Font Awesome 5 Free";
+ font-size: inherit;
+ text-rendering: auto;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ position: absolute;
+ top: 50%;
+ margin-top: -.5rem;
+ left: 0;
+ content: "\f053"; }
+ .pagination .next {
+ float: right;
+ text-align: right;
+ padding-right: 1.25rem; }
+ .pagination .next:after {
+ display: inline-block;
+ font: normal normal 900 14px/1 "Font Awesome 5 Free";
+ font-size: inherit;
+ text-rendering: auto;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ position: absolute;
+ top: 50%;
+ margin-top: -.5rem;
+ right: 0;
+ content: "\f054"; }
+
+.disqus {
+ width: 100%;
+ padding: 5rem 0 2rem;
+ border-top: 1px solid #e7e7e7; }
+
+/* ============== formspree ============== */
+.formspree input, .formspree textarea {
+ font-size: 0.8rem;
+ border: 1px solid #ddd;
+ background: #fff;
+ padding: 0.5rem 2%;
+ margin: 1.2rem 1rem 1.2rem 0;
+ line-height: 1.5rem;
+ width: 96%;
+ border: 1px solid #ddd;
+ border-radius: 3px;
+ display: block; }
+.formspree input {
+ max-width: 25rem; }
+.formspree button {
+ float: right;
+ color: #999;
+ font-weight: bold;
+ border-radius: 3px;
+ border: 1px solid #d5d5d5;
+ background: #fff;
+ font-size: .8rem;
+ padding: .5rem 1.2rem; }
+ .formspree button:hover {
+ background: #f5f5f5; }
+
+/* ============== media ============== */
+@media (max-width: 1200px) {
+ .content.toc {
+ max-width: 40rem; }
+
+ #TableOfContents {
+ margin: 5rem 0 0 35rem; } }
+@media (max-width: 920px) {
+ .posts {
+ margin-left: 0rem; }
+
+ #TableOfContents {
+ display: none; }
+ #TableOfContents ~ section {
+ margin-left: 0rem; } }
+@media (max-width: 700px) {
+ .posts {
+ margin-left: 0rem; }
+ .posts .posts-archive time {
+ float: none;
+ text-align: left;
+ margin-bottom: 1rem; }
+ .posts .posts-archive ol {
+ margin-left: 0; } }
+@media (max-width: 480px) {
+ .content {
+ margin: 0 auto;
+ padding: 4rem 1rem 8rem; }
+
+ .user-profile .user-avatar img {
+ width: 8rem;
+ height: 8rem; }
+
+ .user-profile .user-motivation {
+ font-size: 2.625rem;
+ line-height: 3.125rem; }
+
+ .pagination a {
+ font-size: .75rem; }
+ .pagination .previous:before, .pagination .next:after {
+ margin-top: -.35rem; } }
+
/*# sourceMappingURL=vec.css.map */
diff --git a/static/css/vec.css.map b/static/css/vec.css.map
index 939c819..d592d89 100644
--- a/static/css/vec.css.map
+++ b/static/css/vec.css.map
@@ -1,7 +1,7 @@
{
"version": 3,
-"mappings": "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",
+"mappings": "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",
"sources": ["../../src/vec.scss","../../src/github-gist.scss"],
"names": [],
"file": "vec.css"
-}
+} \ No newline at end of file