| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .home {
- background: #EDEDED;
- &_head {
- width: 100%;
- display: flex;
- flex-direction: row;
- align-items: center;
- background: #FFFFFF;
- padding: 20px;
- .picker {
- width: 180px;
- padding: 10px 0;
- border-radius: 30px;
- font-size: 24px;
- background: #0079c2;
- color: #FFFFFF;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .input {
- font-size: 24px;
- padding: 10px 30px;
- margin: 0 20px;
- background: #EDEDED;
- border-radius: 30px;
- }
- .button {
- white-space: nowrap;
- background: #0079c2;
- border-radius: 10px;
- padding: 10px 20px;
- font-size: 24px;
- color: #FFFFFF;
- }
- }
- }
|