site.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  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: min(6vw,40px);
  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: 60%;
  22. text-align: end;
  23. text-overflow: ellipsis;
  24. white-space: nowrap;
  25. overflow: hidden;
  26. }
  27. .shift-right {
  28. margin-left: 60%;
  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-left: 7vw;
  39. padding-bottom: 5vw;
  40. }
  41. .lift {
  42. display: inline-block;
  43. }
  44. .lift.anim {
  45. animation: 3s ease-out 0s 1 slideDown;
  46. }
  47. .drop {
  48. display: inline-block;
  49. position: relative;
  50. transform: translateY(50%);
  51. }
  52. .drop.anim {
  53. animation: 3s ease-out 0s 1 slideInFromRight;
  54. }
  55. .title-desc {
  56. animation: 6s ease-out 0s 1 fadeIn;
  57. }
  58. @keyframes slideDown {
  59. 0% {
  60. transform: translate(50%);
  61. opacity: 0.0;
  62. }
  63. 50% {
  64. transform: translateY(50%);
  65. opacity: 0.0;
  66. }
  67. 100% {
  68. transform: translateY(0);
  69. opacity: 1.0;
  70. }
  71. }
  72. @keyframes slideInFromRight {
  73. 0% {
  74. transform: translate(50%, 50%);
  75. opacity: 0.0;
  76. }
  77. 50% {
  78. transform: translate(50%, 50%);
  79. opacity: 0.0;
  80. }
  81. 100% {
  82. transform: translateY(0, 50%);
  83. opacity: 1.0;
  84. }
  85. }
  86. @keyframes fadeIn {
  87. 0% {
  88. opacity: 0.0;
  89. }
  90. 50% {
  91. opacity: 0.0;
  92. }
  93. 100% {
  94. opacity: 1.0;
  95. }
  96. }
  97. .title-page p {
  98. font-size: max(16px, 1vw);
  99. }
  100. .warn {
  101. padding-top: 25vh;
  102. height: 100%;
  103. }
  104. .warn h1 {
  105. font-size: max(48px, 4vw);
  106. }
  107. .warn p {
  108. font-size: max(18px, 1.5vw);
  109. }
  110. .warn a {
  111. font-size: max(24px, 2vw);
  112. color: snow;
  113. }
  114. .list h1 {
  115. font-size: max(2.5vw, 40px);
  116. }
  117. .list p {
  118. font-size: max(2vw, 30px);
  119. }
  120. .list li {
  121. font-size: max(1.5vw, 25px);
  122. }
  123. @media only screen and (max-width: 500px) {
  124. .list .date {
  125. display: none;
  126. }
  127. }
  128. .page {
  129. background-color: floralwhite;
  130. /* 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%); */
  131. width: 100%;
  132. color: black;
  133. filter: drop-shadow(0 0 30px white);
  134. }
  135. .page article {
  136. min-height: 95vh;
  137. padding-left: 5%;
  138. padding-right: 5%;
  139. padding-top: 2vh;
  140. padding-bottom: 3vh;
  141. }
  142. .page a {
  143. color: black;
  144. }
  145. .page a:hover {
  146. color: black;
  147. }
  148. .header {
  149. width: 100%;
  150. display: none;
  151. }
  152. .header .page {
  153. filter: none;
  154. padding-bottom: 5vh;
  155. }
  156. @media only screen and (min-width: 993px) {
  157. .header.large {
  158. display: initial;
  159. }
  160. }
  161. @media only screen and (min-width: 768px) and (max-width: 992px) {
  162. .header.medium {
  163. display: initial;
  164. }
  165. }
  166. @media only screen and (max-width: 767px) {
  167. .header.small {
  168. display: initial;
  169. }
  170. }
  171. .navbar {
  172. padding-left: 10px;
  173. }
  174. nav span, nav a {
  175. font-size: max(30px,2vw);
  176. }
  177. nav.bg-dark span, nav.bg-dark a {
  178. color: ivory;
  179. }
  180. nav .logo {
  181. text-decoration: none;
  182. }
  183. nav .logo:hover {
  184. font-weight: initial;
  185. }
  186. nav .spacer {
  187. margin-left: 1vw;
  188. margin-right: 1vw;
  189. }
  190. .footer {
  191. margin-top: 5vh;
  192. }