style.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /* latin-ext */
  2. @font-face {
  3. font-family: 'Raleway';
  4. font-style: normal;
  5. font-weight: 400;
  6. src: local('Raleway'), local('Raleway-Regular'), url('fonts/font1.woff2') format('woff2');
  7. unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
  8. }
  9. /* latin */
  10. @font-face {
  11. font-family: 'Raleway';
  12. font-style: normal;
  13. font-weight: 400;
  14. src: local('Raleway'), local('Raleway-Regular'), url('fonts/font2.woff2') format('woff2');
  15. unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
  16. }
  17. body {
  18. text-align: center;
  19. margin: 0;
  20. padding: 0;
  21. background-color: #001f5b;
  22. }
  23. .logo {
  24. margin-top: 30px;
  25. }
  26. .footer {
  27. position: absolute;
  28. bottom: 0;
  29. width: 100%;
  30. z-index: -1;
  31. opacity: 0.5;
  32. }
  33. .footer img {
  34. max-width: 100%;
  35. vertical-align: middle;
  36. }
  37. .sentence {
  38. margin: 70px auto 0 auto;
  39. }
  40. .line {
  41. margin-bottom: 30px;
  42. transform: translateX(-100%) rotate(-20deg);
  43. }
  44. .slide-in {
  45. animation: slide-in .5s forwards ease-in;
  46. }
  47. .line3.slide-in {
  48. animation: slide-in 1s forwards ease-in;
  49. }
  50. .line2.slide-in {
  51. animation: slide-in 1.2s forwards ease-in;
  52. }
  53. @keyframes slide-in {
  54. 100% {
  55. transform: translateX(0%);
  56. }
  57. }
  58. .result {
  59. position: relative;
  60. display: inline-block;
  61. padding: 0 20px;
  62. margin: 0 10px;
  63. color: white;
  64. height: 175px;
  65. width: 330px;
  66. }
  67. .result .word {
  68. display: inline-block;
  69. font-family: 'Raleway', sans-serif;
  70. font-size: 45px;
  71. color: white;
  72. line-height: 155px;
  73. height: 175px;
  74. vertical-align: middle;
  75. margin-top: 20px;
  76. }
  77. .result .hostname {
  78. position: absolute;
  79. width: 100%;
  80. left: 0;
  81. bottom: 8px;
  82. font-size: 0.8em;
  83. height: 14px;
  84. }
  85. .noun {
  86. background-image: url('images/lego_blue.png') !important;
  87. }
  88. .verb {
  89. background-image: url('images/lego_yellow.png') !important;
  90. }
  91. .adjective {
  92. background-image: url('images/lego_light_blue.png') !important;
  93. }