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

52 lines
916 B
SCSS
Raw Normal View History

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