forked from projects/thebadspace
e897453664
Began the process of getting the front end together by adding about and listing pages and applied some light styling to it doesn't look like garbage. Still need to turn on the indivial instance display pages, so that will be next.
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;
|
|
}
|