style.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. .hide {
  48. visibility: hidden;
  49. }
  50. .none {
  51. display: none;
  52. }
  53. .line {
  54. margin: 0 auto;
  55. /*border-right: 2px solid rgba(255,255,255,.75);*/
  56. font-size: 180%;
  57. text-align: center;
  58. white-space: nowrap;
  59. overflow: hidden;
  60. transform: translateY(-50%);
  61. }
  62. /* Animation */
  63. .anim-typewriter{
  64. animation: typewriter 4s steps(44) 1s 1 normal both,
  65. blinkTextCursor 500ms steps(44) infinite normal;
  66. }
  67. @keyframes typewriter{
  68. from{width: 0;}
  69. to{width: 24em;}
  70. }
  71. /*@keyframes blinkTextCursor{
  72. from{border-right-color: rgba(255,255,255,.75);}
  73. to{border-right-color: transparent;}
  74. }*/