style.css 1.6 KB

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