chore: fixes
This commit is contained in:
parent
6f21ee7865
commit
ef529c6ae4
1 changed files with 36 additions and 33 deletions
|
|
@ -818,22 +818,8 @@ a:hover {
|
|||
|
||||
|
||||
|
||||
|
||||
/* default: hide everything */
|
||||
.left_banner,
|
||||
.right_banner {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* ONLY show on 1920px and above */
|
||||
@media (min-width: 1920px) {
|
||||
.left_banner,
|
||||
.right_banner {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.left_banner {
|
||||
position: fixed;
|
||||
.left_banner {
|
||||
position:fixed;
|
||||
top: 250px;
|
||||
left: 40px;
|
||||
width: 383px;
|
||||
|
|
@ -844,10 +830,14 @@ a:hover {
|
|||
background-repeat: no-repeat;
|
||||
animation: float 6s ease-in-out infinite;
|
||||
z-index: 94;
|
||||
}
|
||||
|
||||
.right_banner {
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.right_banner {
|
||||
position:fixed;
|
||||
top: 150px;
|
||||
right: 40px;
|
||||
width: 383px;
|
||||
|
|
@ -858,5 +848,18 @@ a:hover {
|
|||
background-repeat: no-repeat;
|
||||
animation: float 6s ease-in-out infinite;
|
||||
z-index: 94;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/* =========================
|
||||
* BELOW 1920 (HIDE)
|
||||
= *======================== */
|
||||
@media (max-width: 1870px) {
|
||||
.left_banner,
|
||||
.right_banner {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue