CMS ultra léger au style oldschool, projet de la communauté Kalaïn Hundin.

style.css 673B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <style type="text/css">
  2. html
  3. {
  4. height:100%;
  5. width:100%;
  6. }
  7. #header
  8. {
  9. width:100%;
  10. height:20%;
  11. font-size:50px;
  12. text-align:center;
  13. border-style:solid;
  14. border-color:black;
  15. border-size:1px;
  16. }
  17. .corps
  18. {
  19. width:80%;
  20. height:5%;
  21. border-bottom-style:solid;
  22. border-bottom-color:black;
  23. border-bottom-size:1px;
  24. //float:left;
  25. z-index:2;
  26. }
  27. #widget
  28. {
  29. margin-left:80%;
  30. width:15%;
  31. z-index:1;
  32. position:absolute;
  33. border-left-style:solid;
  34. border-left-color:black;
  35. border-left-size:2px;
  36. }
  37. a
  38. {
  39. color:black;
  40. text-decoration:none;
  41. }
  42. a:hover
  43. {
  44. color:black;
  45. text-decoration:underline;
  46. }
  47. #contact
  48. {
  49. color:white;
  50. text-decoration:none;
  51. }
  52. #contact:hover
  53. {
  54. color:white;
  55. text-decoration:underline;
  56. }
  57. </style>