layout.css 884 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. nav ul {
  2. list-style: none;
  3. padding: 0;
  4. }
  5. nav ul li {
  6. display: inline-block;
  7. margin-right: 1em;
  8. }
  9. nav ul li:first-child {
  10. font-size: 1.1em;
  11. font-weight: 500;
  12. }
  13. h1 {
  14. font-size: 1.6em;
  15. line-height: 1.5;
  16. padding-bottom: .5em;
  17. }
  18. h2 {
  19. font-size: 1.4em;
  20. padding: .5em 0;
  21. }
  22. h3 {
  23. font-size: 1.2em;
  24. padding: .3em 0;
  25. }
  26. h4 {
  27. font-size: 1em;
  28. padding: 0;
  29. }
  30. .signature-form p {
  31. margin-bottom: .5em;
  32. }
  33. .signature-form input {
  34. width: 320px;
  35. max-width: 100%;
  36. }
  37. .signature-form textarea {
  38. width: 320px;
  39. max-width: 100%;
  40. min-height: 100px;
  41. }
  42. button {
  43. font-size: 1.2em;
  44. padding: .5em 1.5em;
  45. }
  46. footer {
  47. text-align: center;
  48. margin-top: 2em;
  49. border-top: 1px solid #ccc;
  50. padding-top: 2em;
  51. font-size: .8em;
  52. }
  53. audio {
  54. width: 100%;
  55. }
  56. small {
  57. color: #888;
  58. font-size: 0.8em;
  59. }