_home.scss 1.4 KB

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