style_chmduquesne.css 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. 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. }
  60. p {
  61. margin-top:0;
  62. margin-bottom:7px;
  63. }
  64. /* Blockquotes */
  65. blockquote {
  66. text-align: center
  67. }
  68. /* Links */
  69. a {
  70. text-decoration: none;
  71. color: #397249;
  72. }
  73. a:hover, a:active {
  74. background-color: #397249;
  75. color: #FFFFFF;
  76. text-decoration: none;
  77. text-shadow: 1px 1px 1px #333;
  78. }
  79. /* Horizontal separators */
  80. hr {
  81. color: #A6A6A6;
  82. }
  83. table {
  84. width: 100%;
  85. }
  86. </style>