Squashed: add inline code formating
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2019-02-14 11:31:20 +01:00
parent d2570b1877
commit 12df9e9378
4 changed files with 25 additions and 10 deletions

View File

@ -134,6 +134,7 @@ html{
border-top:1px dashed #959595;
margin: 0 2em;
padding: 1.5em 0;
line-height: 1.5;
}
.post:first-child{
border:0;
@ -213,7 +214,6 @@ html{
color: #555555;
padding:0.2em 30px 0.2em 55px;
border-left:4px solid #dcdfe3 ;
line-height:1.6;
position: relative;
background:#f3f3f3;
}
@ -245,12 +245,12 @@ html{
width: 1em;
position: absolute;
margin-left: -20px;
margin-top: -8px;
margin-top: -3px;
color: #505050
}
.post-content li {
margin: 10px auto;
margin: 8px auto;
}
.post-figure {
@ -281,7 +281,7 @@ html{
padding: 1em 0;
}
.site-footer__block {
line-height:30px;
line-height: 2;
}
.site-footer__link {
color:#FFA31E;

View File

@ -4,6 +4,14 @@
text-decoration: underline;
}
.post-content p > code {
background-color: rgb(243, 243, 243);
font-family: DroidSans_Mono;
font-size: 0.9em;
margin: 0;
padding: .1em .3em;
}
.post-content a:hover,
.post-footer a:hover {
background:#0A539A;

View File

@ -127,7 +127,8 @@ html {
word-wrap: break-word;
border-top: 1px dashed #959595;
margin: 0 2em;
padding: 1.5em 0
padding: 1.5em 0;
line-height: 1.5
}
.post:first-child {
border: 0
@ -201,7 +202,6 @@ html {
color: #555;
padding: .2em 30px .2em 55px;
border-left: 4px solid #dcdfe3;
line-height: 1.6;
position: relative;
background: #f3f3f3
}
@ -229,11 +229,11 @@ html {
width: 1em;
position: absolute;
margin-left: -20px;
margin-top: -8px;
margin-top: -3px;
color: #505050
}
.post-content li {
margin: 10px auto
margin: 8px auto
}
.post-figure {
padding: .25rem;
@ -257,7 +257,7 @@ html {
padding: 1em 0
}
.site-footer__block {
line-height: 30px
line-height: 2
}
.site-footer__link {
color: #ffa31e;
@ -648,6 +648,13 @@ all and (max-width:710px) {
color: #0a539a;
text-decoration: underline
}
.post-content p > code {
background-color: #f3f3f3;
font-family: DroidSans_Mono;
font-size: .9em;
margin: 0;
padding: .1em .3em
}
.post-content a:hover,
.post-footer a:hover {
background: #0a539a;

File diff suppressed because one or more lines are too long