homepage/assets/css/default.css

119 lines
1.6 KiB
CSS
Raw Normal View History

2015-03-24 12:13:18 -06:00
/* http://www.colourlovers.com/palette/92095/Giant_Goldfish */
html {
background-color: white;
2017-07-09 18:13:41 -06:00
background-image: url("../images/bg.jpg");
2015-03-24 12:13:18 -06:00
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
background-position: center;
2015-03-24 12:13:18 -06:00
}
body {
2015-03-24 12:13:18 -06:00
background-color: rgba(255, 255, 255, 0.8);
margin: auto;
padding: 1em;
border-radius: 1em;
max-width: 35em;
2017-07-09 18:13:41 -06:00
font-family: "Roboto", sans-serif;
}
2008-10-27 15:57:45 -06:00
2017-07-09 18:13:41 -06:00
#title, td.main {
2015-03-24 12:13:18 -06:00
background-color: #e0e4cc;
2015-03-20 18:32:15 -06:00
border-radius: 0.5em;
padding: 0em 1em;
margin-top: 0;
2008-10-27 15:57:45 -06:00
}
h1, h2, h3, h4, h5, h6 {
2015-03-24 12:13:18 -06:00
color: #fa6900;
2008-10-27 15:57:45 -06:00
}
a {
2015-03-24 12:13:18 -06:00
color: #38d;
2008-10-27 15:57:45 -06:00
text-decoration: none;
}
a:visited {
2015-03-24 15:19:01 -06:00
color: #579;
2008-10-27 15:57:45 -06:00
}
a:hover {
2015-03-24 12:13:18 -06:00
color: #f83;
2008-10-27 15:57:45 -06:00
}
2012-09-11 23:23:44 -06:00
img {
max-width: 60%;
}
2015-03-24 12:13:18 -06:00
img.face {
margin: 1em;
width: 10em;
}
2008-10-27 15:57:45 -06:00
pre {
background: #e0e4cc;
2014-10-26 20:06:25 -06:00
overflow-x: auto;
2008-10-27 15:57:45 -06:00
}
blockquote {
background: #e0e4cc;
padding: 0.1em 1em;
border-radius: 0.4em;
}
2017-07-09 18:13:41 -06:00
footer {
clear: both;
2010-05-28 18:03:09 -06:00
border-top: solid black 1px;
2008-10-27 15:57:45 -06:00
}
2017-07-09 18:13:41 -06:00
nav ul {
padding: 0;
margin: 0;
}
nav li {
2008-10-27 15:57:45 -06:00
display: inline;
2017-07-09 18:13:41 -06:00
padding-right: 1em;
2008-10-27 15:57:45 -06:00
}
2017-07-09 18:13:41 -06:00
.left {
float: left;
}
.right {
float: right;
}
/* Formatting */
p, li, dd {
text-align: left;
}
body > p {
text-indent: 1.5em;
}
h1 + p, h2 + p, h3 + p, h4 + p, h5 + p, h6 + p, ol + p, ul + p, pre + p, blockquote + p, img + p {
text-indent: 0;
}
h1, h2, h3, h4, h5, h6 {
font-weight: bolt;
}
pre {
margin: 1em 2em;
padding: 1em;
border: solid black 1px;
}
.figure {
float: right;
padding: 0.25em;
margin: 0.5em;
font-size: small;
border: solid black 1px;
}
#timestamp {
font-size: small;
text-indent: inherit;
2008-10-27 15:57:45 -06:00
}