mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-22 16:37:52 +01:00
add blur optimization :3
This commit is contained in:
parent
78802224c5
commit
5b7ed14da8
1 changed files with 16 additions and 9 deletions
|
@ -90,16 +90,23 @@
|
|||
.comments-area .comment-list {
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
|
||||
.popup {
|
||||
display: none;
|
||||
background-color: #241c1cab;
|
||||
backdrop-filter: blur(31px);
|
||||
position: absolute;
|
||||
padding: 10px;
|
||||
border: solid 1.5px gray;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
display: none;
|
||||
background-color: #333;
|
||||
position: absolute;
|
||||
padding: 10px;
|
||||
border: solid 1.5px gray;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
@media (min-width: 1080px) {
|
||||
.popup {
|
||||
background-color: #241c1cab;
|
||||
backdrop-filter: blur(31px);
|
||||
}
|
||||
}
|
||||
|
||||
.popup > div {
|
||||
margin-bottom: 2px;
|
||||
font-family: var(--text-font-primary);
|
||||
|
|
Loading…
Reference in a new issue