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

github.com/kakawait/hugo-tranquilpeak-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/scss/components/_archive.scss')
-rwxr-xr-xsrc/scss/components/_archive.scss36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/scss/components/_archive.scss b/src/scss/components/_archive.scss
new file mode 100755
index 0000000..813b6de
--- /dev/null
+++ b/src/scss/components/_archive.scss
@@ -0,0 +1,36 @@
+.archive-result {
+ display: none;
+}
+
+.archive {
+ .archive-title {
+ color: $font-color-base;
+
+ &:hover {
+ text-decoration: underline;
+ }
+ }
+ .archive-posts {
+ list-style: none;
+
+ .archive-post {
+ .archive-post-title {
+ margin-left: 10px;
+ color: $font-color-base;
+
+ &:hover {
+ text-decoration: underline;
+ }
+ }
+ .archive-post-date {
+ color: map-get($colors, light);
+ }
+ // Change styl of the list by adding font-awesome icon
+ &::before {
+ font-family: 'FontAwesome';
+ content: '\f0da';
+ font-size: map-get($font-size, small);
+ }
+ }
+ }
+} \ No newline at end of file