_home.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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: -webkit-inline-box;
  24. display: -ms-inline-flexbox;
  25. display: inline-flex;
  26. margin: 10px 0;
  27. .btn-group{
  28. display: -webkit-box;
  29. display: -ms-flexbox;
  30. display: flex;
  31. margin-right: 10px;
  32. &::after{
  33. width: 5px;
  34. content: " ";
  35. }
  36. &:hover{
  37. &::after{
  38. content: "\002022";
  39. }
  40. }
  41. input{
  42. display: none;
  43. }
  44. }
  45. }
  46. }
  47. #items{
  48. .full-works{
  49. .card{
  50. width: calc( (100vw / 3 - calc( 41px / 3 ) ) );
  51. }
  52. }
  53. }
  54. }
  55. .down{
  56. .cat-list{
  57. &::after{
  58. -webkit-animation: showborder 2.5s 1.6s ease forwards;
  59. animation: showborder 2.5s 1.6s ease forwards;
  60. }
  61. ul{
  62. -webkit-animation: ultranslate 1s 2.5s ease forwards;
  63. animation: ultranslate 1s 2.5s ease forwards;
  64. }
  65. }
  66. }
  67. }