1
0
Fork 0
tildesite/archivio/legacy/000/showcase/css/lanhful.css

57 lines
861 B
CSS

:root {
--blue: #0000EE;
--light-blue: rgba(200, 240, 239, 1.0);
--red: rgba(200, 15, 16, 1.0);
}
body {
background-image: url("../gif/rain.gif");
/* The original is in ../gif/waterfall.gif */
background-size: cover;
background-attachment: fixed;
}
.site {
max-width: 80ch;
margin: 5% auto;
background-color: var(--light-blue);
border: 2px solid black;
padding: 2em;
font-family: "Arial", sans-serif;
}
::selection {
color: var(--blue);
background-color: white;
}
a {
color: var(--blue);
}
a:visited {
color: var(--red);
/* In the original, there is no
change to the standard behaviour, but
the result is not very readable */
}
a:hover {
color: white;
background-color: var(--red);
}
.post-date {
font-size: smaller;
}
.post-text {
text-align: justify;
hyphens: auto;
}
img {
display: block;
width: 90%;
margin: auto auto;
}