mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-13 04:18:04 +01:00
add hover effects!!
This commit is contained in:
parent
c8890f3af1
commit
0e5f716184
1 changed files with 47 additions and 40 deletions
|
@ -61,6 +61,7 @@
|
|||
#623aa2 100%,
|
||||
#8e6f7e 100%
|
||||
);
|
||||
--chip-background-hover: #3f3f3f;
|
||||
|
||||
--ptd-watch-min-player-height: 360px;
|
||||
--ptd-watch-width-ratio: 16;
|
||||
|
@ -126,7 +127,6 @@ a {
|
|||
color: var(--text-link);
|
||||
}
|
||||
|
||||
|
||||
.video > .info > .title {
|
||||
font-family: var(--text-font-primary);
|
||||
width: 10em;
|
||||
|
@ -149,7 +149,6 @@ a {
|
|||
font-family: var(--text-font-primary) !important;
|
||||
font-stretch: extra-expanded;
|
||||
font-weight: 900 !important;
|
||||
|
||||
}
|
||||
|
||||
.video-sub-info.description {
|
||||
|
@ -294,7 +293,6 @@ a {
|
|||
font-stretch: expanded;
|
||||
}
|
||||
|
||||
|
||||
.comments-author {
|
||||
margin: 7px;
|
||||
font-family: var(--text-font-primary);
|
||||
|
@ -439,7 +437,6 @@ a {
|
|||
border-style: solid;
|
||||
}
|
||||
|
||||
|
||||
.dropdown {
|
||||
position: relative;
|
||||
display: flex;
|
||||
|
@ -459,7 +456,6 @@ a {
|
|||
justify-content: center;
|
||||
}
|
||||
|
||||
|
||||
.dropdown__menu {
|
||||
position: absolute;
|
||||
z-index: 999;
|
||||
|
@ -471,10 +467,9 @@ a {
|
|||
width: 300px;
|
||||
border-radius: 8px;
|
||||
box-shadow: var(--border-color) 0 0 5px;
|
||||
background-color: var(--context-menu-background)
|
||||
background-color: var(--context-menu-background);
|
||||
}
|
||||
|
||||
|
||||
.dropdown__item {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
|
@ -498,3 +493,15 @@ a {
|
|||
.dropdown__menu:target {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.new-button.engagement:hover {
|
||||
background-color: #0009;
|
||||
}
|
||||
|
||||
div.new-button:hover {
|
||||
background-color: #0008;
|
||||
}
|
||||
|
||||
a.new-button:hover {
|
||||
background-color: #0008;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue