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

68 lines
1.2 KiB
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--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__button {
2019-11-22 22:13:00 +01:00
border-bottom: 1px solid black; //white;
color: black; //white;
2019-05-29 21:48:44 +02:00
transition: none;
&:hover {
2019-11-22 22:13:00 +01:00
border-bottom: 1px solid black; //blue-1;
color: black; //blue-1;
2019-05-29 21:48:44 +02:00
}
}
.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;
2019-11-22 22:13:00 +01:00
top: var(--spacing-large);
2019-08-09 19:12:28 +02:00
right: var(--spacing-large);
padding: var(--spacing-medium);
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
}
.splash__error {
position: absolute;
margin-top: 20rem;
2019-11-22 22:13:00 +01:00
background-color: #fff;
2019-06-05 06:14:15 +02:00
}
.doodle {
position: fixed;
}