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.

couloir_ami.css 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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. flex: 1;
  19. }
  20. h1 {
  21. font-size: 4vw;
  22. }
  23. header a {
  24. text-decoration: none;
  25. color: #494949;
  26. }
  27. header a:hover {
  28. color: white;
  29. }
  30. #main {
  31. display: flex;
  32. flex: 4;
  33. }
  34. #content {
  35. display: flex;
  36. flex-direction: column;
  37. justify-content: space-around;
  38. width: 50vw;
  39. }
  40. #text {
  41. font-family: 'Special Elite', cursive;
  42. font-size: 1.8vw;
  43. text-align: center;
  44. color: white;
  45. }
  46. .textWillAppear {
  47. opacity: 0;
  48. }
  49. @keyframes fade {
  50. 100% {opacity: 1;}
  51. }
  52. #arrowBlock{
  53. display: flex;
  54. justify-content: flex-end;
  55. height: 2vh;
  56. width: 45vw;
  57. }
  58. #space{
  59. font-size: 1vw;
  60. font-family: 'Special Elite', cursive;
  61. padding-right: 1vw;
  62. }
  63. #arrow{
  64. height: 2vh;
  65. animation: bounce 1s forwards;
  66. animation-iteration-count:infinite;
  67. }
  68. @keyframes bounce {
  69. 50% {transform: translate(0, -1em);}
  70. }
  71. @keyframes fade-reverse {
  72. 0% {opacity :1}
  73. 100% {opacity:0}
  74. }
  75. #buttons {
  76. opacity: 0;
  77. display: flex;
  78. justify-content: space-around;
  79. }
  80. .button {
  81. outline: none;
  82. border:0.2vw solid #b9b9b9;
  83. border-radius: 4vw;
  84. min-width: 15vw;
  85. width: 20vw;
  86. padding: 1vw 1.2vw 1vw 1.2vw;
  87. color: black;
  88. font-family: 'Special Elite', cursive;
  89. font-size: 0.8vw;
  90. background-image: linear-gradient(to top, black -50%, #BF0909 80%);
  91. cursor : pointer;
  92. }
  93. .button:hover {
  94. border: 0.2vw solid white;
  95. box-shadow: 0 0 3vw #B0C4DE;
  96. }
  97. .button:active {
  98. background-image: linear-gradient(to top, #BF0909 20%, black 150%);
  99. }
  100. footer{
  101. flex:0.5;
  102. display:flex;
  103. flex-direction: column;
  104. justify-content:flex-end;
  105. align-items: center;
  106. font-size:1vw;
  107. margin-top:2vw;
  108. }
  109. #names{
  110. margin : 0;
  111. }