mirror of https://gitlab.com/curben/blog
parent
7ac3b846c1
commit
0426c53a77
|
@ -1,6 +1,6 @@
|
|||
<article id="<%= post.layout %>-<%= post.slug %>" class="h-entry article article-type-<%= post.layout %>" itemprop="blogPost" itemscope itemtype="https://schema.org/BlogPosting">
|
||||
<%- partial('_partial/header') %>
|
||||
<hr/>
|
||||
<hr class="header-hr">
|
||||
<div class="article-inner">
|
||||
<%- partial('post/gallery') %>
|
||||
<% if (post.link || post.title) { %>
|
||||
|
|
|
@ -84,14 +84,37 @@ textarea {
|
|||
}
|
||||
|
||||
hr {
|
||||
background: -webkit-linear-gradient(0deg,transparent,#e6e6e6,transparent);
|
||||
border: none;
|
||||
border-bottom: 1px solid #cfcfcf;
|
||||
margin-bottom: 1em;
|
||||
box-sizing: content-box;
|
||||
height: 0;
|
||||
height: 1px;
|
||||
margin-bottom: 1em;
|
||||
margin-left: 25%;
|
||||
overflow: visible;
|
||||
width: 50%;
|
||||
margin-left: 25%;
|
||||
}
|
||||
|
||||
.archive-container hr,
|
||||
.category-container hr,
|
||||
.tag-container hr,
|
||||
.article hr {
|
||||
width: 100%;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.home hr {
|
||||
width: 80%;
|
||||
margin: 1em auto;
|
||||
}
|
||||
|
||||
.article .article-footer,
|
||||
.article .article-footer hr {
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
.header-hr {
|
||||
background: -webkit-linear-gradient(0deg,#e6e6e6,#e6e6e6,transparent);
|
||||
}
|
||||
|
||||
figcaption,
|
||||
|
@ -180,19 +203,6 @@ samp {
|
|||
display: none;
|
||||
}
|
||||
|
||||
.archive-container hr,
|
||||
.archive-footer hr,
|
||||
.article .article-footer hr,
|
||||
.article hr,
|
||||
.category-container hr,
|
||||
.home hr,
|
||||
.post-footer hr,
|
||||
.tag-container hr {
|
||||
border: 0;
|
||||
height: 1px;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.main-nav-link {
|
||||
margin-right: 0.5em;
|
||||
color: #cacdd0;
|
||||
|
@ -318,11 +328,6 @@ blockquote {
|
|||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.home hr {
|
||||
width: 80%;
|
||||
margin: 1em auto;
|
||||
}
|
||||
|
||||
.home li {
|
||||
list-style: none;
|
||||
}
|
||||
|
@ -385,13 +390,6 @@ blockquote {
|
|||
margin: 0;
|
||||
}
|
||||
|
||||
.archive-container hr,
|
||||
.category-container hr,
|
||||
.tag-container hr {
|
||||
width: 100%;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.archive-container .archive-article-date,
|
||||
.category-container .archive-article-date,
|
||||
.tag-container .archive-article-date {
|
||||
|
@ -419,11 +417,6 @@ blockquote {
|
|||
border: 0;
|
||||
}
|
||||
|
||||
.article hr {
|
||||
width: 100%;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.article .caption {
|
||||
color: #cacdd0;
|
||||
display: block;
|
||||
|
@ -545,11 +538,6 @@ blockquote {
|
|||
text-align: left;
|
||||
}
|
||||
|
||||
.article .article-footer,
|
||||
.article .article-footer hr {
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
.article .article-meta {
|
||||
color: #cacdd0;
|
||||
font-size: 0.9em;
|
||||
|
@ -911,6 +899,14 @@ svg#link {
|
|||
background: #333;
|
||||
}
|
||||
|
||||
hr {
|
||||
background: -webkit-linear-gradient(0deg,transparent,#e6e6e6,transparent);
|
||||
}
|
||||
|
||||
.header-hr {
|
||||
background: -webkit-linear-gradient(0deg,#e6e6e6,#e6e6e6,transparent);
|
||||
}
|
||||
|
||||
.copy-button:hover {
|
||||
background: #e6e6e6;
|
||||
color: black;
|
||||
|
@ -935,6 +931,14 @@ svg#link {
|
|||
background: #d8d8d8;
|
||||
}
|
||||
|
||||
hr {
|
||||
background: -webkit-linear-gradient(0deg,transparent,#333,transparent);
|
||||
}
|
||||
|
||||
.header-hr {
|
||||
background: -webkit-linear-gradient(0deg,#333,#333,transparent);
|
||||
}
|
||||
|
||||
.copy-button:hover {
|
||||
background: #333;
|
||||
color: #f1f1f1;
|
||||
|
|
Loading…
Reference in New Issue