Style ModeSelection upload PDF button and VPdfViewer

This commit is contained in:
Timothée Goguely 2024-10-16 15:28:48 +02:00
parent 38e8e12389
commit 32c9b9ee64
9 changed files with 320 additions and 100 deletions

View file

@ -8,6 +8,7 @@
/* Colors */
--color-white-10: hsla(0, 0%, 100%, .1); /* White 10 */
--color-white-20: hsla(0, 0%, 100%, .2); /* White 20 */
--color-white-50: hsla(0, 0%, 100%, .5); /* White 50 */
--color-white-70: hsla(0, 0%, 100%, .7); /* White 70 */
--color-white-100: hsla(0, 0%, 100%, 1); /* White 100 */

View file

@ -207,12 +207,6 @@ a {
color: inherit;
text-decoration: none;
}
a:visited {
color: currentColor;
}
a:hover {
color: currentColor;
}
a.link-full::after {
content: '';

View file

@ -75,7 +75,7 @@ input[type="checkbox"]:checked + .btn--primary {
}
.btn--white-10 {
--background: var(--color-white-10);
--color: var(--color-white);
--color: var(--color-grey-700);
}
.btn--sm {

View file

@ -72,6 +72,6 @@
border-color: var(--color-primary-10);
}
.card--cta:hover svg,
.card--cta:hover h2 {
.card--cta:hover .text-lg {
color: var(--color-primary-100);
}

View file

@ -51,3 +51,7 @@
.bg-primary {
background-color: var(--color-primary);
}
.bg-black {
background-color: var(--color-black);
}