trave.page.scss 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. .page-color{
  2. background: linear-gradient(220.55deg, #B7DCFF 0%, #ffffff 100%);
  3. height: 100vh;
  4. overflow: auto;
  5. }
  6. .search-container {
  7. display: flex;
  8. align-items: center;
  9. width: 300px;
  10. height: 40px;
  11. border-radius: 20px;
  12. overflow: hidden;
  13. background-color: #f2f2f2;
  14. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  15. transition: width 0.3s;
  16. }
  17. .search-container.active {
  18. width: 400px;
  19. border-radius: 4px;
  20. }
  21. .search-input {
  22. flex: 1;
  23. height: 100%;
  24. padding: 0 10px;
  25. border: none;
  26. background-color: transparent;
  27. font-size: 14px;
  28. }
  29. .search-button {
  30. width: 40px;
  31. height: 100%;
  32. display: flex;
  33. align-items: center;
  34. justify-content: center;
  35. background-color: #007bff;
  36. color: #fff;
  37. border: none;
  38. cursor: pointer;
  39. transition: background-color 0.3s;
  40. }
  41. .search-button:hover {
  42. background-color: #0056b3;
  43. }
  44. .grid-with-background {
  45. background-size: cover;
  46. background-position: center;
  47. }
  48. .bar-icon{
  49. padding-inline: 25px;
  50. border-radius: 10px;
  51. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  52. }
  53. .project-bar-container {
  54. display: flex;
  55. overflow-x: scroll;
  56. width: 100%;
  57. }
  58. .project-item {
  59. display: flex;
  60. flex-direction: column;
  61. align-items: center;
  62. margin: 5px;
  63. padding: 10px;
  64. border-radius: 20px;
  65. background-color: #ffffff;
  66. color: #000000;
  67. }
  68. .project-name {
  69. margin-top: 5px;
  70. }
  71. .capsule-box {
  72. border-radius: 20px;
  73. background-color: #ffffff;
  74. border: 1px solid #000000;
  75. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  76. }