Merge pull request 'tables&blockquote style' (#1163) from tirbal/Plume:tables-style into main

Reviewed-on: https://git.joinplu.me/Plume/Plume/pulls/1163
Reviewed-by: trinity-1686a <trinity-1686a@noreply@joinplu.me>
This commit is contained in:
trinity-1686a 2025-01-25 09:38:18 +00:00
commit f690342564
4 changed files with 13 additions and 1 deletions

View file

@ -98,7 +98,7 @@ main article {
} }
blockquote { blockquote {
border-inline-start: 5px solid $gray; border-inline-start: 5px solid $lightpurple;
margin: 1em auto; margin: 1em auto;
padding: 0em 2em; padding: 0em 2em;
} }

View file

@ -0,0 +1,10 @@
/* tables */
table, td, th, tr {
border: 1px dotted $lightpurple;
}
table {
border-collapse: collapse;
}
tr:nth-child(even){background-color: $gray;}

View file

@ -12,3 +12,4 @@
@import "header"; @import "header";
@import "article"; @import "article";
@import "forms"; @import "forms";
@import "tables";

View file

@ -12,3 +12,4 @@
@import "header"; @import "header";
@import "article"; @import "article";
@import "forms"; @import "forms";
@import "tables";