mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-21 20:09:53 +00:00
61 lines
891 B
SCSS
61 lines
891 B
SCSS
.preload-logo {
|
|
-webkit-app-region: drag;
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: flex;
|
|
animation: 0.5s ease-out fadeIn;
|
|
|
|
&>div {
|
|
width: 200px;
|
|
height: 200px;
|
|
margin: auto;
|
|
flex: none;
|
|
|
|
.progress {
|
|
background: rgba(0,0,0,.25);
|
|
height: 3px;
|
|
margin: 10px 50px;
|
|
|
|
.bar {
|
|
transition: 1s ease-out width;
|
|
background: #a1c5e4;
|
|
height: 3px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@keyframes fadeIn {
|
|
0% { opacity: 0; }
|
|
100% { opacity: 1; }
|
|
}
|
|
|
|
|
|
|
|
.terminus-logo {
|
|
width: 160px;
|
|
height: 160px;
|
|
background: url('../assets/logo.svg');
|
|
background-repeat: none;
|
|
background-size: contain;
|
|
margin: auto;
|
|
}
|
|
|
|
|
|
.terminus-title {
|
|
color: #a1c5e4;
|
|
font-family: 'Source Sans Pro';
|
|
text-align: center;
|
|
font-weight: normal;
|
|
font-size: 42px;
|
|
margin: 0;
|
|
|
|
sup {
|
|
color: #842fe0;
|
|
}
|
|
}
|