app-theme.html 901 B

12345678910111213141516171819202122232425262728293031323334
  1. <link rel="import" href="../bower_components/polymer/polymer.html">
  2. <style is="custom-style">
  3. :root {
  4. --dark-primary-color: #303F9F;
  5. --default-primary-color: #3F51B5;
  6. --light-primary-color: #C5CAE9;
  7. --text-primary-color: #ffffff;
  8. /*text/icons*/
  9. --accent-color: #FF4081;
  10. --primary-background-color: #c5cae9;
  11. --primary-text-color: #212121;
  12. --secondary-text-color: #727272;
  13. --disabled-text-color: #bdbdbd;
  14. --divider-color: #B6B6B6;
  15. /* Components */
  16. /* paper-drawer-panel */
  17. --drawer-menu-color: #ffffff;
  18. --drawer-border-color: 1px solid #ccc;
  19. --drawer-toolbar-border-color: 1px solid rgba(0, 0, 0, 0.22);
  20. /* paper-menu */
  21. --paper-menu-background-color: #fff;
  22. --menu-link-color: #111111;
  23. }
  24. paper-progress {
  25. width: 100%;
  26. z-index: 1;
  27. position: absolute;
  28. top: 0;
  29. }
  30. neon-animated-pages{
  31. height: 100%;
  32. }
  33. </style>