blob: 1a5ecd723dfa428d02758ea71dd4ef00551d0dea [file]
<!--
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>