csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
758 B
49 lines
758 B
#out {
|
|
height: 100vh;
|
|
width: 100vw
|
|
}
|
|
|
|
#avalonia-splash {
|
|
position: relative;
|
|
height: 100%;
|
|
width: 100%;
|
|
color: whitesmoke;
|
|
background: #171C2C;
|
|
font-family: 'Nunito', sans-serif;
|
|
background-position: center;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
#avalonia-splash a{
|
|
color: whitesmoke;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.center {
|
|
display: flex;
|
|
justify-content: center;
|
|
height: 250px;
|
|
}
|
|
|
|
.splash-close {
|
|
animation: slide 0.5s linear 1s forwards;
|
|
}
|
|
|
|
@keyframes slide {
|
|
0% {
|
|
top: 0%;
|
|
}
|
|
|
|
50% {
|
|
opacity: 80%;
|
|
}
|
|
|
|
100% {
|
|
top: 100%;
|
|
overflow: hidden;
|
|
opacity: 0;
|
|
display: none;
|
|
visibility: collapse;
|
|
}
|
|
}
|
|
|