home.css 956 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. .home {
  2. height: 100vh;
  3. padding: 0;
  4. margin: 0;
  5. color: #f9fafc;
  6. overflow: hidden;
  7. }
  8. .background {
  9. height: 100%;
  10. width: 100%;
  11. padding: 0;
  12. margin: 0;
  13. background-image: url("/assets/img/background/flower.jpg");
  14. background-attachment: fixed;
  15. transform: scale(1.1);
  16. filter: blur(3px);
  17. -webkit-filter: blur(3px);
  18. background-size: cover;
  19. }
  20. .content {
  21. position: relative;
  22. top: -80%;
  23. height: 75%;
  24. }
  25. .home img {
  26. width: 160px;
  27. max-width: 50%;
  28. height: auto;
  29. }
  30. .home .greeting {
  31. color: #f9fafc;
  32. }
  33. .home .typing-carousel {
  34. font-size: 14pt;
  35. color: #f0f0f0;
  36. }
  37. #typing-carousel-data {
  38. display: none;
  39. }
  40. .arrow {
  41. position: absolute;
  42. color: #f9fafc;
  43. font-size: 1.5rem;
  44. bottom: 0;
  45. }
  46. .bounce {
  47. animation: bounce 2s infinite;
  48. }
  49. @keyframes bounce {
  50. 0%,
  51. 20%,
  52. 50%,
  53. 80%,
  54. 100% {
  55. transform: translateY(0);
  56. }
  57. 40% {
  58. transform: translateY(-30px);
  59. }
  60. 60% {
  61. transform: translateY(-15px);
  62. }
  63. }