mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-10 02:54:15 +00:00
added splash
style
This commit is contained in:
parent
74ab0045e5
commit
76ab58d388
@ -272,4 +272,50 @@ body {
|
|||||||
/* disable selection/Copy of UIWebView */
|
/* disable selection/Copy of UIWebView */
|
||||||
-webkit-touch-callout: none;
|
-webkit-touch-callout: none;
|
||||||
/* disable the IOS popup when long-press on a link */
|
/* disable the IOS popup when long-press on a link */
|
||||||
|
}
|
||||||
|
|
||||||
|
.splash_wrapper {
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
//background-color: rgba(240, 242, 245, 0.8);
|
||||||
|
backdrop-filter : blur(10px);
|
||||||
|
--webkit-backdrop-filter: blur(10px);
|
||||||
|
|
||||||
|
width : 100%;
|
||||||
|
height : 100%;
|
||||||
|
z-index: 1000;
|
||||||
|
|
||||||
|
display : flex;
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
|
align-items : center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.splash_logo {
|
||||||
|
width : 100%;
|
||||||
|
height: 100%;
|
||||||
|
|
||||||
|
display : flex;
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
|
align-items : center;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
img {
|
||||||
|
width : fit-content;
|
||||||
|
max-width : 50%;
|
||||||
|
max-height: 50%;
|
||||||
|
filter : drop-shadow(14px 10px 10px rgba(128, 128, 128, 0.5));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes fadeOut {
|
||||||
|
from {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
to {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user