demo.css 778 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* Styles used specifically for the demo page */
  2. body {
  3. background: #f5f5f5;
  4. font-family: monospace;
  5. font-size: 14px;
  6. color: #333333;
  7. }
  8. button {
  9. outline: 0;
  10. }
  11. .examples {
  12. max-width: 670px;
  13. margin: 2em auto;
  14. padding: 4em;
  15. background: #fff;
  16. text-align: center
  17. }
  18. .examples .intro {
  19. margin-bottom: 3em;
  20. line-height: 1.4em;
  21. font-size: 16px;
  22. text-align: left;
  23. }
  24. .examples .intro h1 {
  25. margin-top: 0;
  26. font-size: 18px;
  27. }
  28. .examples .outro {
  29. display: block;
  30. text-align: right;
  31. margin-top: 3em;
  32. }
  33. .examples section {
  34. display: inline-block;
  35. width: 24%;
  36. min-width: 160px;
  37. margin-bottom: 2em;
  38. text-align: center;
  39. vertical-align: top;
  40. }
  41. .examples section h3 {
  42. color: #bbb;
  43. font-weight: normal;
  44. }
  45. .sharing {
  46. float: left;
  47. }