aboutsummaryrefslogtreecommitdiff
path: root/www/assets/partials
diff options
context:
space:
mode:
authorYuqian Yang <crupest@crupest.life>2025-02-24 02:18:20 +0800
committerYuqian Yang <crupest@crupest.life>2025-02-26 02:21:41 +0800
commit046c71c4c282b7c9dce781c8a1f31c68a1515854 (patch)
tree48e72e89b22c569d716bf66e746ed4a8a0fbfd98 /www/assets/partials
parent471cacdd706002df81f5bee03729b8fca6c98f37 (diff)
downloadcrupest-046c71c4c282b7c9dce781c8a1f31c68a1515854.tar.gz
crupest-046c71c4c282b7c9dce781c8a1f31c68a1515854.tar.bz2
crupest-046c71c4c282b7c9dce781c8a1f31c68a1515854.zip
feat(www): YEAH!
Diffstat (limited to 'www/assets/partials')
-rw-r--r--www/assets/partials/preview/article.css42
1 files changed, 42 insertions, 0 deletions
diff --git a/www/assets/partials/preview/article.css b/www/assets/partials/preview/article.css
new file mode 100644
index 0000000..6e93669
--- /dev/null
+++ b/www/assets/partials/preview/article.css
@@ -0,0 +1,42 @@
+.article-preview {
+ font-size: 0.95em;
+ padding-inline: 0.5em;
+ padding-block: 0.5em;
+ margin-block-end: 0.5em;
+ border-radius: 3px;
+ background-color: hsl(33, 100%, 98%);
+
+ & > p {
+ font-size: 0.9em;
+ line-height: 1.4;
+ margin-inline-start: 0.3em;
+ margin-block: 0;
+ }
+
+ & > .title {
+ margin-block-start: 0;
+ margin-block-end: 0.3em;
+ }
+
+ & > .date {
+ font-size: small;
+ float: right;
+ margin-inline-end: 1.5em;
+ color: hsl(0, 0%, 25%);
+ }
+
+ & > .content {
+ overflow: hidden;
+ height: 3lh;
+ }
+}
+
+body[data-theme="dark"] {
+ & .article-preview {
+ background-color: hsl(0, 0%, 3%);
+
+ & > .date {
+ color: hsl(0, 0%, 75%);
+ }
+ }
+}