add style for unsorted lists and block quotes

This commit is contained in:
Robert Kaussow 2019-01-05 23:26:28 +01:00
parent ea09ee7261
commit 40dddff17b
3 changed files with 91 additions and 1 deletions

View File

@ -202,6 +202,54 @@ html{
white-space:nowrap;
}
.post-content blockquote {
font-size: 1.1em;
margin:40px auto;
font-family:Open Sans;
font-style:italic;
color: #555555;
padding:0.2em 30px 0.2em 55px;
border-left:4px solid #dcdfe3 ;
line-height:1.6;
position: relative;
background:#f3f3f3;
}
.post-content blockquote::before {
font-family:Arial;
content: "\201C";
color:#dcdfe3;
font-size:3.5em;
position: absolute;
left: 10px;
top:-10px;
}
.post-content blockquote::after {
content: '';
}
.post-content ul {
list-style: none;
margin:20px auto;
padding-left: 60px;
}
.post-content ul li::before {
content: "\203A";
font-size: 1.5em;
font-weight: bold;
width: 1em;
position: absolute;
margin-left: -20px;
margin-top: -8px;
color: #505050
}
.post-content li {
margin: 10px auto;
}
/************************
Global Blog Footer
*************************/

View File

@ -191,6 +191,48 @@ html {
display: inline-block;
white-space: nowrap
}
.post-content blockquote {
font-size: 1.1em;
margin: 40px auto;
font-family: Open Sans;
font-style: italic;
color: #555;
padding: .2em 30px .2em 55px;
border-left: 4px solid #dcdfe3;
line-height: 1.6;
position: relative;
background: #f3f3f3
}
.post-content blockquote::before {
font-family: Arial;
content: "\201C";
color: #dcdfe3;
font-size: 3.5em;
position: absolute;
left: 10px;
top: -10px
}
.post-content blockquote::after {
content: ''
}
.post-content ul {
list-style: none;
margin: 20px auto;
padding-left: 60px
}
.post-content ul li::before {
content: "\203A";
font-size: 1.5em;
font-weight: 700;
width: 1em;
position: absolute;
margin-left: -20px;
margin-top: -8px;
color: #505050
}
.post-content li {
margin: 10px auto
}
.site-footer {
width: 100%;
background: #2f333e;

File diff suppressed because one or more lines are too long