illyse.css 558 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* Structure */
  2. h1 {
  3. user-select: none;
  4. position: fixed;
  5. height: -0.2em;
  6. width: 100%;
  7. }
  8. div.large-3, div.large-9 {
  9. margin-top: 7em;
  10. }
  11. h1 a:before {
  12. margin-left: 1em;
  13. margin-right: -1em;
  14. display: block;
  15. float: left;
  16. width: 25%;
  17. }
  18. /* Navigateurs */
  19. h1 {
  20. -moz-user-select: none;
  21. -webkit-user-select: none;
  22. }
  23. /* Contenus */
  24. h1 a:before {
  25. content: "\\_o<";
  26. font-family: monospace;
  27. }
  28. h1:hover a:before {
  29. content: "\\_x<";
  30. }
  31. /* Couleurs */
  32. h1 a {
  33. color: #0086A9;
  34. font-weight: bold;
  35. }
  36. h1 a:before {
  37. color: #FF6600;
  38. font-weight: normal;
  39. }