12345678910111213141516171819202122232425262728293031323334353637383940 |
- .form {
- display: flex;
- flex-flow: column nowrap;
- justify-content: space-between;
- align-self: center;
- }
- .dropdowns {
- width: 100%;
- flex: 3;
- max-width: 350px;
- margin-top: 5px;
- display: flex;
- flex-flow: row wrap;
- justify-content: space-around;
- align-items: flex-end;
- }
- .buttoncontainer {
- display: flex;
- flex-flow: row nowrap;
- justify-content: space-between;
- align-items: center;
- padding: 0px 8px 8px 8px;
- border-bottom: 4px solid #333;
- margin-bottom: 12px;
- }
- .favbutton {
- border-radius: 0%;
- height: 24px;
- width: 24px;
- /* padding: 8px 8px 8px 8px; */
- }
- .start {
- height: 100%;
- flex: 3 1;
- margin-bottom: 6px;
- }
|