the-internet-vagabond-dot-com/src/styles/corrupt_typog.css

123 lines
2.5 KiB
CSS
Raw Normal View History

html {
font-family: sans-serif;
/* Change this value to any color you want */
--hilite: #8D3FC5;
}
2018-02-19 19:05:33 +00:00
ul,ol,p {
color: white;
}
a,a:visited,a:link,a:focus {
2020-07-05 00:58:17 +00:00
text-decoration: none;
color: darkgrey;
2020-07-05 00:58:17 +00:00
transition: color 0.5s;
}
a:hover {
2018-02-19 19:05:33 +00:00
color: white;
2020-07-05 00:58:17 +00:00
transition: color 0.5s;
2018-02-19 19:05:33 +00:00
}
nav a:hover {
color: var(--hilite);
2020-07-05 00:58:17 +00:00
transition: color 0.5s;
}
header div {
color: darkgrey; letter-spacing: 0.8em;
}
2020-07-05 00:58:17 +00:00
header span {
color: white;
2020-07-05 00:58:17 +00:00
letter-spacing: 0.9em;
transition: color 2s;
}
2020-07-05 00:58:17 +00:00
header a:hover > div > span {
color: var(--hilite);
transition: color 1s;
}
2020-06-15 02:25:14 +00:00
footer #email {
color: darkgrey;
}
nav {
font: 1.0em "Lucida Sans Unicode", "Lucida Grande", sans-serif;
color: darkgrey; letter-spacing: 0.6em; line-height: 2.0em;
}
#about p {
line-height: 1.5em; letter-spacing: 0.1em; text-align: left; color: white;
padding: 0em 1em;
}
/* Article Titles */
h1 {
padding: 10px;
font: 1.2em "Lucida Sans Unicode", "Lucida Grande", sans-serif;
color: darkgrey; letter-spacing: 0.25em;
}
h1::first-letter {
font: 1.2em "Lucida Sans Unicode", "Lucida Grande", sans-serif;
color: white;
}
/* Article section Header, left-aligned */
h2 {
text-align: left;
padding: 10px;
font: 1.0em "Lucida Sans Unicode", "Lucida Grande", sans-serif;
color: darkgrey; letter-spacing: 0.6em;
}
/* Article section Sub-Header, left-aligned */
h3 {
text-align: left;
padding: 10px;
margin-left: 10px;
font: 0.85em "Lucida Sans Unicode", "Lucida Grande", sans-serif;
color: darkgrey; letter-spacing: 0.5em;
}
/* Article footer and tags */
h4 {
text-align: center;
padding: 10px;
border-top: 1px solid darkgrey;
font: 0.8em "Lucida Sans Unicode", "Lucida Grande", sans-serif;
color: darkgrey; letter-spacing: 0.4em;
}
/* Footer links and section titles */
h5 {
text-align: right;
padding: 10px;
font: 1.0em "Lucida Sans Unicode", "Lucida Grande", sans-serif;
color: darkgrey; letter-spacing: 0.6em;
margin-top: 0; margin-bottom: 0;
}
/* Category button */
/* TODO: Change this to a different tag */
h6 {
padding: 10px;
font: 1.2em "Lucida Sans Unicode", "Lucida Grande", sans-serif;
color: darkgrey; letter-spacing: 0.5em; text-align: center;
border: 1px solid darkgrey;
}
article p {
padding: 0em 2em;
}
2020-06-14 20:44:06 +00:00
2020-06-15 00:54:59 +00:00
/* Inline code formatting */
2020-06-14 20:44:06 +00:00
article p code {
2020-06-15 00:54:59 +00:00
font: 1.05em monospace;
color: #ededed;
background-color: #2B2B2B;
padding: 0em 0.25em;
2020-06-14 20:44:06 +00:00
}