mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-17 05:34:40 -05:00
update stuff :p
This commit is contained in:
parent
36db58f6bb
commit
233a2719c1
1 changed files with 25 additions and 6 deletions
|
@ -244,11 +244,17 @@ a.avatar {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.comment-list.left-padding:hover {
|
.comment-list.left-padding {
|
||||||
border: white solid;
|
transition-duration: 150ms;
|
||||||
cursor:pointer;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.comment-list.left-padding:hover {
|
||||||
|
filter: drop-shadow(0 0 0.75rem var(--text-link));
|
||||||
|
transition-duration: 150ms;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.comments-author.owner {
|
.comments-author.owner {
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
font-family: var(--text-font-primary);
|
font-family: var(--text-font-primary);
|
||||||
|
@ -428,11 +434,12 @@ a.avatar {
|
||||||
}
|
}
|
||||||
|
|
||||||
.video > .thumbnail {
|
.video > .thumbnail {
|
||||||
border: 1px gray solid;
|
border: 1px white solid;
|
||||||
}
|
}
|
||||||
|
|
||||||
.video:hover > .thumbnail {
|
.video:hover > .thumbnail {
|
||||||
border: 1px white solid;
|
border: 1px var(--text-link) solid;
|
||||||
|
transition-duration: 150ms;
|
||||||
}
|
}
|
||||||
|
|
||||||
.video-player-container {
|
.video-player-container {
|
||||||
|
@ -607,9 +614,21 @@ a.new-button:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
.subscribe-button:hover {
|
.subscribe-button:hover {
|
||||||
background: #f2ebeb;
|
animation: animateBg 2s infinite linear;
|
||||||
|
background-color: #fff;
|
||||||
|
background-image: linear-gradient(90deg, #da3287, #ffde5e, #da3287, #ffde5e);
|
||||||
|
background-size: 300% 100%;
|
||||||
|
box-shadow: 0 3px 14px #000;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
@keyframes animateBg {
|
||||||
|
0% {
|
||||||
|
background-position: 0 0;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
background-position: 100% 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 1340px) {
|
@media screen and (max-width: 1340px) {
|
||||||
.new-button.button-encryption {
|
.new-button.button-encryption {
|
||||||
|
|
Loading…
Reference in a new issue