styles.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. html, body {
  2. font-family: "Roboto", sans-serif;
  3. }
  4. .styles__ribbon {
  5. background-color: rgba(0,0,0,.06);
  6. color: #fff;
  7. width: 90%;
  8. margin: 80px 0 80px 0;
  9. padding: 3em 0;
  10. -webkit-box-orient: horizontal;
  11. -webkit-flex-direction: row;
  12. -ms-flex-direction: row;
  13. flex-direction: row;
  14. -webkit-box-align: stretch;
  15. -webkit-align-items: stretch;
  16. -ms-flex-align: stretch;
  17. align-items: stretch;
  18. }
  19. h1, h2, h3, h4, h5, h6,
  20. .mdl-button,
  21. .mdl-typography--display-4,
  22. .mdl-typography--display-3,
  23. .mdl-typography--display-2 {
  24. font-weight: 300;
  25. }
  26. .mdl-button--accent.mdl-button--accent.mdl-button--raised, .mdl-button--accent.mdl-button--accent.mdl-button--fab {
  27. background: #96CA2D;
  28. color: #fff;
  29. }
  30. a.mdl-button:hover {
  31. text-decoration: none;
  32. color: rgba(255, 255, 255, .9);
  33. }
  34. .text--bold-shadow {
  35. text-shadow: 0 2px 2px rgba(0,0,0,.1);
  36. }
  37. footer {
  38. background: #fafafa;
  39. padding: 3em 0;
  40. color: #555;
  41. }
  42. a {
  43. color: #009688;
  44. text-decoration: none;
  45. font-weight: bold;
  46. }
  47. a:hover {
  48. text-decoration: underline;
  49. }
  50. .material-icons.md-18 { font-size: 18px; }
  51. .material-icons.md-24 { font-size: 24px; }
  52. .material-icons.md-36 { font-size: 36px; }
  53. .material-icons.md-48 { font-size: 48px; }
  54. .material-icons.md-96 { font-size: 96px; }
  55. .material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
  56. .material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }
  57. .material-icons.md-light { color: rgba(255, 255, 255, 1); }
  58. .material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }
  59. .styles__ribbon--lime {
  60. background-color: #cddc39;
  61. }
  62. .mdl-button--large {
  63. font-size: 24px;
  64. height: 48px;
  65. padding: 0 16px;
  66. }
  67. a.mdl-button--large {
  68. padding-top: 10px;
  69. }
  70. .styles__ribbon--cyan {
  71. background-color: #00bcd4;
  72. opacity: .8;
  73. }
  74. .styles__ribbon--teal {
  75. background-color: #4BB5C1;
  76. }
  77. .styles__ribbon.styles__ribbon--right {
  78. margin-left: 10%;
  79. }
  80. pre {
  81. font-size: 87%;
  82. background-color: rgba(0,0,0,.06);
  83. border-radius: 3px;
  84. padding: 16px;
  85. }
  86. .left-col {
  87. padding-right: 40px;
  88. }
  89. .pull-right {
  90. float: right;
  91. }
  92. .text-right {
  93. text-align: right;
  94. }
  95. .text-center {
  96. text-align: center;
  97. }
  98. hr {
  99. margin-top: 5em;
  100. margin-bottom: 5em;
  101. opacity: .5;
  102. }
  103. pre {
  104. max-width: 100%;
  105. overflow-x: auto;
  106. }
  107. .page-content {
  108. background: #fff;
  109. color: #555;
  110. }
  111. .container {
  112. width: 100%;
  113. max-width: 960px;
  114. margin: 0 auto;
  115. padding: 3em 1em;
  116. box-sizing: border-box;
  117. }
  118. /* Need for sure */
  119. .layout-transparent {
  120. background: linear-gradient(to right, #2193b0, #6dd5ed);
  121. }
  122. .layout-transparent .mdl-layout__header,
  123. .layout-transparent .mdl-layout__drawer-button,
  124. .layout-transparent .mdl-layout__content {
  125. /* This background is dark, so we set text to white. Use 87% black instead if
  126. your background is light. */
  127. color: white;
  128. }
  129. @media only screen and (max-width: 600px) {
  130. .mdl-typography--display-4 {
  131. font-size: 64px !important;
  132. }
  133. .mdl-typography--display-2 {
  134. font-size: 36px;
  135. }
  136. .mdl-typeography--display-3 {
  137. font-size: 32px;
  138. }
  139. .mdl-button--large {
  140. font-size: 18px;
  141. height: 36px;
  142. padding: 0 12px;
  143. }
  144. a.mdl-button--large {
  145. padding-top: 4px;
  146. }
  147. .container {
  148. width: 100%;
  149. max-width: 100%;
  150. padding: 6px;
  151. }
  152. .styles__ribbon {
  153. padding: 0 1em;
  154. width: 90%;
  155. margin: 0;
  156. }
  157. .styles__ribbon--right {
  158. margin: 0 0 0 10%;
  159. }
  160. hr {
  161. margin: 2em 0;
  162. }
  163. }
  164. md-fab-speed-dial {
  165. position: fixed; right: 1em; bottom: 1em; z-index: 20;
  166. }