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.

crypto_seul.css 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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. #codeBlock{
  61. opacity:0;
  62. animation: fade 2s forwards 1s;
  63. display:flex;
  64. flex-direction: column;
  65. align-items: center;
  66. justify-content: space-around;
  67. margin-top:5vh;
  68. width:80vw;
  69. height:20vh;
  70. }
  71. #codeTxtL1{
  72. display:flex;
  73. justify-content: center;
  74. align-items: center;
  75. }
  76. #codeTxtL2{
  77. display:flex;
  78. justify-content: center;
  79. align-items: center;
  80. }
  81. @keyframes fade {
  82. 0% {opacity :0}
  83. 100% {opacity:1}
  84. }
  85. #buttons {
  86. display: flex;
  87. justify-content: space-around;
  88. margin-top:5vh;
  89. opacity:0;
  90. animation: fade 2s forwards 2s;
  91. }
  92. .button {
  93. outline: none;
  94. border:0.2vw solid #b9b9b9;
  95. border-radius: 4vw;
  96. width:15vw;
  97. padding: 1vw 1.2vw 1vw 1.2vw;
  98. color: black;
  99. font-family: 'Special Elite', cursive;
  100. font-size: 1.5vw;
  101. cursor : pointer;
  102. display: flex;
  103. justify-content: center;
  104. align-items: center;
  105. }
  106. .button:hover {
  107. border: 0.2vw solid white;
  108. box-shadow: 0 0 3vw #B0C4DE;
  109. }
  110. #reset:active {
  111. background-image: linear-gradient(to top, #BF0909 20%, black 150%);
  112. }
  113. #reset {
  114. background-image: linear-gradient(to top, black -50%, #BF0909 80%);
  115. }
  116. #validate:active {
  117. background-image: linear-gradient(to top, #057B26 20%, black 150%);
  118. }
  119. #validate {
  120. background-image: linear-gradient(to top, black -50%, #057B26 80%);
  121. }
  122. footer{
  123. height:15vh;
  124. display:flex;
  125. flex-direction: column;
  126. justify-content:flex-end;
  127. align-items: center;
  128. font-size:1vw;
  129. margin-top:2vw;
  130. }
  131. #names{
  132. margin : 0;
  133. }
  134. #rights{
  135. margin-bottom:0;
  136. }