Lots of changes

This commit is contained in:
Joseph Hutchinson
2018-03-16 15:12:19 -04:00
parent 6d6a70e705
commit 7a09a9d3e2
3 changed files with 58 additions and 17 deletions

View File

@@ -14,18 +14,51 @@ strong {
font-family: 'LatoLatinWebHeavy';
font-weight: normal
}
header > h1 {
font-size: 2em;
line-height: 1.2em;
margin-bottom: 0;
}
.post-date {
color: #7A7B7C;
font-size: .8em
}
article > p:first-of-type::first-letter {
font-family: 'LatoLatinWebHeavyItalic';
float: left;
font-size: 3em;
line-height: 1em;
padding-right: 0.1em;
margin-bottom: -0.2em;
/* initial-letter: 2; Maybe someday*/
}
img {
width: 100%;
height: auto
}
.content-container {
margin: 0 auto;
display: flex;
justify-content: center;
padding: 0 20px;
}
.article-body {
.content {
max-width: 700px;
width: 100%;
margin: 0 auto;
}
.card-container {
max-width: 1000px;
}
.card-columns {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: stretch;
box-sizing: content-box;
}
.card {
background-color: white;
width: 300px;
margin: 5px;
padding: 10px;
}
blockquote {
border-left: 5px solid #D1D1D1;
@@ -40,6 +73,9 @@ ul,
ol {
padding-left: 35px
}
li ul, li ol {
padding-left: 20px;
}
li > p {
margin: 0px;
}