_home.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. #body-wrapper{
  2. #items{
  3. .works-mea{
  4. display: inline-flex;
  5. width: 100%;
  6. height: 50vh;
  7. align-items: flex-end;
  8. .card{
  9. .card-image{
  10. img{
  11. width: 100%;
  12. height: auto;
  13. }
  14. }
  15. }
  16. }
  17. .scroll{
  18. width: 100%;
  19. height: 15px;
  20. margin: 0 auto;
  21. overflow: hidden;
  22. position: relative;
  23. width: 50px;
  24. & > p:nth-child(1){
  25. text-align: center;
  26. position: absolute;
  27. top: -20px;
  28. animation: translatep1 2s infinite linear;
  29. }
  30. & > p:nth-child(2){
  31. text-align: center;
  32. position: absolute;
  33. top: -20px;
  34. animation: translatep1 2s infinite linear;
  35. animation-delay: 1s;
  36. }
  37. }
  38. .cat-list{
  39. width: 100%;
  40. height: auto;
  41. border-top: 1px solid black;
  42. border-bottom: 1px solid black;
  43. padding: 10px 0;
  44. margin: 20px 0;
  45. ul{
  46. display: inline-flex;
  47. li{
  48. margin-right: 10px;
  49. }
  50. }
  51. }
  52. .full-works{
  53. display: inline-flex;
  54. flex-wrap: wrap;
  55. }
  56. }
  57. }