index.css 997 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. body {
  2. font-family: "Helvetica Neue";
  3. font-weight: lighter;
  4. color: #2a2a2a;
  5. background-color: #f0f0ff;
  6. -webkit-appearance: none;
  7. -webkit-touch-callout: none;
  8. -webkit-tap-highlight-color: rgba(0,0,0,0);
  9. -webkit-touch-callout: none; -webkit-user-select: none;
  10. }
  11. h1 {
  12. text-align: center;
  13. }
  14. button {
  15. margin: 15px;
  16. -webkit-appearance:none;
  17. font-size: 1.2em;
  18. }
  19. #mainPage {
  20. text-align:center;
  21. }
  22. #detailPage {
  23. text-align:center;
  24. font-size: 2em;
  25. }
  26. #detailPage div {
  27. margin: 20px;
  28. }
  29. #detailPage button {
  30. margin-top: 40px;
  31. font-size: 0.6em; /* undo 2em from parent */
  32. }
  33. ul {
  34. list-style: none;
  35. border-bottom: 1px solid #d3d3d3;
  36. text-align: left;
  37. }
  38. li {
  39. margin-left: -40px;
  40. padding: 5px;
  41. padding-top: 10px;
  42. min-height: 50px;
  43. border-top: 1px solid #d3d3d3;
  44. font-size: 0.9em;
  45. }
  46. button {
  47. -webkit-appearance: none;
  48. font-size: 1.5em;
  49. border-radius: 0;
  50. }