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

github.com/panr/hugo-theme-hello-friend.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/archive.scss')
-rw-r--r--assets/css/archive.scss72
1 files changed, 72 insertions, 0 deletions
diff --git a/assets/css/archive.scss b/assets/css/archive.scss
new file mode 100644
index 0000000..1911ef2
--- /dev/null
+++ b/assets/css/archive.scss
@@ -0,0 +1,72 @@
+.archive {
+ width: 100%;
+ max-width: 800px;
+ text-align: left;
+ padding: 20px;
+ margin: 0 auto;
+
+ &__group {
+ &-month {
+ display: flex;
+ align-items: flex-start;
+ padding: 10px 0;
+
+ @media ($phone) {
+ flex-direction: column;
+ }
+
+ &:not(:last-of-type) {
+ border-bottom: 1px solid var(--border-color);
+ }
+ }
+
+ &-year {
+ margin-top: 40px;
+
+ @media ($phone) {
+ margin-top: 20px;
+ }
+
+ &:not(:last-of-type) {
+ border-bottom: 1px solid var(--border-color);
+ }
+
+ &-header {
+ margin: 10px 0;
+ }
+ }
+
+ &-month {
+ &-header {
+ margin: 25px 0;
+ width: 200px;
+ opacity: .5;
+
+ @media ($phone) {
+ margin: 10px 0 0;
+ }
+ }
+ }
+
+ &-posts {
+ width: 100%;
+ }
+ }
+
+ &__post {
+ padding: 20px 0;
+
+ &:not(:last-of-type) {
+ border-bottom: 1px solid var(--border-color);
+ }
+
+ &-title {
+ margin: 5px 0;
+
+ a {
+ display: block;
+ text-decoration: none;
+ }
+ }
+ }
+}