| <!-- | |
| The shared-styles style module. | |
| Shared style information that can be imported into any element. | |
| To use | |
| <style include="shared-styles"></style> | |
| inside the template tag of a custom element. | |
| Attributes: | |
| None | |
| Methods: | |
| None | |
| Events: | |
| None | |
| Mailboxes: | |
| None | |
| --> | |
| <dom-module id="shared-styles"> | |
| <template> | |
| <style> | |
| * { | |
| font-family: Roboto, Arial, sans-serif; | |
| font-size: 15px; | |
| } | |
| a { | |
| color: #0072ff; | |
| cursor: pointer; | |
| font-weight: bold; | |
| } | |
| iron-icon { | |
| color: #5098c9; | |
| } | |
| </style> | |
| </template> | |
| </dom-module> |