about summary refs log tree commit diff
path: root/templates/assets/onboarding.css
blob: bf770af586895ff2f6a712ff7e93b89cee88754c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
form.onboarding > ul#progressbar > li.active {
    font-weight: bold;
}
form.onboarding > ul#progressbar {
    display: flex;
    list-style: none;
    justify-content: space-around;
    padding: 0;
}

form.onboarding > fieldset > div.switch_card_buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
form.onboarding > fieldset > div.switch_card_buttons button:last-child {
    margin-left: auto;
}
.form_group, .multi_input {
    display: flex;
    flex-direction: column;
}
.multi_input {
    align-items: start;
}
.multi_input > input {
    width: 100%;
    align-self: stretch;
}
form.onboarding > fieldset > .form_group + * {
    margin-top: .75rem;
}
form.onboarding textarea {
    width: 100%;
    resize: vertical;
}