Skip to content

Commit

Permalink
v 0.3 - grayscale and pointer fixing
Browse files Browse the repository at this point in the history
added  filter: grayscale(100%); to person-item in CSS

removed css for the question mark mouse pointer
  • Loading branch information
niclaz authored Apr 28, 2024
1 parent 4890f00 commit 2b629ed
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions w3pevent.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* v0.2 of CSS stylesheet for the Web3Privacy Events websites - source: https://github.com/web3privacy/events_web */
/* v0.3 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 @@ -641,7 +641,7 @@ person-item:hover .text-mild,
}
.topic-item,
.topic-item .topic-header {
cursor: help;
cursor: pointer;
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 500ms;
Expand Down Expand Up @@ -678,7 +678,8 @@ person-item:hover .text-mild,
text-transform: lowercase;
}
.person-item {
cursor: help;
cursor: pointer;
filter: grayscale(80%);
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 500ms;
Expand Down

0 comments on commit 2b629ed

Please sign in to comment.