2018-02-10 22:25:01 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2018-02-10 22:25:01 +00:00
|
|
|
a,a:visited,a:link,a:focus {
|
2020-07-05 00:58:17 +00:00
|
|
|
text-decoration: none;
|
2018-02-11 04:21:13 +00:00
|
|
|
color: darkgrey;
|
2020-07-05 00:58:17 +00:00
|
|
|
transition: color 0.5s;
|
2018-02-10 22:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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 {
|
2018-02-11 04:21:13 +00:00
|
|
|
color: var(--hilite);
|
2020-07-05 00:58:17 +00:00
|
|
|
transition: color 0.5s;
|
2018-02-10 22:25:01 +00:00
|
|
|
}
|
|
|
|
|
2018-02-11 04:21:13 +00:00
|
|
|
header div {
|
2018-02-10 22:25:01 +00:00
|
|
|
color: darkgrey; letter-spacing: 0.8em;
|
|
|
|
}
|
|
|
|
|
2020-07-05 00:58:17 +00:00
|
|
|
header span {
|
2020-07-04 19:55:25 +00:00
|
|
|
color: white;
|
2020-07-05 00:58:17 +00:00
|
|
|
letter-spacing: 0.9em;
|
|
|
|
transition: color 2s;
|
2020-07-04 19:55:25 +00:00
|
|
|
}
|
|
|
|
|
2020-07-05 00:58:17 +00:00
|
|
|
header a:hover > div > span {
|
|
|
|
color: var(--hilite);
|
|
|
|
transition: color 1s;
|
2018-02-10 22:25:01 +00:00
|
|
|
}
|
|
|
|
|
2020-06-15 02:25:14 +00:00
|
|
|
footer #email {
|
|
|
|
color: darkgrey;
|
|
|
|
}
|
|
|
|
|
2018-02-11 04:21:13 +00:00
|
|
|
nav {
|
2018-02-10 22:25:01 +00:00
|
|
|
font: 1.0em "Lucida Sans Unicode", "Lucida Grande", sans-serif;
|
2018-02-11 04:21:13 +00:00
|
|
|
color: darkgrey; letter-spacing: 0.6em; line-height: 2.0em;
|
2018-02-10 22:25:01 +00:00
|
|
|
}
|
|
|
|
|
2018-02-11 04:21:13 +00:00
|
|
|
#about p {
|
2018-02-10 22:25:01 +00:00
|
|
|
line-height: 1.5em; letter-spacing: 0.1em; text-align: left; color: white;
|
|
|
|
padding: 0em 1em;
|
|
|
|
}
|
|
|
|
|
2019-01-21 19:19:14 +00:00
|
|
|
/* Article Titles */
|
2018-02-11 04:21:13 +00:00
|
|
|
h1 {
|
2018-02-10 22:25:01 +00:00
|
|
|
padding: 10px;
|
|
|
|
font: 1.2em "Lucida Sans Unicode", "Lucida Grande", sans-serif;
|
2019-01-21 19:19:14 +00:00
|
|
|
color: darkgrey; letter-spacing: 0.25em;
|
2018-02-10 22:25:01 +00:00
|
|
|
}
|
|
|
|
|
2018-02-11 04:21:13 +00:00
|
|
|
h1::first-letter {
|
2018-02-10 22:25:01 +00:00
|
|
|
font: 1.2em "Lucida Sans Unicode", "Lucida Grande", sans-serif;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2019-01-21 19:19:14 +00:00
|
|
|
/* Article section Header, left-aligned */
|
2018-02-11 04:21:13 +00:00
|
|
|
h2 {
|
2018-02-10 22:25:01 +00:00
|
|
|
text-align: left;
|
|
|
|
padding: 10px;
|
|
|
|
font: 1.0em "Lucida Sans Unicode", "Lucida Grande", sans-serif;
|
|
|
|
color: darkgrey; letter-spacing: 0.6em;
|
|
|
|
}
|
|
|
|
|
2021-11-29 01:27:25 +00:00
|
|
|
/* Article section Sub-Header, left-aligned */
|
2018-02-11 04:21:13 +00:00
|
|
|
h3 {
|
2021-11-29 01:27:25 +00:00
|
|
|
text-align: left;
|
2018-02-10 22:25:01 +00:00
|
|
|
padding: 10px;
|
2021-11-29 01:27:25 +00:00
|
|
|
margin-left: 10px;
|
|
|
|
font: 0.85em "Lucida Sans Unicode", "Lucida Grande", sans-serif;
|
|
|
|
color: darkgrey; letter-spacing: 0.5em;
|
2018-02-10 22:25:01 +00:00
|
|
|
}
|
|
|
|
|
2019-01-21 19:19:14 +00:00
|
|
|
/* Article footer and tags */
|
2018-02-11 04:21:13 +00:00
|
|
|
h4 {
|
2018-02-10 22:25:01 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2019-01-21 19:19:14 +00:00
|
|
|
/* Footer links and section titles */
|
2018-02-11 04:21:13 +00:00
|
|
|
h5 {
|
2019-01-21 19:19:14 +00:00
|
|
|
text-align: right;
|
2018-02-11 04:21:13 +00:00
|
|
|
padding: 10px;
|
2019-01-21 19:19:14 +00:00
|
|
|
font: 1.0em "Lucida Sans Unicode", "Lucida Grande", sans-serif;
|
|
|
|
color: darkgrey; letter-spacing: 0.6em;
|
|
|
|
margin-top: 0; margin-bottom: 0;
|
2018-02-11 04:21:13 +00:00
|
|
|
}
|
|
|
|
|
2019-01-21 19:19:14 +00:00
|
|
|
/* Category button */
|
|
|
|
/* TODO: Change this to a different tag */
|
2018-02-11 04:21:13 +00:00
|
|
|
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 {
|
2018-02-10 22:25:01 +00:00
|
|
|
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
|
|
|
}
|