mirror of
https://github.com/maciejpedzich/maciejpedzi.ch.git
synced 2024-11-27 23:55:47 +01:00
Revert to default style for post links on mobiles
This commit is contained in:
parent
38f4897372
commit
23be071eea
@ -160,37 +160,38 @@ h1.cmr2-text {
|
|||||||
/* The following styling rules have been adopted from:
|
/* The following styling rules have been adopted from:
|
||||||
https://github.com/codrops/LineHoverStyles/ */
|
https://github.com/codrops/LineHoverStyles/ */
|
||||||
|
|
||||||
.post-list a {
|
@media (min-width: 640px) {
|
||||||
|
.post-list a {
|
||||||
position: relative;
|
position: relative;
|
||||||
outline: none;
|
outline: none;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
white-space: nowrap;
|
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
.post-list a:focus {
|
.post-list a:focus {
|
||||||
outline: 2px solid rgba(255, 255, 255, 0.4);
|
outline: 2px solid rgba(255, 255, 255, 0.4);
|
||||||
outline-offset: 3px;
|
outline-offset: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-list a:focus:not(:focus-visible) {
|
.post-list a:focus:not(:focus-visible) {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-list a:focus-visible {
|
.post-list a:focus-visible {
|
||||||
color: rgba(255, 255, 255, 0.4);
|
color: rgba(255, 255, 255, 0.4);
|
||||||
outline: 2px solid rgba(255, 255, 255, 0.4);
|
outline: 2px solid rgba(255, 255, 255, 0.4);
|
||||||
outline-offset: 3px;
|
outline-offset: 3px;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-list a:hover {
|
.post-list a:hover {
|
||||||
outline: none;
|
outline: none;
|
||||||
color: rgba(255, 255, 255, 0.4);
|
color: rgba(255, 255, 255, 0.4);
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-list a::before,
|
.post-list a::before,
|
||||||
.post-list a::after {
|
.post-list a::after {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 1px;
|
height: 1px;
|
||||||
@ -198,26 +199,27 @@ h1.cmr2-text {
|
|||||||
top: 100%;
|
top: 100%;
|
||||||
left: 0;
|
left: 0;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-list a::before {
|
.post-list a::before {
|
||||||
content: '';
|
content: '';
|
||||||
transform-origin: 0% 50%;
|
transform-origin: 0% 50%;
|
||||||
transform: scale3d(0, 1, 1);
|
transform: scale3d(0, 1, 1);
|
||||||
transition: transform 0.3s;
|
transition: transform 0.3s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-list a:hover::before {
|
.post-list a:hover::before {
|
||||||
transform: scale3d(1, 1, 1);
|
transform: scale3d(1, 1, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-list a::after {
|
.post-list a::after {
|
||||||
content: '';
|
content: '';
|
||||||
top: calc(100% + 4px);
|
top: calc(100% + 4px);
|
||||||
transition: transform 0.3s;
|
transition: transform 0.3s;
|
||||||
transform-origin: 100% 50%;
|
transform-origin: 100% 50%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-list a:hover::after {
|
.post-list a:hover::after {
|
||||||
transform: scale3d(0, 1, 1);
|
transform: scale3d(0, 1, 1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user