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

62 lines
990 B
SCSS
Raw Normal View History

2019-05-29 21:48:44 +02:00
.splash {
width: 100vw;
height: 100vh;
align-items: center;
background-color: var(--color-background);
display: flex;
flex-direction: column;
2019-05-29 21:48:44 +02:00
justify-content: center;
overflow: hidden;
}
2019-06-05 06:14:15 +02:00
// .splash__actions {
2019-06-11 20:10:58 +02:00
// margin-top: var(--spacing-medium);
2019-06-05 06:14:15 +02:00
// align-items: center;
// }
2019-05-29 21:48:44 +02:00
.splash__button {
border-bottom: 1px solid $lbry-white;
color: $lbry-white;
transition: none;
&:hover {
border-bottom: 1px solid $lbry-blue-1;
color: $lbry-blue-1;
}
}
.splash__details {
position: absolute;
font-size: 12px;
2019-05-29 21:48:44 +02:00
line-height: 1;
font-weight: 300;
color: $lbry-white;
margin-top: 2rem;
2019-05-29 21:48:44 +02:00
}
.splash__title {
position: absolute;
font-size: 40px;
line-height: 1;
font-weight: 700;
color: $lbry-white;
margin-top: -1rem;
}
.splash__controls {
position: fixed;
bottom: 30px;
right: 30px;
2019-05-29 21:48:44 +02:00
}
.splash__error {
position: absolute;
margin-top: 20rem;
2019-05-29 21:48:44 +02:00
box-shadow: var(--card-box-shadow) $lbry-gray-5;
2019-06-05 06:14:15 +02:00
}
.doodle {
position: fixed;
}