revert style back to white-on-gray

This commit is contained in:
Kyle Mahan 2016-01-31 08:55:44 -08:00
parent 3d7607b7e1
commit 73b9b23064
4 changed files with 20 additions and 16 deletions

View file

@ -360,8 +360,9 @@ th {
/* Subtlety of Hue */
body {
font: 12pt Helvetica, Arial, sans-serif;
/*background: $athens-gray;*/
background: #f4f4f4;
line-height: 1.4em;
background: #ECEBF0;
/*background: #f4f4f4;*/
padding-top: 1em; }
a {
@ -377,7 +378,7 @@ p:last-child {
margin-bottom: 0; }
header, main {
max-width: 600px;
max-width: 800px;
margin: 0 auto; }
header {
@ -410,13 +411,14 @@ ul#navigation {
display: none; }
article {
margin-bottom: 2em;
/*box-shadow: $box-shadow;
background-color: white;*/
margin-bottom: 1em;
box-shadow: 0 0 2px #687D77;
background-color: white;
border-radius: 3px;
padding: 0.5em; }
article.reply-context {
margin-bottom: 0;
background-color: #e0e0e0;
background-color: #f3f3f3;
color: #555; }
article.reply-context .content img {
max-height: 240px;

File diff suppressed because one or more lines are too long

View file

@ -17,8 +17,9 @@ $box-shadow: 0 0 2px $sirocco;
body {
font: 12pt $body-font;
/*background: $athens-gray;*/
background: #f4f4f4;
line-height: 1.4em;
background: $athens-gray;
/*background: #f4f4f4;*/
padding-top: 1em;
}
@ -43,7 +44,7 @@ p {
}
header, main {
max-width: 600px;
max-width: 800px;
margin: 0 auto;
}
@ -86,14 +87,15 @@ ul#navigation {
}
article {
margin-bottom: 2em;
/*box-shadow: $box-shadow;
background-color: white;*/
margin-bottom: 1em;
box-shadow: $box-shadow;
background-color: white;
border-radius: 3px;
padding: 0.5em;
&.reply-context {
margin-bottom: 0;
background-color: #e0e0e0;
background-color: #f3f3f3;
color: #555;
.content img {
max-height: 240px;

View file

@ -8,7 +8,7 @@
<link rel="shortcut icon" href="{{ url_for('static', filename='logo.png') }}"/>
<link rel="apple-touch-icon" href="{{ url_for('static', filename='logo.png') }}"/>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css', version='2016-01-30') }}"/>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css', version='2016-01-31') }}"/>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"/>
<script src="//code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="{{ url_for('static', filename='moment.min.js') }}"></script>