tables&blockquote style

This commit is contained in:
tirbal 2024-12-23 23:10:59 +01:00
parent b486178a42
commit 454da57275
4 changed files with 13 additions and 1 deletions

View file

@ -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;
}

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 "article";
@import "forms";
@import "tables";

View file

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