_blog.scss 808 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. body{
  2. #start{
  3. width: 100%;
  4. height: 100%;
  5. }
  6. #page-wrapper.blog{
  7. #start{
  8. position: relative;
  9. top: 200vh;
  10. left: 0;
  11. padding-top: 110px;
  12. opacity: 0;
  13. &.visible{
  14. opacity: 1;
  15. }
  16. }
  17. }
  18. }
  19. #items{
  20. .cat-list{
  21. padding: 0 5px;
  22. ul{
  23. li{
  24. display: flex;
  25. &::after{
  26. width: 5px;
  27. content: " ";
  28. }
  29. &:hover{
  30. &::after{
  31. content: "\002022";
  32. }
  33. }
  34. }
  35. }
  36. }
  37. .full-works{
  38. width: 100%;
  39. }
  40. .card{
  41. margin-bottom: 10px;
  42. min-width: 200px;
  43. }
  44. &.fixed{
  45. // .cat-list{
  46. // position: fixed;
  47. // top: 80px;
  48. // z-index: 999;
  49. // background: white;
  50. // }
  51. // .full-works{
  52. // margin-top: 60px;
  53. // }
  54. }
  55. }