64 lines
814 B
CSS
64 lines
814 B
CSS
/*
|
|
|
|
I observe, and adapt, a colour-scheme called Solarized, which is
|
|
apparently by a Ethan Schoonover.
|
|
|
|
*/
|
|
|
|
:root {
|
|
/* a rose by any other name smells as sweet */
|
|
--base3: #fdf6e3;
|
|
--bg: #fdf6e3;
|
|
|
|
/* other flowers */
|
|
--base2: #eee8d5;
|
|
--base0: #839496;
|
|
--baseEm: #586e75;
|
|
|
|
--blue: #268bd2;
|
|
--green: #859900;
|
|
--cyan: #2aa198;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--base3);
|
|
font-family: serif;
|
|
color: var(--base0);
|
|
}
|
|
|
|
a:link {
|
|
background-color: var(--base2);
|
|
color: var(--blue);
|
|
}
|
|
|
|
/* mouse over link*/
|
|
a:hover {
|
|
color: var(--green);
|
|
}
|
|
|
|
a:visited {
|
|
color: var(--cyan);
|
|
}
|
|
|
|
h3 {
|
|
color: var(--baseEm);
|
|
}
|
|
|
|
/* design-ey stuff */
|
|
|
|
#youkoso, #it_says_menu {
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
|
|
li + li, div + div {
|
|
margin-top: 30px;
|
|
}
|
|
|
|
#nav, #some_header {
|
|
text-align: center;
|
|
}
|
|
|
|
#links {
|
|
font-style: italic;
|
|
} |