styles.css 785 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /* Styles (CSS Level 1) */
  2. body
  3. {
  4. background-color: #191919;
  5. font-family: Arial;
  6. font-size: 20px;
  7. width: 100%;
  8. margin: 0;
  9. text-align: justify;
  10. margin-bottom: 100px;
  11. }
  12. h1, h2, h3
  13. {
  14. margin-top: 0;
  15. margin-bottom: 0;
  16. line-height: 50px;
  17. }
  18. ol, ul
  19. {
  20. list-style-position: inside;
  21. padding-left: 0;
  22. }
  23. ul, ol, li
  24. {
  25. margin-top: 20px;
  26. }
  27. img
  28. {
  29. width: 100%;
  30. }
  31. #top, #main
  32. {
  33. padding-left: 30px;
  34. padding-right: 30px;
  35. padding-top: 10px;
  36. padding-bottom: 10px;
  37. }
  38. #top
  39. {
  40. background-color: #cdcdcd;
  41. border-bottom: #00B3F5 9px solid;
  42. }
  43. #main
  44. {
  45. width: 50%;
  46. margin-left: auto;
  47. margin-right: auto;
  48. margin-top: 60px;
  49. background-color: #cdcdcd;
  50. border: #00B3F5 9px solid;
  51. }
  52. #contents
  53. {
  54. text-align: center;
  55. }
  56. #list-indent
  57. {
  58. margin-left: 30px;
  59. }