lbry-desktop/ui/scss/component/_splash.scss

52 lines
929 B
SCSS
Raw Normal View History

2019-05-29 15:48:44 -04:00
.splash {
2019-12-06 16:12:48 -05:00
-webkit-app-region: drag;
2019-05-29 15:48:44 -04:00
width: 100vw;
height: 100vh;
align-items: center;
background-color: var(--color-background--splash);
2019-05-29 15:48:44 -04:00
display: flex;
flex-direction: column;
2019-05-29 15:48:44 -04:00
justify-content: center;
overflow: hidden;
}
.splash__details {
position: absolute;
2019-05-29 15:48:44 -04:00
line-height: 1;
2019-11-07 14:39:22 -05:00
font-weight: var(--font-weight-light);
2019-11-22 16:13:00 -05:00
color: #fff;
margin-top: 2rem;
2019-05-29 15:48:44 -04:00
}
.splash__title {
position: absolute;
font-size: 40px;
line-height: 1;
2019-11-07 14:39:22 -05:00
font-weight: var(--font-weight-bold);
2019-11-22 16:13:00 -05:00
color: #fff;
margin-top: -1rem;
}
2019-08-09 13:12:28 -04:00
.splash__animation-toggle {
position: fixed;
2019-11-22 16:13:00 -05:00
top: var(--spacing-large);
2019-08-09 13:12:28 -04:00
right: var(--spacing-large);
padding: var(--spacing-medium);
2019-11-22 16:13:00 -05:00
border-color: #fff;
color: #fff;
background-color: rgba(255, 255, 255, 0.205);
font-size: var(--font-small);
2019-08-09 13:12:28 -04:00
&:hover {
2019-11-22 16:13:00 -05:00
background-color: rgba(255, 255, 255, 0.5);
2019-08-09 13:12:28 -04:00
.icon {
2019-11-22 16:13:00 -05:00
stroke: #fff;
2019-08-09 13:12:28 -04:00
}
}
2019-05-29 15:48:44 -04:00
}
.doodle {
position: fixed;
}