Advertisement
Guest User

css

a guest
May 10th, 2015
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. post-card.padded {
  2. margin-bottom: 30px;
  3. }
  4. html,
  5. body {
  6. height: 100%;
  7. margin: 0;
  8. background-color: #E5E5E5;
  9. font-family: 'RobotoDraft', sans-serif;
  10. }
  11. core-header-panel {
  12. height: 100%;
  13. overflow: auto;
  14. -webkit-overflow-scrolling: touch;
  15. }
  16. core-toolbar {
  17. background: #673AB7;
  18. color: white;
  19. }
  20. #tabs {
  21. width: 100%;
  22. margin: 0;
  23. -webkit-user-select: none;
  24. -moz-user-select: none;
  25. -ms-user-select: none;
  26. user-select: none;
  27. text-transform: uppercase;
  28. }
  29. .container {
  30. width: 80%;
  31. margin: 50px auto;
  32. }
  33. @media (min-width: 481px) {
  34. #tabs {
  35. width: 200px;
  36. }
  37. .container {
  38. width: 400px;
  39. }
  40. }
  41. .dark-primary-color {
  42. background: #512DA8;
  43. }
  44. .default-primary-color {
  45. background: #673AB7;
  46. }
  47. .light-primary-color {
  48. background: #D1C4E9;
  49. }
  50. .text-primary-color {
  51. color: #FFFFFF;
  52. }
  53. .accent-color {
  54. background: #536DFE;
  55. }
  56. .primary-text-color {
  57. color: #212121;
  58. }
  59. .secondary-text-color {
  60. color: #727272;
  61. }
  62. .divider-color {
  63. border-color: #B6B6B6;
  64. }
  65. [drawer] {background-color: #FFFFFF}
  66.  
  67. core-drawer-panel:not([narrow]) #navicon{
  68. display: none;
  69. }
  70. core-drawer-panel:not([narrow]) #narrowTitle{display: none;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement