Compare commits
2 commits
e4d4b9e911
...
21a04e7f7b
Author | SHA1 | Date | |
---|---|---|---|
21a04e7f7b | |||
dc799bd9aa |
1 changed files with 32 additions and 59 deletions
|
@ -1,10 +1,7 @@
|
|||
body {
|
||||
--theme-color-primary: white;
|
||||
--theme-color-secondary: rgb(0, 0, 0);
|
||||
--theme-accent: #06225a;
|
||||
}
|
||||
|
||||
body {
|
||||
--theme-color-primary: black;
|
||||
--theme-color-secondary: white;
|
||||
--theme-accent: gold;
|
||||
font-size:22px;
|
||||
line-height:24px;
|
||||
width: 100vw;
|
||||
|
@ -111,7 +108,7 @@ article > *{
|
|||
font-size:14px;
|
||||
font-weight: bolder;
|
||||
text-decoration: none !important;
|
||||
background-color: rgb(255, 255, 255,0.25);
|
||||
background-color: rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
.listing-text h2{
|
||||
margin:0;
|
||||
|
@ -120,7 +117,7 @@ article > *{
|
|||
.listing-text >a{
|
||||
width:fit-content;
|
||||
border-bottom-style:none;
|
||||
background-color: rgba(255,255,255,0.25);
|
||||
background-color: rgba(0, 0, 0, 0.25);
|
||||
backdrop-filter: blur(55px);
|
||||
padding:25px;
|
||||
border-radius:25px;
|
||||
|
@ -133,26 +130,10 @@ article > *{
|
|||
background-color: transparent;
|
||||
backdrop-filter: none;
|
||||
}
|
||||
|
||||
@keyframes blur-out{
|
||||
from{background-color: rgba(255,255,255,0.25);}
|
||||
to{background-color: transparent;
|
||||
backdrop-filter: blur(0px);}
|
||||
}
|
||||
@keyframes blur-in{
|
||||
from {
|
||||
backdrop-filter: blur(0px);
|
||||
background-color: rgb(255, 255, 255,0.15);
|
||||
}
|
||||
to {
|
||||
backdrop-filter: blur(15px);
|
||||
background-color: rgb(255, 255, 255,0.5);
|
||||
}
|
||||
}
|
||||
.listing-text:hover{
|
||||
animation: blur-in 0.2s;
|
||||
backdrop-filter: blur(15px);
|
||||
background-color: rgb(255, 255, 2550,0.5);
|
||||
background-color: rgba(0, 0, 0, 0.55);
|
||||
}
|
||||
.listing .tags a {
|
||||
font-size:12px;
|
||||
|
@ -661,17 +642,10 @@ svg{
|
|||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
||||
@media screen and (prefers-color-scheme:dark) {
|
||||
body {
|
||||
--theme-color-primary: black;
|
||||
--theme-color-secondary: white;
|
||||
--theme-accent: gold;
|
||||
}
|
||||
@keyframes blur-in{
|
||||
from {
|
||||
backdrop-filter: blur(0px);
|
||||
background-color: unset;
|
||||
background-color: rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
to {
|
||||
backdrop-filter: blur(15px);
|
||||
|
@ -700,7 +674,6 @@ svg{
|
|||
from{background-color: rgba(0, 0, 0, 0.25);}
|
||||
to{background-color: transparent;backdrop-filter: blur(0px);}
|
||||
}
|
||||
}
|
||||
|
||||
article a[href^="https"]:where(:not([href*="{{.Site.BaseURL}}"])) {text-decoration: none !important;}
|
||||
article a[href^="https"]:where(:not([href*="{{.Site.BaseURL}}"]))::after {content:"↗️";font-size:18px;margin:5px;text-decoration: none !important;}
|
||||
|
|
Loading…
Reference in a new issue