Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
ntk148v committed Aug 30, 2024
1 parent 123a808 commit 3c535a0
Showing 1 changed file with 53 additions and 52 deletions.
105 changes: 53 additions & 52 deletions assets/css/site.css
Original file line number Diff line number Diff line change
Expand Up @@ -232,68 +232,69 @@ figure {
content: "]";
}

/* ##################### */
/* # Links # */
/* ##################### */
.content a {
@apply italic p-1 font-medium;
}

.content a::before,
a::after {
@apply text-muted inline-block no-underline;
}
.content {
/* ##################### */
/* # Links # */
/* ##################### */
& a {
@apply italic p-1 font-medium;
}

.content a::before {
content: "{";
@apply pr-1;
}
a::before,
a::after {
@apply text-muted inline-block no-underline;
}

.content a::after {
content: "}";
@apply pl-1;
}
a::before {
content: "{";
@apply pr-1;
}
.content a:hover {
@apply underline decoration-muted underline-offset-2;
}
a::after {
content: "}";
@apply pl-1;
}

.content a:visited {
@apply text-muted;
}
a:hover {
@apply underline decoration-muted underline-offset-2;
}

.content ul {
@apply list-disc ml-6;
}
a:visited {
@apply text-muted;
}

.content ol {
@apply list-decimal ml-6;
}
/* ##################### */
/* Table */
/* ##################### */
table {
@apply overflow-auto block my-4 min-w-full divide-y-2 text-sm;
}

/* ##################### */
/* Table */
/* ##################### */
.content table {
@apply overflow-auto block my-4 min-w-full divide-y-2 text-sm;
}
table thead {
@apply ltr:text-left rtl:text-right;
}
table tbody {
@apply divide-y;
}

.content table thead {
@apply ltr:text-left rtl:text-right;
}
tr th {
@apply font-medium;
}

.content table tbody {
@apply divide-y;
}
tr th,
tr td {
@apply px-4 py-2;
}

.content tr th {
@apply font-medium;
}
img {
@apply my-4;
}

.content tr th,
.content tr td {
@apply px-4 py-2;
}
ul {
@apply list-disc ml-6;
}

.content img {
@apply my-4;
ol {
@apply list-decimal ml-6;
}
}

0 comments on commit 3c535a0

Please sign in to comment.