mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2025-03-03 13:51:04 +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
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
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 "header";
|
||||||
@import "article";
|
@import "article";
|
||||||
@import "forms";
|
@import "forms";
|
||||||
|
@import "tables";
|
||||||
|
|
|
@ -12,3 +12,4 @@
|
||||||
@import "header";
|
@import "header";
|
||||||
@import "article";
|
@import "article";
|
||||||
@import "forms";
|
@import "forms";
|
||||||
|
@import "tables";
|
||||||
|
|
Loading…
Reference in a new issue