mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
39 lines
620 B
SCSS
39 lines
620 B
SCSS
#info-block {
|
|
display: flex;
|
|
width: 100%;
|
|
height: 100%;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-content: center;
|
|
|
|
.supertitle {
|
|
margin-left: 0.5rem;
|
|
font-size: 1.5rem;
|
|
font-weight: 100;
|
|
}
|
|
|
|
.title {
|
|
font-size: 4rem;
|
|
font-weight: 100;
|
|
margin-top: -1rem;
|
|
margin-bottom: -0.5rem;
|
|
}
|
|
|
|
.subtitle {
|
|
margin-left: 0.5rem;
|
|
font-size: 2rem;
|
|
font-weight: 100;
|
|
}
|
|
|
|
.comment {
|
|
margin-left: 1rem;
|
|
color: rgba(255, 255, 255, 0.75);
|
|
}
|
|
|
|
.description {
|
|
margin-left: 1.5rem;
|
|
margin-top: 0.5rem;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
}
|