mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 06:08:34 +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,15 +90,22 @@
|
||||||
.comments-area .comment-list {
|
.comments-area .comment-list {
|
||||||
padding-bottom: 30px;
|
padding-bottom: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.popup {
|
.popup {
|
||||||
display: none;
|
display: none;
|
||||||
background-color: #241c1cab;
|
background-color: #333;
|
||||||
backdrop-filter: blur(31px);
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border: solid 1.5px gray;
|
border: solid 1.5px gray;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 1080px) {
|
||||||
|
.popup {
|
||||||
|
background-color: #241c1cab;
|
||||||
|
backdrop-filter: blur(31px);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.popup > div {
|
.popup > div {
|
||||||
margin-bottom: 2px;
|
margin-bottom: 2px;
|
||||||
|
|
Loading…
Reference in a new issue