Compare commits

..

No commits in common. "35ea94185b4089b174865225862e6750f2f79504" and "be6d96273c0d28301acfff73f5c1624a98b4ccdf" have entirely different histories.

4 changed files with 34 additions and 25 deletions

View File

@ -58,7 +58,6 @@ div.header a {
}
div.content {
font-size: 11pt;
padding: 0 1em;
line-height: 1.5em;
}
@ -115,10 +114,6 @@ img {
max-width: 50% !important;
}
.img-75 {
max-width: 75% !important;
}
.img-center {
display: block;
margin-left: auto;

View File

@ -2,11 +2,11 @@
@import '/static/css/base.css';
html {
color: #DDD;
color: #CCC;
}
body {
background: #090909;
background: black;
}
strong {
@ -14,7 +14,7 @@ strong {
}
.site-wrap {
background: black;
background: #111;
border: 1px solid #222;
border-top: none;
@ -22,7 +22,7 @@ strong {
}
h1, h2, h3, h4, h5, h6 {
color: #811610;
color: #B31D15;
}
a:link, a:visited {
@ -31,8 +31,8 @@ a:link, a:visited {
}
a:hover, a:active {
color: #811610;
border-bottom: 1px dotted #811610;
color: #B31D15;
border-bottom: 1px dotted #B31D15;
}
div.header {
@ -62,3 +62,12 @@ blockquote {
background-color: rgba(255, 255, 255, 0.1);
border: 1px solid #333;
}
figure {
background: #222;
border: 1px solid #333;
}
figcaption {
color: #BBB;
}

View File

@ -6,7 +6,7 @@ html {
}
body {
background: #F6F6F6;
background: #999;
}
strong {
@ -16,7 +16,7 @@ strong {
.site-wrap {
background: white;
border: 1px solid #DDD;
border: 1px solid #ddd;
border-top: none;
border-bottom: none;
}
@ -36,29 +36,38 @@ a:hover, a:active {
}
div.header {
background: #DDD;
border-bottom: 1px solid #DDD;
color: #444;
background: #EEE;
border-bottom: 1px solid #CCC;
color: #666;
}
div.header a {
color: #444;
color: #666;
}
table, th, td {
border: 1px solid #CCC;
border: 1px solid #ccc;
}
th {
background: #CCC;
background: #eee;
}
blockquote {
background-color: rgba(120, 120, 120, 0.1);
border: 1px solid #DDD;
border: 1px solid #CCC;
}
.img-frame {
background-color: rgba(0, 0, 0, 0.1);
border: 1px solid #CCC;
border: 1px solid #BBB;
}
figure {
background: #EFEFEF;
border: 1px solid #CCCCCC;
}
figcaption {
color: #777777;
}

View File

@ -6,7 +6,3 @@
.img-50 {
max-width: 50% !important;
}
.img-75 {
max-width: 75% !important;
}