illyse.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /* Titre général */
  2. header {
  3. user-select: none;
  4. /* Navigateurs */
  5. -moz-user-select: none;
  6. -webkit-user-select: none;
  7. }
  8. h1 {
  9. font-size: 2.2em;
  10. margin-bottom: 1em;
  11. }
  12. h1:before {
  13. content: "\\_o<";
  14. color: #FF6600;
  15. font-weight: normal;
  16. font-family: monospace;
  17. text-align: center;
  18. font-size: 1.25em;
  19. display: block;
  20. float: left;
  21. width: 25%;
  22. }
  23. h1:hover:before {
  24. content: "\\_x<";
  25. }
  26. h1:hover:after {
  27. position: absolute;
  28. text-align: center;
  29. z-index: -1;
  30. right: 15%;
  31. left: 25%;
  32. }
  33. h1:hover a {
  34. opacity: 0.1;
  35. }
  36. h1 a, h1:after {
  37. color: #0086A9;
  38. font-weight: bold;
  39. }
  40. /* Barre de navigation */
  41. nav#sidebox {
  42. position: fixed;
  43. z-index: 1;
  44. }
  45. h3#nav {
  46. background-color: #E8E8FF;
  47. border: 1px solid #E0E0E0;
  48. border-bottom-color: #0086A9;
  49. padding-bottom: 0.25em;
  50. text-indent: 0.25em;
  51. margin-top: 0.25em;
  52. padding-top: 0.1em;
  53. margin-bottom: 0;
  54. color: #FF6600;
  55. }
  56. .side-nav {
  57. padding: 0;
  58. padding-top: 0.75em;
  59. background-color: #E8E8FF;
  60. border: 1px solid #E0E0E0;
  61. border-top: 0 none transparent;
  62. margin-top: 0;
  63. }
  64. .side-nav a {
  65. padding: 0 0.5em 0.2em 0.5em;
  66. }
  67. .side-nav a:hover,
  68. .side-nav li.active a,
  69. .side-nav li ul li a:hover {
  70. background-color: #0086A9;
  71. color: #FFFFFF !important;
  72. border-radius: 5px;
  73. }
  74. .side-nav li ul {
  75. list-style-type: disc;
  76. padding-top: 0.25em;
  77. }
  78. .side-nav li ul li a:hover {
  79. margin-right: 1em;
  80. }
  81. .side-nav li ul li a {
  82. padding-left: 0.25em;
  83. margin-left: -0.25em;
  84. }
  85. .side-nav li.active li a {
  86. background-color: transparent;
  87. color: #0086A9 !important;
  88. }
  89. /* Titre section principale */
  90. h2:before {
  91. content: url(../img/coinitem.png);
  92. margin-right: 0.25em;
  93. }
  94. h2 {
  95. color: #FF6600;
  96. border-bottom: 2px solid #0086A9;
  97. }