style_chmduquesne.css 1.5 KB

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