]>
Commit | Line | Data |
---|---|---|
fa12eacc C |
1 | @use '_variables'; |
2 | @use '_mixins'; | |
63c4db6d | 3 | |
21e493d4 C |
4 | $form-base-input-width: 340px; |
5 | ||
76314386 RK |
6 | label { |
7 | font-weight: $font-regular; | |
8 | font-size: 100%; | |
9 | } | |
10 | ||
11 | .account-title { | |
12 | @include settings-big-title; | |
1fe1e14c RK |
13 | |
14 | &.account-title-danger { | |
15 | color: lighten($color: #c54130, $amount: 10); | |
16 | } | |
04e0fc48 C |
17 | } |
18 | ||
19 | input:not([type=submit]) { | |
21e493d4 | 20 | @include peertube-input-text($form-base-input-width); |
04e0fc48 C |
21 | display: block; |
22 | } | |
23 | ||
d89fcd1e | 24 | my-input-toggle-hidden { |
21e493d4 | 25 | @include responsive-width($form-base-input-width); |
d89fcd1e C |
26 | |
27 | display: block; | |
28 | } | |
29 | ||
15a7387d | 30 | .peertube-select-container { |
21e493d4 C |
31 | @include peertube-select-container($form-base-input-width); |
32 | } | |
33 | ||
34 | my-select-custom-value { | |
35 | @include responsive-width($form-base-input-width); | |
36 | ||
37 | display: block; | |
04e0fc48 C |
38 | } |
39 | ||
931d3430 C |
40 | input[type=submit], |
41 | button { | |
04e0fc48 C |
42 | @include peertube-button; |
43 | @include orange-button; | |
d6ca951b C |
44 | |
45 | margin-top: 10px; | |
04e0fc48 C |
46 | } |
47 | ||
6a84aafd C |
48 | .transcoding-information { |
49 | margin-top: 5px; | |
50 | font-size: 11px; | |
51 | } | |
328c78bc | 52 | |
b426edd4 C |
53 | .danger-zone { |
54 | .reset-password-email { | |
55 | margin-bottom: 30px; | |
b426edd4 C |
56 | |
57 | button { | |
97990c6e RK |
58 | @include peertube-button; |
59 | @include danger-button; | |
60 | @include disable-outline; | |
61 | ||
b426edd4 C |
62 | display: block; |
63 | margin-top: 0; | |
64 | } | |
65 | } | |
66 | } | |
76314386 RK |
67 | |
68 | .breadcrumb { | |
69 | @include breadcrumb; | |
70 | } | |
71 | ||
72 | .dashboard { | |
73 | @include dashboard; | |
74 | max-width: 900px; | |
75 | } |