1

Update inline code bg

This commit is contained in:
Evan Pratten 2020-06-15 11:00:24 -04:00
parent 19bb076b69
commit 858555ae84
No known key found for this signature in database
GPG Key ID: 93AC7B3D071356D3
3 changed files with 27 additions and 7 deletions

View File

@ -0,0 +1,11 @@
---
layout: post
title: "Giving an ATmega32u4 UART capability"
description: "Sometimes a CPU has too many extra features"
date: 2020-06-07 14:15:00
categories: avr 32u4 usart lowlevel
redirect_from:
- /post/61f9kjlf/
- /61f9kjlf/
---

View File

@ -3,7 +3,7 @@ layout: post
title: "Flashing code to a 32u4 chip"
description: "Notes for my future self"
date: 2020-06-05 13:23:00
categories: avr 32u4
categories: avr 32u4 lowlevel
redirect_from:
- /post/65f9kjl4/
- /65f9kjl4/

View File

@ -280,10 +280,10 @@ a h5 {
background-color: #fff;
}
.title.container{
text-align:center;
padding-top:15px;
padding-bottom:15px;
.title.container {
text-align: center;
padding-top: 15px;
padding-bottom: 15px;
padding-left: 20px;
font-family: 'IBM Plex Sans', sans-serif;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
@ -292,8 +292,8 @@ a h5 {
background-color: #fff;
}
.post-date{
color:rgba(182, 182, 182, 0.602);
.post-date {
color: rgba(182, 182, 182, 0.602);
}
#advert {
@ -516,4 +516,13 @@ pre {
display: block;
height: 40px;
margin-top: -40px;
}
code.highlighter-rouge {
padding-left: 6px;
padding-right: 6px;
overflow: auto;
background-color: #f6f8fa;
border-radius: 3px;
color: #212529;
}