site.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. html, body {
  2. min-width: 100vw;
  3. min-height: 100vh;
  4. }
  5. body {
  6. background-color: black;
  7. color: snow;
  8. }
  9. a:hover {
  10. font-weight: 500;
  11. }
  12. .title-page a {
  13. font-size: 4vw;
  14. animation: 3s ease-out 0s 1 fadeIn;
  15. color: snow;
  16. }
  17. .title-page a:hover {
  18. color: snow;
  19. }
  20. .shift-left {
  21. margin-right: 55%;
  22. text-align: end;
  23. text-overflow: ellipsis;
  24. white-space: nowrap;
  25. overflow: hidden;
  26. }
  27. .shift-right {
  28. margin-left: 55%;
  29. text-overflow: ellipsis;
  30. white-space: nowrap;
  31. overflow: hidden;
  32. }
  33. .title-page>h1 {
  34. font-size: 12vw;
  35. height: 12vh+12vw;
  36. font-family: "Times New Roman", Times, serif;
  37. text-align: center;
  38. padding-top: 5vh;
  39. padding-left: 7vw;
  40. padding-bottom: 5vw;
  41. }
  42. .lift {
  43. display: inline-block;
  44. }
  45. .lift.anim {
  46. animation: 3s ease-out 0s 1 slideDown;
  47. }
  48. .drop {
  49. display: inline-block;
  50. position: relative;
  51. transform: translateY(50%);
  52. }
  53. .drop.anim {
  54. animation: 3s ease-out 0s 1 slideInFromRight;
  55. }
  56. .title-desc {
  57. animation: 6s ease-out 0s 1 fadeIn;
  58. }
  59. @keyframes slideDown {
  60. 0% {
  61. transform: translate(50%);
  62. opacity: 0.0;
  63. }
  64. 50% {
  65. transform: translateY(50%);
  66. opacity: 0.0;
  67. }
  68. 100% {
  69. transform: translateY(0);
  70. opacity: 1.0;
  71. }
  72. }
  73. @keyframes slideInFromRight {
  74. 0% {
  75. transform: translate(50%, 50%);
  76. opacity: 0.0;
  77. }
  78. 50% {
  79. transform: translate(50%, 50%);
  80. opacity: 0.0;
  81. }
  82. 100% {
  83. transform: translateY(0, 50%);
  84. opacity: 1.0;
  85. }
  86. }
  87. @keyframes fadeIn {
  88. 0% {
  89. opacity: 0.0;
  90. }
  91. 50% {
  92. opacity: 0.0;
  93. }
  94. 100% {
  95. opacity: 1.0;
  96. }
  97. }
  98. .list h1 {
  99. font-size: 8vw;
  100. }
  101. .list p {
  102. font-size: 3vw;
  103. }
  104. .list li {
  105. font-size: 2.5vw;
  106. }
  107. .page {
  108. background-color: floralwhite;
  109. /* background-image: linear-gradient(to right,rgba(0,0,0,1) 0%, rgba(255,255,255,1) 3%, rgba(255,255,255,1) 97%, rgba(0,0,0,1) 100%); */
  110. width: 100%;
  111. color: black;
  112. filter: drop-shadow(0 0 30px white);
  113. }
  114. .page article {
  115. min-height: 95vh;
  116. padding-left: 5%;
  117. padding-right: 5%;
  118. padding-top: 2vh;
  119. padding-bottom: 3vh;
  120. }
  121. .page a {
  122. color: black;
  123. }
  124. .page a:hover {
  125. color: black;
  126. }
  127. .header {
  128. width: 100%;
  129. display: none;
  130. }
  131. .header .page {
  132. filter: none;
  133. padding-bottom: 5vh;
  134. }
  135. @media only screen and (min-width: 993px) {
  136. .header.large {
  137. display: initial;
  138. }
  139. }
  140. @media only screen and (min-width: 768px) and (max-width: 992px) {
  141. .header.medium {
  142. display: initial;
  143. }
  144. }
  145. @media only screen and (max-width: 767px) {
  146. .header.small {
  147. display: initial;
  148. }
  149. }
  150. .navbar {
  151. padding-left: 10px;
  152. }
  153. nav span, nav a {
  154. font-size: max(30px,2vw);
  155. }
  156. nav.bg-dark span, nav.bg-dark a {
  157. color: ivory;
  158. }
  159. nav .logo {
  160. text-decoration: none;
  161. }
  162. nav .logo:hover {
  163. font-weight: initial;
  164. }
  165. nav .spacer {
  166. margin-left: 1vw;
  167. margin-right: 1vw;
  168. }
  169. .footer {
  170. margin-top: 5vh;
  171. }