_home.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .blog{
  2. #start{
  3. .cat-list {
  4. width: 100%;
  5. z-index: 999;
  6. left: -100%;
  7. &::before{
  8. display: block;
  9. content: " ";
  10. width: 0%;
  11. height: 1px;
  12. background: black;
  13. }
  14. &::after {
  15. display: block;
  16. content: " ";
  17. width: 0%;
  18. height: 1px;
  19. background: black;
  20. }
  21. ul {
  22. opacity: 0;
  23. display: inline-flex;
  24. margin: 10px 0;
  25. .btn-group{
  26. display: flex;
  27. margin-right: 10px;
  28. &::after{
  29. width: 5px;
  30. content: " ";
  31. }
  32. &:hover{
  33. &::after{
  34. content: "\002022";
  35. }
  36. }
  37. input{
  38. display: none;
  39. }
  40. }
  41. }
  42. }
  43. #items{
  44. .full-works{
  45. .card{
  46. width: calc((100vw / 3) - 6.5px);
  47. }
  48. }
  49. }
  50. }
  51. .down{
  52. .cat-list{
  53. left: 0;
  54. &::after{
  55. animation: showborder 2.5s 1.6s ease forwards;
  56. }
  57. ul{
  58. animation: ultranslate 1s 2.5s ease forwards;
  59. }
  60. }
  61. }
  62. }