38 lines
813 B
CSS
38 lines
813 B
CSS
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
|
"Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
|
|
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
}
|
|
|
|
.top_header {
|
|
position: relative;
|
|
height: 150px;
|
|
/*background: rgb(70, 70, 124);*/
|
|
overflow: hidden;
|
|
object-fit: cover;
|
|
}
|
|
|
|
|
|
.top_header_text {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
color: rgba(255,255,255,0.75);
|
|
font-weight: bold;
|
|
font-size: 1em;
|
|
line-height: 2em;
|
|
/*background: rgba(0, 0, 0, 0.75);*/
|
|
background: #121212;
|
|
opacity: 0.95;
|
|
width: 100%;
|
|
text-decoration: none;
|
|
}
|
|
|
|
article {
|
|
font-size: 1.1rem;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
#footer-data, #footer-data-secondary {
|
|
line-height: 2em;
|
|
} |