Last active
November 16, 2016 01:29
-
-
Save kubosho/c402b875d4eb4c45cba7ede7127ca830 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| /* License: CC0 */ | |
| .article__mainImg { | |
| position: relative; | |
| } | |
| .article__mainImg::before, | |
| .article__mainImg::after { | |
| display: block; | |
| position: absolute; | |
| top: 10px; | |
| width: 4rem; | |
| height: 20rem; | |
| padding: 10px; | |
| padding-right: 30px; | |
| border: 1px solid #333; | |
| border-radius: 50%; | |
| background-color: #fff; | |
| font-family: "游明朝", serif; | |
| font-weight: bold; | |
| writing-mode: vertical-rl; | |
| } | |
| .article__mainImg::before { | |
| content: "一体いつから───────"; | |
| right: 180px; | |
| } | |
| .article__mainImg::after { | |
| content: "テストを書くだけで品質が上がると錯覚していた?"; | |
| left: 240px; | |
| width: 6rem; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment