style.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. @font-face {
  2. font-family: "JetBrain Mono";
  3. src: url("font/JetBrainsMono-Regular.woff2") format("woff2");
  4. }
  5. @font-face {
  6. font-family: "Covenant";
  7. src: url("font/Halo-Covenant.ttf") format("truetype");
  8. }
  9. body {
  10. font-family: "JetBrain Mono", Arial, Helvetica, sans-serif !important;
  11. }
  12. #logo {
  13. margin-top: 10em;
  14. color: #ffa000;
  15. text-align: center;
  16. }
  17. #version {
  18. color: white;
  19. text-align: center;
  20. margin-left: 40em;
  21. }
  22. #text {
  23. margin-top: 3em;
  24. }
  25. #loader {
  26. margin-top: 2em;
  27. text-align: center;
  28. font-family: Menlo,Consolas,Monaco,monospace;
  29. font-size: 180%;
  30. color: #ffa000;
  31. }
  32. #access {
  33. margin-top: 2em;
  34. text-align: center;
  35. }
  36. #access button {
  37. font-family: Arial;
  38. color: #ffa000;
  39. font-size: 20px;
  40. padding: 10px 20px 10px 20px;
  41. border: solid #ffa000 3px;
  42. text-decoration: none;
  43. background-color: #101010;
  44. }
  45. #access button:hover {
  46. background: #ffa000;
  47. text-decoration: none;
  48. color: black;
  49. cursor: pointer;
  50. }
  51. .ascii {
  52. font-size: 0.5em;
  53. line-height: 1em;
  54. }
  55. .hide {
  56. visibility: hidden;
  57. }
  58. .none {
  59. display: none;
  60. }
  61. .line {
  62. margin: 0 auto;
  63. /*border-right: 2px solid rgba(255,255,255,.75);*/
  64. font-size: 180%;
  65. text-align: center;
  66. white-space: nowrap;
  67. overflow: hidden;
  68. transform: translateY(-50%);
  69. }
  70. .covenant {
  71. font-family: "Covenant" !important;
  72. }
  73. /* Animation */
  74. .anim-typewriter{
  75. animation: typewriter 4s steps(44) 1s 1 normal both,
  76. blinkTextCursor 500ms steps(44) infinite normal;
  77. }
  78. @keyframes typewriter{
  79. from{width: 0;}
  80. to{width: 24em;}
  81. }
  82. /*@keyframes blinkTextCursor{
  83. from{border-right-color: rgba(255,255,255,.75);}
  84. to{border-right-color: transparent;}
  85. }*/