mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-17 10:34:38 -05: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%,
|
#623aa2 100%,
|
||||||
#8e6f7e 100%
|
#8e6f7e 100%
|
||||||
);
|
);
|
||||||
|
--chip-background-hover: #3f3f3f;
|
||||||
|
|
||||||
--ptd-watch-min-player-height: 360px;
|
--ptd-watch-min-player-height: 360px;
|
||||||
--ptd-watch-width-ratio: 16;
|
--ptd-watch-width-ratio: 16;
|
||||||
|
@ -126,7 +127,6 @@ a {
|
||||||
color: var(--text-link);
|
color: var(--text-link);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.video > .info > .title {
|
.video > .info > .title {
|
||||||
font-family: var(--text-font-primary);
|
font-family: var(--text-font-primary);
|
||||||
width: 10em;
|
width: 10em;
|
||||||
|
@ -149,7 +149,6 @@ a {
|
||||||
font-family: var(--text-font-primary) !important;
|
font-family: var(--text-font-primary) !important;
|
||||||
font-stretch: extra-expanded;
|
font-stretch: extra-expanded;
|
||||||
font-weight: 900 !important;
|
font-weight: 900 !important;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.video-sub-info.description {
|
.video-sub-info.description {
|
||||||
|
@ -294,7 +293,6 @@ a {
|
||||||
font-stretch: expanded;
|
font-stretch: expanded;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.comments-author {
|
.comments-author {
|
||||||
margin: 7px;
|
margin: 7px;
|
||||||
font-family: var(--text-font-primary);
|
font-family: var(--text-font-primary);
|
||||||
|
@ -439,7 +437,6 @@ a {
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.dropdown {
|
.dropdown {
|
||||||
position: relative;
|
position: relative;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -459,7 +456,6 @@ a {
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.dropdown__menu {
|
.dropdown__menu {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 999;
|
z-index: 999;
|
||||||
|
@ -471,10 +467,9 @@ a {
|
||||||
width: 300px;
|
width: 300px;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
box-shadow: var(--border-color) 0 0 5px;
|
box-shadow: var(--border-color) 0 0 5px;
|
||||||
background-color: var(--context-menu-background)
|
background-color: var(--context-menu-background);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.dropdown__item {
|
.dropdown__item {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
@ -498,3 +493,15 @@ a {
|
||||||
.dropdown__menu:target {
|
.dropdown__menu:target {
|
||||||
display: block;
|
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