style_green.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <style type="text/css">
  2. /*
  3. * * Copyright 2013 Christophe-Marie Duquesne <chmd@chmd.fr>
  4. * *
  5. * * CSS for making a resume with pandoc. Inspired by moderncv.
  6. * *
  7. * * This CSS document is delivered to you under the CC BY-SA 3.0 License.
  8. * * https://creativecommons.org/licenses/by-sa/3.0/deed.en_US
  9. * */
  10. /* Whole document */
  11. body {
  12. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  13. width: 800px;
  14. margin: auto;
  15. background: #FFFFFF;
  16. padding: 10px 10px 10px 10px;
  17. }
  18. /* Title of the resume */
  19. h1 {
  20. font-size: 55px;
  21. color: #757575;
  22. text-align:center;
  23. margin-bottom:15px;
  24. }
  25. /* Titles of categories */
  26. h2 {
  27. color: #397249;
  28. }
  29. /* There is a bar just before each category */
  30. h2:before {
  31. content: "";
  32. display: inline-block;
  33. margin-right:1%;
  34. width: 16%;
  35. height: 10px;
  36. background-color: #9CB770;
  37. }
  38. /* Definitions */
  39. dt {
  40. float: left;
  41. clear: left;
  42. width: 17%;
  43. font-weight: bold;
  44. }
  45. dd {
  46. margin-left: 17%;
  47. }
  48. p {
  49. margin-top:0;
  50. margin-bottom:7px;
  51. }
  52. /* Blockquotes */
  53. blockquote {
  54. text-align: center
  55. }
  56. /* Links */
  57. a {
  58. text-decoration: none;
  59. }
  60. /* Horizontal separators */
  61. hr {
  62. color: #A6A6A6;
  63. }
  64. table {
  65. width: 100%;
  66. border-top: solid;
  67. border-bottom: solid;
  68. border-color:#999999;
  69. }
  70. </style>