Skip to content

Commit

Permalink
Fixup. Format code with Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Dec 3, 2024
1 parent 4698507 commit 2501b45
Showing 1 changed file with 29 additions and 12 deletions.
41 changes: 29 additions & 12 deletions pod/main/static/css/pod.css
Original file line number Diff line number Diff line change
Expand Up @@ -168,28 +168,45 @@ tr,
}

/** TAGs Cloud */
.tag-cloud{
.tag-cloud {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-evenly;
}

.tag-cloud>a {
.tag-cloud > a {
line-height: 1.5;
}

.tag-cloud>*:nth-child(2n+1) { --bs-link-color-rgb: var(--pod-tag-color1); }
.tag-cloud>*:nth-child(3n+1) { --bs-link-color-rgb: var(--pod-tag-color2); }
.tag-cloud>*:nth-child(4n+1) { --bs-link-color-rgb: var(--pod-tag-color3); }

.tag-1{font-size: 1em;}
.tag-2{font-size: 1.1em;}
.tag-3{font-size: 1.2em;}
.tag-4{font-size: 1.3em;}
.tag-5{font-size: 1.4em;}
.tag-6{font-size: 1.5em;}
.tag-cloud > *:nth-child(2n + 1) {
--bs-link-color-rgb: var(--pod-tag-color1);
}
.tag-cloud > *:nth-child(3n + 1) {
--bs-link-color-rgb: var(--pod-tag-color2);
}
.tag-cloud > *:nth-child(4n + 1) {
--bs-link-color-rgb: var(--pod-tag-color3);
}

.tag-1 {
font-size: 1em;
}
.tag-2 {
font-size: 1.1em;
}
.tag-3 {
font-size: 1.2em;
}
.tag-4 {
font-size: 1.3em;
}
.tag-5 {
font-size: 1.4em;
}
.tag-6 {
font-size: 1.5em;
}

.pod-card--video a:not(.btn) {
color: inherit;
Expand Down

0 comments on commit 2501b45

Please sign in to comment.