app-theme.html 996 B

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