mirror of
https://github.com/Polymer/polymer.git
synced 2025-02-25 18:55:30 -06:00
19 lines
345 B
HTML
19 lines
345 B
HTML
<link rel="import" href="sub/style-import.html">
|
|
<dom-module id="remote-styles">
|
|
<template>
|
|
<style include="style-import"></style>
|
|
<style>
|
|
#simple {
|
|
border: 3px solid orange;
|
|
}
|
|
|
|
.scoped, [selected] {
|
|
border: 4px solid pink;
|
|
}
|
|
|
|
#zazz {
|
|
border: 6px solid tomato;
|
|
}
|
|
</style>
|
|
</template>
|
|
</dom-module> |