Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

_day-component.scss 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. .day-component-container {
  2. display: flex;
  3. flex-direction: column;
  4. height: 143px;
  5. width: 178px;
  6. border: 1px solid #f4f4f4;
  7. padding: 17px;
  8. transition: 0.5s;
  9. }
  10. .day-component-container:hover{
  11. cursor: pointer;
  12. scale: 1.02;
  13. animation-timing-function: ease-in-out;
  14. animation-duration: 300ms;
  15. }
  16. .day-component-container:hover {
  17. height: 151px;
  18. width: 184px;
  19. left: 489px;
  20. top: 244px;
  21. border-radius: 12px;
  22. background: linear-gradient(0deg, #e8f7ff, #e8f7ff),
  23. linear-gradient(0deg, #226cb0, #226cb0);
  24. border: 1px solid #226cb0;
  25. }
  26. .day-component-day-informations-container {
  27. display: flex;
  28. height: fit-content;
  29. margin-bottom: 5px;
  30. }
  31. .day-component-day-number {
  32. font-family: Source Sans Pro;
  33. font-size: 16px;
  34. font-weight: 600;
  35. line-height: 20px;
  36. letter-spacing: 0em;
  37. text-align: left;
  38. color: linear-gradient(0deg, #353535, #353535),
  39. linear-gradient(0deg, #272727, #272727);
  40. }
  41. .day-component-day-name {
  42. font-family: Source Sans Pro;
  43. font-size: 12px;
  44. font-weight: 400;
  45. line-height: 15px;
  46. letter-spacing: 0em;
  47. text-align: left;
  48. align-self: flex-end;
  49. margin-left: 3px;
  50. }
  51. .day-component-interviews-container {
  52. display: flex;
  53. }
  54. .day-component-interviews-time {
  55. font-family: Source Sans Pro;
  56. font-size: 12px;
  57. font-weight: 400;
  58. line-height: 15px;
  59. letter-spacing: 0em;
  60. text-align: left;
  61. align-self: flex-end;
  62. }
  63. .day-component-interviews-name {
  64. font-family: Source Sans Pro;
  65. font-size: 16px;
  66. font-weight: 600;
  67. line-height: 20px;
  68. letter-spacing: 0em;
  69. text-align: left;
  70. color: #353535;
  71. margin-left: 3px;
  72. }
  73. .day-component-more {
  74. height: 15px;
  75. width: fit-content;
  76. font-family: Source Sans Pro;
  77. font-size: 12px;
  78. font-weight: 400;
  79. line-height: 15px;
  80. letter-spacing: 0em;
  81. text-align: left;
  82. color: #226CB0;
  83. font-style: normal;
  84. text-decoration-line: underline;
  85. cursor: pointer;
  86. margin-top: 21px;
  87. }