42 lines
525 B
CSS
42 lines
525 B
CSS
---
|
|
---
|
|
|
|
body{
|
|
padding:0;
|
|
margin:0;
|
|
}
|
|
|
|
.color-space{
|
|
height:25vh;
|
|
|
|
{% if page.header_red %}
|
|
background-color: var(--color-red)!important;
|
|
{% else %}
|
|
background-color: var(--color-purple)!important;
|
|
{% endif %}
|
|
}
|
|
|
|
.title-container{
|
|
margin-top: 6rem;
|
|
|
|
}
|
|
|
|
|
|
.highlight{
|
|
background-color: var(--light-gray);
|
|
border-radius:5px;
|
|
padding: 3px;
|
|
margin-bottom:0;
|
|
}
|
|
|
|
img{
|
|
max-width:100%;
|
|
}
|
|
|
|
.center{
|
|
text-align: center;
|
|
}
|
|
|
|
.foot-info a {
|
|
color: var(--color-dark-purple);
|
|
} |