No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

reussite.css 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. body {
  2. display: flex;
  3. flex-direction: column;
  4. justify-content: space-between;
  5. align-items: center;
  6. color:white;
  7. font-family: 'Special Elite', cursive;
  8. background-color: black;
  9. height: 95vh;
  10. }
  11. header {
  12. color: #BF0909;
  13. font-family: 'Special Elite', cursive;
  14. display: flex;
  15. flex-direction: column;
  16. justify-content: space-between;
  17. align-items: center;
  18. height:15vh;
  19. z-index:0;
  20. }
  21. h1 {
  22. font-size: min(4vw,7vh);
  23. margin-bottom:0.5vw;
  24. }
  25. header a {
  26. font-size: min(1vw,1.7vh);
  27. text-decoration: none;
  28. color: #494949;
  29. }
  30. header a:hover {
  31. color: white;
  32. }
  33. #main {
  34. display: flex;
  35. height:65vh;
  36. }
  37. #content {
  38. display: flex;
  39. flex-direction: column;
  40. justify-content: space-around;
  41. width: 50vw;
  42. }
  43. #text {
  44. margin-top:4vh;
  45. font-family: 'Special Elite', cursive;
  46. font-size: min(1.8vw,3.6vh);
  47. text-align: center;
  48. color: white;
  49. cursor:default;
  50. display:flex;
  51. flex-direction:column;
  52. justify-content: center;
  53. align-items: center;
  54. }
  55. #p1{
  56. opacity:0;
  57. margin:0.1vh 0vw 0.1vh 0vw;
  58. animation: fade 2s forwards;
  59. }
  60. @keyframes fade {
  61. 0% {opacity :0}
  62. 100% {opacity:1}
  63. }
  64. footer{
  65. height:15vh;
  66. display:flex;
  67. flex-direction: column;
  68. justify-content:flex-end;
  69. align-items: center;
  70. font-size:1vw;
  71. margin-top:2vw;
  72. }
  73. #names{
  74. margin : 0;
  75. }
  76. #rights{
  77. margin-bottom:0;
  78. }