mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2025-03-02 21:31:02 +00:00
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:
commit
f690342564
4 changed files with 13 additions and 1 deletions
assets/themes/default
|
@ -98,7 +98,7 @@ main article {
|
|||
}
|
||||
|
||||
blockquote {
|
||||
border-inline-start: 5px solid $gray;
|
||||
border-inline-start: 5px solid $lightpurple;
|
||||
margin: 1em auto;
|
||||
padding: 0em 2em;
|
||||
}
|
||||
|
|
10
assets/themes/default/_tables.scss
Normal file
10
assets/themes/default/_tables.scss
Normal 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;}
|
|
@ -12,3 +12,4 @@
|
|||
@import "header";
|
||||
@import "article";
|
||||
@import "forms";
|
||||
@import "tables";
|
||||
|
|
|
@ -12,3 +12,4 @@
|
|||
@import "header";
|
||||
@import "article";
|
||||
@import "forms";
|
||||
@import "tables";
|
||||
|
|
Loading…
Reference in a new issue