-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ae26fd7
commit 21c7e1b
Showing
69 changed files
with
26,423 additions
and
5,875 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,146 @@ | ||
.archive-year, | ||
.archive-tag, | ||
.archive-category { | ||
text-decoration: none; | ||
text-transform: uppercase; | ||
letter-spacing: 2px; | ||
color: color-grey; | ||
margin-bottom: 1em; | ||
margin-left: 5px; | ||
line-height: 1em; | ||
font-weight: bold; | ||
} | ||
.archives-wrap { | ||
margin: 50px 0; | ||
} | ||
.archives { | ||
margin-left: 2em; | ||
} | ||
.archive-year-wrap { | ||
margin-bottom: 1em; | ||
} | ||
.archive-year-wrap h1 { | ||
font-size: 1.3em; | ||
} | ||
.archive-year { | ||
color: #fb6d19; | ||
} | ||
.archive-year:hover { | ||
color: #fb6d19; | ||
} | ||
.archive-year:before { | ||
font-family: "FontAwesome"; | ||
content: "\f273"; | ||
margin-right: 0.2em; | ||
} | ||
.archives-tags-wrap { | ||
margin: 50px 0; | ||
} | ||
.archives-tags-wrap blockquote { | ||
padding: 1em; | ||
margin: 4em 0 0 0; | ||
font-size: 1.2em; | ||
font-weight: bold; | ||
color: #33363b; | ||
text-align: center; | ||
border-left: 0px solid #fb6d19; | ||
background: rgba(208,211,248,0.15); | ||
} | ||
.archives-tags-wrap blockquote a { | ||
color: #33363b; | ||
margin: 0.2em; | ||
} | ||
.archives-tags-wrap blockquote a:hover { | ||
color: #fb6d19; | ||
} | ||
.archive-tag { | ||
text-transform: none; | ||
color: #fb6d19; | ||
} | ||
.archive-tag:hover { | ||
color: #fb6d19; | ||
} | ||
.archive-tag:before { | ||
font-family: "FontAwesome"; | ||
content: "\f02c"; | ||
margin-right: 0.2em; | ||
} | ||
.archives-category-wrap { | ||
margin: 50px 0; | ||
} | ||
.archives-category-wrap blockquote { | ||
padding: 1em; | ||
font-size: 1.1em; | ||
font-weight: bold; | ||
line-height: 1.7em; | ||
color: #fb6d19; | ||
text-align: left; | ||
border-left: 0px solid #fb6d19; | ||
background: rgba(208,211,248,0.15); | ||
} | ||
.archives-category-wrap blockquote a { | ||
color: #33363b; | ||
margin: 0.2em; | ||
} | ||
.archives-category-wrap blockquote a:hover { | ||
color: #fb6d19; | ||
} | ||
.archives-category-wrap blockquote a:before { | ||
font-family: "FontAwesome"; | ||
content: "\f0da"; | ||
margin-right: 0.5em; | ||
} | ||
.archive-category { | ||
text-transform: none; | ||
color: #fb6d19; | ||
} | ||
.archive-category:before { | ||
font-family: "FontAwesome"; | ||
content: "\f07c"; | ||
margin-right: 0.3em; | ||
} | ||
.archives { | ||
column-gap: 10px; | ||
} | ||
@media mq-tablet { | ||
.archives { | ||
column-count: 1; | ||
} | ||
} | ||
@media mq-normal { | ||
.archives { | ||
column-count: 1; | ||
} | ||
} | ||
.archive-article-inner { | ||
padding: 0px; | ||
margin-bottom: 0px; | ||
} | ||
.archive-article-title { | ||
text-decoration: none; | ||
color: #606060; | ||
transition: color 0.2s; | ||
line-height: 1.6em; | ||
border-left: 1px solid #fb6d19; | ||
padding-left: 15px; | ||
} | ||
.archive-article-title:hover { | ||
color: #fb6d19; | ||
} | ||
.archive-article-footer { | ||
margin-top: 1em; | ||
} | ||
.archive-article-date { | ||
min-width: 85px; | ||
float: left; | ||
color: #c7c7c7; | ||
text-decoration: none; | ||
line-height: 1.6em; | ||
margin-right: 15px; | ||
display: block; | ||
font-size: 1.1em; | ||
font-family: "futura-pt", Helvetica, Arial, "Hiragino Sans GB", "Hiragino Sans GB W3", Microsoft JhengHei, WenQuanYi Micro Hei, "Microsoft YaHei", sans-serif; | ||
} | ||
.archive-article-date:hover { | ||
color: #fb6d19; | ||
} |
Oops, something went wrong.