chmduquesne.css 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. max-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. /* h1:hover { */
  26. /* background-color: #757575; */
  27. /* color: #FFFFFF; */
  28. /* text-shadow: 1px 1px 1px #333; */
  29. /* } */
  30. /* Titles of categories */
  31. h2 {
  32. /* This is called "sectioncolor" in the ConTeXt stylesheet. */
  33. color: #397249;
  34. }
  35. /* There is a bar just before each category */
  36. h2:before {
  37. content: "";
  38. display: inline-block;
  39. margin-right:1%;
  40. width: 16%;
  41. height: 10px;
  42. /* This is called "rulecolor" in the ConTeXt stylesheet. */
  43. background-color: #9CB770;
  44. }
  45. /* h2:hover { */
  46. /* background-color: #397249; */
  47. /* color: #FFFFFF; */
  48. /* text-shadow: 1px 1px 1px #333; */
  49. /* } */
  50. /* Definitions */
  51. dt {
  52. float: left;
  53. clear: left;
  54. width: 17%;
  55. font-weight: bold;
  56. }
  57. dd {
  58. margin-left: 17%;
  59. margin-bottom:7px;
  60. }
  61. p {
  62. margin-top:0;
  63. margin-bottom:7px;
  64. }
  65. /* Blockquotes */
  66. blockquote {
  67. text-align: center
  68. }
  69. /* Links */
  70. a {
  71. text-decoration: none;
  72. color: #397249;
  73. }
  74. a:hover, a:active {
  75. background-color: #397249;
  76. color: #FFFFFF;
  77. text-decoration: none;
  78. text-shadow: 1px 1px 1px #333;
  79. }
  80. /* Horizontal separators */
  81. hr {
  82. color: #A6A6A6;
  83. }
  84. table {
  85. width: 100%;
  86. }
  87. </style>