bedstead/bedstead.css
Ben Harris 6e1e1462dd Web site colours: swap :link and :visited.
It's conventional for :visited to be the darker shade.
2019-02-02 19:39:39 +00:00

53 lines
950 B
CSS

/* This is the stylesheet for the Bedstead Web pages. */
/* Make Bedstead usable through font-* properties. */
@import url(bedstead-faces.css);
/* Use Bedstead with proportional spacing for everything. */
body {
font-family: Bedstead;
font-size: 20px;
font-feature-settings: "palt";
font-synthesis: none;
margin-left: 24px;
}
/* Except where it's conventional to use a monospaced version. */
kbd, code, tt, pre {
font-family: Bedstead, monospace;
font-feature-settings: normal;
}
h2 {
font-size: 2em;
font-stretch: ultra-condensed;
font-weight: inherit;
margin-top: 0.5em;
margin-bottom: 0.5em;
}
h1, h2 {
margin-left: -24px;
}
ul {
list-style-type: "\2022 ";
}
img {
max-width: 100%;
}
/* Colours that make Bedstead look better (imitating my green monitor) */
body {
background-color: #031109;
color: #33ff88;
}
:link {
color: #38bf66;
}
:visited {
color: #22aa5b;
}