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.

etrange_decouverte.css 6.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  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. }
  51. .phrase{
  52. opacity:0;
  53. margin:0.1vh 0vw 0.1vh 0vw;
  54. }
  55. #p1{
  56. animation: fade 2s forwards;
  57. }
  58. @keyframes fade {
  59. 0% {opacity :0}
  60. 100% {opacity:1}
  61. }
  62. @keyframes fade-reverse {
  63. 0% {opacity :1}
  64. 100% {opacity:0}
  65. }
  66. #p1{animation-delay:0.5s}
  67. .mot{
  68. margin:0;
  69. }
  70. #boisson{
  71. color:#086CA5;
  72. font-weight: bold;
  73. text-align: center;
  74. font-size: min(1.8vw,3.6vh);
  75. font-family: 'Special Elite', cursive;
  76. background:black;
  77. border:none;
  78. cursor: pointer;
  79. -moz-appearance: none;
  80. background: transparent;
  81. background-image: url("../Images/Arrow.png");
  82. background-repeat: no-repeat;
  83. background-size:min(1vw,1.7vh);
  84. background-position-x: 0vw;
  85. background-position-y: min(0.4 vw,1vh);
  86. padding-left:1.2vw;
  87. }
  88. #boisson:focus{
  89. outline:none
  90. }
  91. #boisson option{
  92. background:black;
  93. border:none;
  94. font: -moz-pull-down-menu;
  95. }
  96. #arrowBlock{
  97. height:2vh;
  98. width:50vw;
  99. }
  100. #space{
  101. font-size: 1vw;
  102. font-family: 'Special Elite', cursive;
  103. position:relative;
  104. right:-20vw;
  105. top:2.5vh;
  106. }
  107. #arrow{
  108. height:2vh;
  109. width:auto;
  110. position:relative;
  111. right:-25vw;
  112. top:-3vh;
  113. animation: bounce 1s forwards;
  114. animation-iteration-count:infinite;
  115. }
  116. @keyframes bounce {
  117. 50% {top:-6vh}
  118. }
  119. #buttons {
  120. display: flex;
  121. justify-content: space-around;
  122. margin-top:5vh;
  123. opacity:0;
  124. }
  125. .button {
  126. outline: none;
  127. border:0.2vw solid #b9b9b9;
  128. border-radius: 4vw;
  129. width:20vw;
  130. padding: 1vw 1.2vw 1vw 1.2vw;
  131. color: black;
  132. font-family: 'Special Elite', cursive;
  133. font-size: 1.5vw;
  134. background-image: linear-gradient(to top, black -50%, #BF0909 80%);
  135. cursor : pointer;
  136. display: flex;
  137. justify-content: center;
  138. align-items: center;
  139. }
  140. .button:hover {
  141. border: 0.2vw solid white;
  142. box-shadow: 0 0 3vw #B0C4DE;
  143. }
  144. .button:active {
  145. background-image: linear-gradient(to top, #BF0909 20%, black 150%);
  146. }
  147. #link{
  148. text-decoration:none;
  149. padding:0;
  150. }
  151. #link:hover{
  152. text-decoration:none;
  153. }
  154. footer{
  155. height:15vh;
  156. display:flex;
  157. flex-direction: column;
  158. justify-content:flex-end;
  159. align-items: center;
  160. font-size:1vw;
  161. margin-top:2vw;
  162. }
  163. #names{
  164. margin : 0;
  165. }
  166. #rights{
  167. margin-bottom:0;
  168. }
  169. #eyeBlock{
  170. width:100vw;
  171. height:95vh;
  172. position:absolute;
  173. display:flex;
  174. flex-direction: column;
  175. opacity:0;
  176. z-index:-1;
  177. }
  178. #supEye{
  179. flex:1;
  180. background-color:black;
  181. display:flex;
  182. justify-content: center;
  183. align-items: flex-end;
  184. }
  185. #eye{
  186. flex:1;
  187. background:radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0) 73.44%, black 100%);
  188. }
  189. .endText{
  190. opacity:0;
  191. flex:1;
  192. text-align: center;
  193. font-family: 'Special Elite', cursive;
  194. }
  195. #loose{
  196. font-size:3vw;
  197. }
  198. #return {
  199. text-decoration: none;
  200. color: #494949;
  201. font-size:1.5vw
  202. }
  203. #return:hover {
  204. color: white;
  205. }
  206. #infEye{
  207. flex:1;
  208. background-color:black;
  209. display:flex;
  210. justify-content: center;
  211. align-items: flex-start;
  212. }
  213. @keyframes blinking1 {
  214. 100% {flex:0.3}
  215. }
  216. @keyframes blinking2 {
  217. 0% {flex:0.3}
  218. 100% {flex:0.7}
  219. }
  220. @keyframes blinking3 {
  221. 0% {flex:0.7}
  222. 100% {flex:0}
  223. }