Skip to content

Commit

Permalink
0.6 - still trying to fix grayscaling
Browse files Browse the repository at this point in the history
  • Loading branch information
niclaz authored Apr 28, 2024
1 parent 86de099 commit b4a195e
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions w3pevent.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* v0.5 of CSS stylesheet for the Web3Privacy Events websites - source: https://github.com/web3privacy/events_web */
/* v0.6 of CSS stylesheet for the Web3Privacy Events websites - source: https://github.com/web3privacy/events_web */
/* major-mono-display-regular - latin */
@font-face {
font-family: 'Major Mono Display';
Expand Down Expand Up @@ -590,14 +590,12 @@ person-item:hover .table-custom th {
font-size: 0.875rem;
line-height: 1.25rem;
}
.person-item: img {
filter: grayscale(100%);
}
.person-item:hover img {
filter: grayscale(0%);
}
person-item:hover .text-mild,
.person-item:hover .text-supermild {
text-opacity: 1;
color: #000000;
}
.eligible .text-mild {
text-opacity: 1;
color: #000000;
Expand Down Expand Up @@ -650,16 +648,23 @@ person-item:hover .text-mild,
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 500ms;
}
.person-item:hover .speaker-name {
text-transform: lowercase;
}
.person-item {
filter: grayscale(100%);
cursor: pointer;
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 500ms;
}
.person-item:hover {
filter: grayscale(0%);
cursor: pointer;
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 500ms;
}
.person-item:hover .speaker-name {
text-transform: lowercase;
}
.partner-item .partner-img {
filter: grayscale(100%);
}
Expand Down

0 comments on commit b4a195e

Please sign in to comment.