forked from are0h/TheBadSpace
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
732 B
CSS
38 lines
732 B
CSS
section[role="start"] {
|
|
background-image: url("../../images/global/special-trash.jpg");
|
|
height: 100%;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
section[role="start"] div {
|
|
background: var(--primary);
|
|
width: 400px;
|
|
border-radius: 3px;
|
|
padding: 5px;
|
|
}
|
|
|
|
section[role="start"] span[role="title"] {
|
|
font-size: 100px;
|
|
line-height: 80px;
|
|
font-weight: bold;
|
|
color: var(--secondary);
|
|
}
|
|
|
|
section[role="start"] p {
|
|
color: var(--white);
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
margin: 6px auto;
|
|
font-size: 1.87em;
|
|
}
|
|
|
|
section[role="start"] p a {
|
|
color: var(--highlight);
|
|
margin-top: 5px;
|
|
}
|