Last active
November 28, 2016 21:14
-
-
Save EliJDonahue/9e6312387755b8be004fbd5e3a49ecb0 to your computer and use it in GitHub Desktop.
CSS for custom Aras Tech Doc style
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
| /**** Define Font Families ***************/ | |
| @import url('https://fonts.googleapis.com/css?family=Raleway:900,600,400,400i'); | |
| @import url('https://fonts.googleapis.com/css?family=Lato:400,700,400i,700i'); | |
| /**** Assign Font Styles ***************/ | |
| @page { | |
| @bottom-right { | |
| font-family: 'Lato', sans-serif; | |
| font-weight: regular; | |
| color: #1c1c1c; | |
| font-size: 10pt; | |
| } | |
| } | |
| body { | |
| text-align: left; | |
| font-family: 'Lato', sans-serif; | |
| font-weight: regular; | |
| color: #1c1c1c; | |
| font-size: 10pt; | |
| } | |
| .Standard-Doc .Title { | |
| font-family: 'Raleway', sans-serif; | |
| font-weight: 900; | |
| font-size: 32pt; | |
| text-align: center; | |
| color: #18314F; | |
| margin-bottom: 0px; | |
| } | |
| .Standard-Doc .Subtitle { | |
| font-family: 'Raleway', sans-serif; | |
| font-weight: 600; | |
| font-size: 24pt; | |
| margin-top: 0px; | |
| text-align: center; | |
| color: #40798C; | |
| } | |
| .Standard-Doc .Section>.Title { | |
| font-family: 'Raleway', sans-serif; | |
| font-weight: 600; | |
| font-size: 24pt; | |
| font-style: normal; | |
| padding-top: 10px; | |
| padding-bottom: 10px; | |
| text-align: left; | |
| color: #18314F; | |
| border-bottom: 5px double; | |
| } | |
| .Standard-Doc .Section>.Subtitle { | |
| font-family: 'Raleway', sans-serif; | |
| font-weight: 400; | |
| font-size: 16pt; | |
| font-style: italic; | |
| text-align: left; | |
| color: #40798C; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment