style.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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 img{
  24. margin: -50px 0;
  25. width: 435px;
  26. }
  27. .footer {
  28. position: absolute;
  29. bottom: 0;
  30. width: 100%;
  31. z-index: -1;
  32. opacity: 0.5;
  33. }
  34. .footer img {
  35. max-width: 100%;
  36. vertical-align: middle;
  37. }
  38. .sentence {
  39. margin: 70px auto 0 auto;
  40. }
  41. .line {
  42. margin-bottom: 30px;
  43. transform: translateX(-100%) rotate(-20deg);
  44. }
  45. .slide-in {
  46. animation: slide-in .5s forwards ease-in;
  47. }
  48. .line3.slide-in {
  49. animation: slide-in 1s forwards ease-in;
  50. }
  51. .line2.slide-in {
  52. animation: slide-in 1.2s forwards ease-in;
  53. }
  54. @keyframes slide-in {
  55. 100% {
  56. transform: translateX(0%);
  57. }
  58. }
  59. .result {
  60. position: relative;
  61. display: inline-block;
  62. padding: 0 20px;
  63. margin: 0 10px;
  64. color: white;
  65. height: 175px;
  66. width: 330px;
  67. }
  68. .result .word {
  69. display: inline-block;
  70. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  71. font-size: 45px;
  72. color: white;
  73. line-height: 155px;
  74. height: 175px;
  75. vertical-align: middle;
  76. margin-top: 20px;
  77. }
  78. .result .hostname {
  79. position: absolute;
  80. width: 100%;
  81. left: 0;
  82. bottom: 8px;
  83. font-size: 0.8em;
  84. height: 14px;
  85. }
  86. .noun {
  87. background-image: url('images/lego_blue.png') !important;
  88. }
  89. .verb {
  90. background-image: url('images/lego_yellow.png') !important;
  91. }
  92. .adjective {
  93. background-image: url('images/lego_light_blue.png') !important;
  94. }