Created
May 2, 2020 10:13
-
-
Save YuzuruSano/4e8db50429f041832b3628ef0a970417 to your computer and use it in GitHub Desktop.
post_style.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.post_content{ | |
header { | |
margin-bottom: 55px; | |
} | |
h2 { | |
font-size : 18px; | |
line-height : 33.25px; | |
letter-spacing : 0.72px; | |
color : #1C3775; | |
} | |
h1, h2, h3, h4, h5, h6 { | |
+ * { | |
margin-top: 20px; | |
} | |
} | |
p { | |
font-size : 15px; | |
line-height : 32px; | |
letter-spacing : 0.6px; | |
color : #4B667D; | |
} | |
p + * { | |
margin-top: 15px; | |
} | |
figure + *, | |
img + * { | |
margin-top: 15px; | |
} | |
table { | |
+ * { | |
margin-top: 20px; | |
} | |
th,td { | |
padding:5px 8px; | |
border: #c6cddd solid 1px; | |
} | |
} | |
dl { | |
dt { | |
font-weight: bold; | |
} | |
dd { | |
margin-top: 15px; | |
} | |
dd + * { | |
margin-top: 15px; | |
} | |
+ * { | |
margin-top: 20px; | |
} | |
} | |
ul, ol { | |
list-style-position:inside ; | |
+ * { | |
margin-top: 20px; | |
} | |
li { | |
padding-top: 5px; | |
} | |
ul,ol { | |
padding-left: 15px; | |
} | |
} | |
ul { | |
list-style-type: circle; | |
} | |
ol { | |
list-style-type: decimal; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment