site.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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: 14vw;
  100. }
  101. .list p {
  102. font-size: max(24px,4vw);
  103. width: 100%;
  104. }
  105. .list li {
  106. font-size: max(22px,3.5vw);
  107. }
  108. .page {
  109. background-color: floralwhite;
  110. /* 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%); */
  111. width: 100%;
  112. color: black;
  113. filter: drop-shadow(0 0 30px white);
  114. }
  115. .page article {
  116. min-height: 95vh;
  117. padding-left: 5%;
  118. padding-right: 5%;
  119. padding-top: 2vh;
  120. padding-bottom: 10vh;
  121. }
  122. .page a {
  123. color: black;
  124. }
  125. .page a:hover {
  126. color: black;
  127. }
  128. .header {
  129. width: 100%;
  130. display: none;
  131. }
  132. .header .page {
  133. filter: none;
  134. padding-bottom: 5vh;
  135. }
  136. @media only screen and (min-width: 993px) {
  137. .header.large {
  138. display: initial;
  139. }
  140. }
  141. @media only screen and (min-width: 768px) and (max-width: 992px) {
  142. .header.medium {
  143. display: initial;
  144. }
  145. }
  146. @media only screen and (max-width: 767px) {
  147. .header.small {
  148. display: initial;
  149. }
  150. }
  151. .navbar {
  152. padding-left: 10px;
  153. }
  154. nav span, nav a {
  155. font-size: max(30px,2vw);
  156. }
  157. nav.bg-dark span, nav.bg-dark a {
  158. color: ivory;
  159. }
  160. nav .logo {
  161. text-decoration: none;
  162. }
  163. nav .logo:hover {
  164. font-weight: initial;
  165. }
  166. nav .spacer {
  167. margin-left: 1vw;
  168. margin-right: 1vw;
  169. }