decentraland-ui
Version:
Decentraland's UI components and styles
65 lines (55 loc) • 1.29 kB
CSS
.Navbar-story-container {
position: absolute;
overflow: hidden;
width: 100%;
height: 100vh;
left: 0;
top: 0;
}
.Navbar-story-container .color-layer {
width: 100%;
height: 100%;
background-image: linear-gradient(to bottom, #060d2b, #132d7d 52%, #9763c1);
position: absolute;
}
.Navbar-story-container .over-gradient .ui.header {
color: white;
}
.Navbar-story-container .homepage-pyramid {
background: url('../../assets/pyramid.svg');
background-size: contain;
background-repeat: no-repeat;
}
.Navbar-story-container .homepage-pyramid.small {
width: 400px;
height: 400px;
margin-left: -100px;
margin-top: 250px;
filter: var(--pyramid-small-brightness);
}
.Navbar-story-container .homepage-pyramid.large {
width: 1000px;
height: 1000px;
margin-top: -200px;
margin-left: 300px;
filter: var(--pyramid-large-brightness);
}
.Navbar-story-container .dcl.Navbar .dcl.hero {
background-color: #f2f2f5;
}
.Navbar-story-container .background {
background-image: url(../../assets/background.png);
background-repeat: no-repeat;
background-size: cover;
background-position: 50%;
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
}
@media (max-width: 768px) {
.Navbar-story-container {
width: 100%;
}
}