_blog.scss 618 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. body{
  2. #start{
  3. height: 100%;
  4. }
  5. #page-wrapper.blog{
  6. #start{
  7. width: calc(100% - 20px);
  8. height: calc(100% - 5rem);
  9. position: fixed;
  10. top: 100vh;
  11. left: 10px;
  12. right: 10px;
  13. }
  14. }
  15. #page-wrapper.down{
  16. #start{
  17. top: 5rem;
  18. }
  19. #items{
  20. -webkit-animation: showcard 1.5s 2.5s ease forwards;
  21. animation: showcard 1.5s 2.5s ease forwards;
  22. .card{
  23. }
  24. }
  25. }
  26. }
  27. .blog{
  28. #items{
  29. opacity: 0;
  30. .full-works{
  31. width: 100%;
  32. margin-top: 30px;
  33. }
  34. .card{
  35. margin-bottom: 10px;
  36. min-width: 200px;
  37. }
  38. }
  39. }