template.scss 744 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .home {
  2. background: #EDEDED;
  3. &_head {
  4. width: 100%;
  5. display: flex;
  6. flex-direction: row;
  7. align-items: center;
  8. background: #FFFFFF;
  9. padding: 20px;
  10. .picker {
  11. width: 180px;
  12. padding: 10px 0;
  13. border-radius: 30px;
  14. font-size: 24px;
  15. background: #0079c2;
  16. color: #FFFFFF;
  17. display: flex;
  18. align-items: center;
  19. justify-content: center;
  20. }
  21. .input {
  22. font-size: 24px;
  23. padding: 10px 30px;
  24. margin: 0 20px;
  25. background: #EDEDED;
  26. border-radius: 30px;
  27. }
  28. .button {
  29. white-space: nowrap;
  30. background: #0079c2;
  31. border-radius: 10px;
  32. padding: 10px 20px;
  33. font-size: 24px;
  34. color: #FFFFFF;
  35. }
  36. }
  37. }