chore: fixes
This commit is contained in:
parent
58b9ee9a40
commit
6f21ee7865
1 changed files with 33 additions and 36 deletions
|
|
@ -818,48 +818,45 @@ a:hover {
|
|||
|
||||
|
||||
|
||||
.left_banner {
|
||||
position:fixed;
|
||||
top: 250px;
|
||||
left: 40px;
|
||||
width: 383px;
|
||||
height: 626px;
|
||||
background-image: url("https://www.veltron.net/images/dragon.png");
|
||||
background-size: contain;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
animation: float 6s ease-in-out infinite;
|
||||
z-index: 94;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/* default: hide everything */
|
||||
.left_banner,
|
||||
.right_banner {
|
||||
position:fixed;
|
||||
top: 150px;
|
||||
right: 40px;
|
||||
width: 383px;
|
||||
height: 626px;
|
||||
background-image: url("https://www.veltron.net/images/digimon.png");
|
||||
background-size: contain;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
animation: float 6s ease-in-out infinite;
|
||||
z-index: 94;
|
||||
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/* =========================
|
||||
* BELOW 1920 (HIDE)
|
||||
= *======================== */
|
||||
@media (max-width: 1920px) {
|
||||
/* ONLY show on 1920px and above */
|
||||
@media (min-width: 1920px) {
|
||||
.left_banner,
|
||||
.right_banner {
|
||||
display: none !important;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.left_banner {
|
||||
position: fixed;
|
||||
top: 250px;
|
||||
left: 40px;
|
||||
width: 383px;
|
||||
height: 626px;
|
||||
background-image: url("https://www.veltron.net/images/dragon.png");
|
||||
background-size: contain;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
animation: float 6s ease-in-out infinite;
|
||||
z-index: 94;
|
||||
}
|
||||
|
||||
.right_banner {
|
||||
position: fixed;
|
||||
top: 150px;
|
||||
right: 40px;
|
||||
width: 383px;
|
||||
height: 626px;
|
||||
background-image: url("https://www.veltron.net/images/digimon.png");
|
||||
background-size: contain;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
animation: float 6s ease-in-out infinite;
|
||||
z-index: 94;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue