Compare commits

...

3 Commits

Author SHA1 Message Date
b1ek 119940b92b
min size 2023-08-12 17:12:18 +10:00
b1ek 3a4394204c
fade in animation on app startup 2023-08-12 17:11:19 +10:00
b1ek e2855811d3
fix drag bug 2023-08-12 17:10:50 +10:00
4 changed files with 33 additions and 2 deletions

View File

@ -53,7 +53,9 @@
"transparent": true, "transparent": true,
"title": "blek! nox", "title": "blek! nox",
"width": 800, "width": 800,
"height": 600 "height": 600,
"minWidth": 300,
"minHeight": 400
} }
] ]
} }

View File

@ -5,5 +5,7 @@
<Titlebar /> <Titlebar />
<div class='backdrop'> <div class='backdrop'>
<Load /> <div class='delay-show'>
<Load />
</div>
</div> </div>

View File

@ -13,3 +13,29 @@ body, html {
border-radius: 16px; border-radius: 16px;
z-index: 0; z-index: 0;
} }
@keyframes delay-show-fade-in {
0% {
opacity: 0;
position: relative;
top: 10%;
}
50% {
opacity: 0;
position: relative;
top: 10%;
}
to {
opacity: 1;
position: relative;
top: 0%;
}
}
.delay-show {
position: relative;
top: 10%;
display: block;
opacity: 1;
animation: delay-show-fade-in 1.5s ease;
}

View File

@ -39,6 +39,7 @@ $corners: 10px;
color: #b0b0b0; color: #b0b0b0;
font-size: 12pt; font-size: 12pt;
padding-left: 12px; padding-left: 12px;
width: 100%;
} }
.btns { .btns {