color changed for pre and blockquote
This commit is contained in:
parent
645bf2fc30
commit
31cdf6303b
2 changed files with 15 additions and 3 deletions
|
@ -37,7 +37,8 @@ blockquote {
|
||||||
margin: 1em 1em;
|
margin: 1em 1em;
|
||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
/*border-left: 10px solid white;*/
|
/*border-left: 10px solid white;*/
|
||||||
border-left: 10px solid #444444;
|
border-left: 10px solid #daaa55;
|
||||||
|
background-image: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.1));
|
||||||
}
|
}
|
||||||
|
|
||||||
pre, code {
|
pre, code {
|
||||||
|
@ -53,12 +54,17 @@ pre {
|
||||||
/* background-color: #a8a8a8;*/
|
/* background-color: #a8a8a8;*/
|
||||||
/*border-bottom: 1px solid #555;*/
|
/*border-bottom: 1px solid #555;*/
|
||||||
border: 1px solid #555;
|
border: 1px solid #555;
|
||||||
background-color: #444444;
|
/*background-color: #444444;*/
|
||||||
|
|
||||||
|
/* ubuntu terminal background color */
|
||||||
|
background: #380c2a;
|
||||||
color: #CCCCCC;
|
color: #CCCCCC;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
width: 90%;
|
width: 90%;
|
||||||
margin: 1em 1em;
|
margin: 1em 1em;
|
||||||
padding: 5px 10px;
|
padding: 5px 10px;
|
||||||
|
border-radius: 5px;
|
||||||
|
box-shadow: 3px 3px 6px black;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul, li, ol { margin: 0; padding: 0 }
|
ul, li, ol { margin: 0; padding: 0 }
|
||||||
|
@ -273,6 +279,12 @@ ol li, ul li { padding-bottom: 0.9em }
|
||||||
|
|
||||||
.entry p { font-size: 16px }
|
.entry p { font-size: 16px }
|
||||||
|
|
||||||
|
.entry-title {
|
||||||
|
/*color: #26a269;*/
|
||||||
|
/* ubuntu color background term color: #380c2a; */
|
||||||
|
color: #daaa55;
|
||||||
|
}
|
||||||
|
|
||||||
#main .entrytitle {
|
#main .entrytitle {
|
||||||
font-family: Candara, 'Cataneo BT', 'book antiqua', georgia, garamond, times, 'times new roman';
|
font-family: Candara, 'Cataneo BT', 'book antiqua', georgia, garamond, times, 'times new roman';
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
{static_block}
|
{static_block}
|
||||||
{static}
|
{static}
|
||||||
<div id="{$id}" class="entry">
|
<div id="{$id}" class="entry">
|
||||||
<h2>{$subject}</h2>
|
<div class="entry-title"><h2>{$subject}</h2></div>
|
||||||
<p class="date">Published by {$author} on {$date|date_format:"%A, %B %e, %Y - %H:%M:%S"}</p>
|
<p class="date">Published by {$author} on {$date|date_format:"%A, %B %e, %Y - %H:%M:%S"}</p>
|
||||||
{$content|tag:the_content}
|
{$content|tag:the_content}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue