mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
32 lines
718 B
SCSS
32 lines
718 B
SCSS
.container {
|
|
background-image: linear-gradient(30deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, rgba(255, 255, 255, 0) 100%), url(images/Banner_Dark_Transparent.png);
|
|
background-size: cover;
|
|
background-position: center;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 1rem 1.5rem;
|
|
max-width: 56rem;
|
|
height: 9rem;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
|
|
backdrop-filter: blur(5px);
|
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
|
|
|
.info {
|
|
align-self: flex-end;
|
|
|
|
.title {
|
|
color: white;
|
|
font-weight: 100;
|
|
font-size: 2.25rem;
|
|
line-height: 2.5rem;
|
|
margin: 0;
|
|
}
|
|
|
|
.description {
|
|
color: grey;
|
|
}
|
|
}
|
|
}
|