chore: fixes
This commit is contained in:
parent
a1f8c250ef
commit
168490d8a2
1 changed files with 44 additions and 20 deletions
|
|
@ -817,47 +817,71 @@ a:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.left_banner,
|
||||||
|
.right_banner {
|
||||||
|
position: fixed;
|
||||||
|
|
||||||
.left_banner {
|
|
||||||
position:fixed;
|
|
||||||
top: 250px;
|
|
||||||
left: 40px;
|
|
||||||
width: 383px;
|
width: 383px;
|
||||||
height: 626px;
|
height: 626px;
|
||||||
|
|
||||||
background-image: url("https://www.veltron.net/images/dragon.png");
|
background-image: url("https://www.veltron.net/images/dragon.png");
|
||||||
background-size: contain;
|
background-size: contain;
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
|
||||||
animation: float 6s ease-in-out infinite;
|
animation: float 6s ease-in-out infinite;
|
||||||
z-index: 94;
|
z-index: 94;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* right image */
|
||||||
|
|
||||||
|
|
||||||
.right_banner {
|
.right_banner {
|
||||||
position:fixed;
|
|
||||||
top: 150px;
|
|
||||||
right: 40px;
|
|
||||||
width: 383px;
|
|
||||||
height: 626px;
|
|
||||||
background-image: url("https://www.veltron.net/images/digimon.png");
|
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;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* =========================
|
/* =========================
|
||||||
* BELOW 1920 (HIDE)
|
* 1920–3K (normal size)
|
||||||
= *======================== */
|
= *======================== */
|
||||||
@media (max-width: 1870px) {
|
@media (min-width: 1870px) and (max-width: 3000px) {
|
||||||
|
.left_banner {
|
||||||
|
top: 250px;
|
||||||
|
left: 40px;
|
||||||
|
width: 383px;
|
||||||
|
height: 626px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right_banner {
|
||||||
|
top: 150px;
|
||||||
|
right: 40px;
|
||||||
|
width: 383px;
|
||||||
|
height: 626px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* =========================
|
||||||
|
* 4K SCALE UP
|
||||||
|
= *======================== */
|
||||||
|
@media (min-width: 3000px) {
|
||||||
|
.left_banner,
|
||||||
|
.right_banner {
|
||||||
|
width: 520px;
|
||||||
|
height: 850px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.left_banner {
|
||||||
|
top: 300px;
|
||||||
|
left: 80px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right_banner {
|
||||||
|
top: 200px;
|
||||||
|
right: 80px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* =========================
|
||||||
|
* BELOW 1870 HIDE
|
||||||
|
= *======================== */
|
||||||
|
@media (max-width: 1869px) {
|
||||||
.left_banner,
|
.left_banner,
|
||||||
.right_banner {
|
.right_banner {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue