Last active
May 16, 2018 15:13
-
-
Save Ayc0/b4fa073e853da6eeef8093fe0976291f to your computer and use it in GitHub Desktop.
adr poly
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
| body { | |
| max-width: 45em; | |
| margin: auto; | |
| padding: 1em; | |
| font-family: Lato; | |
| /* background-color: #def4c6; */ | |
| } | |
| h1, h2 { | |
| color: #16A085; | |
| } | |
| h1 { | |
| font-weight: 900; | |
| } | |
| h2 { | |
| font-weight: 700; | |
| } | |
| /*16a085 73e2a7 def4c6 fe5e41 0b0500*/ | |
| p { | |
| color: #0b0500; | |
| } | |
| a { | |
| margin-left: 10px; | |
| color: #fe5e41; | |
| position: relative; | |
| } | |
| a:before, a:after { | |
| position: absolute; | |
| left: -10px; | |
| width: 5px; | |
| bottom: -1px; | |
| height: 0.58em; | |
| content: ""; | |
| border-left: solid 2px; | |
| transform: rotate(45deg); | |
| } | |
| a:after { | |
| bottom: calc(-1px + 0.56em); | |
| transform: rotate(-45deg); | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment