web/style.css

31 lines
488 B
CSS

:root {
--default-background: #eeccff;
}
html {
display: inline;
background-image: url("bg.jpg");
background-position: center top;
background-attachment: scroll;
background-size: cover;
}
body {
font-family: Inconsolata, monospace;
}
.block {
background-color: var(--default-background);
text-align: center;
padding: 0.8em;
margin: 1em 20% 1em 20%;
border-style: solid;
}
.text {
text-align: left;
padding: 0px 20% 0px 20%;
}