|
3 | 3 | margin: 4rem auto;
|
4 | 4 | padding: 0 1rem;
|
5 | 5 | }
|
6 |
| - |
7 |
| -.main h1 { |
| 6 | +.h1 { |
8 | 7 | font-size: 3rem;
|
9 | 8 | }
|
10 |
| - |
11 |
| -.main h3 { |
| 9 | +.h3 { |
12 | 10 | font-size: 1rem;
|
13 | 11 | font-family: var(--ifm-font-family-base);
|
14 | 12 | }
|
15 | 13 |
|
16 |
| -.main section { |
| 14 | +.dashboard-docs-stackblitz { |
| 15 | + display: flex; |
| 16 | + align-items: baseline; |
| 17 | + gap: 1rem; |
| 18 | + margin-top: 2rem; |
| 19 | +} |
| 20 | +.dashboard-docs-stackblitz h2, |
| 21 | +.dashboard-docs-stackblitz p { |
| 22 | + margin-bottom: 0.5rem; |
| 23 | +} |
| 24 | + |
| 25 | +.options-and-uppy { |
17 | 26 | position: relative;
|
18 | 27 | border-radius: 5px;
|
19 | 28 | margin-bottom: 1rem;
|
|
23 | 32 | rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
|
24 | 33 | rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
|
25 | 34 | }
|
26 |
| - |
27 |
| -.main input[type='checkbox'] { |
| 35 | +.options { |
| 36 | + display: grid; |
| 37 | + grid-template-columns: repeat(2, minmax(0, 1fr)); |
| 38 | + gap: 1rem; |
| 39 | + min-height: 500px; |
| 40 | + max-width: 30rem; |
| 41 | + border-radius: 5px; |
| 42 | + padding: 1rem; |
| 43 | +} |
| 44 | +.options input[type='checkbox'] { |
28 | 45 | accent-color: #f37;
|
| 46 | + margin-right: 5px; |
| 47 | + margin-left: 0; |
29 | 48 | }
|
30 |
| - |
31 |
| -.main input[type='checkbox']:not(:checked, :disabled):hover + label { |
| 49 | +.options-inner > div { |
| 50 | + display: flexl; |
| 51 | + align-items: center; |
| 52 | + margin: 0.25rem 0; |
| 53 | +} |
| 54 | +.options input[type='checkbox']:not(:checked, :disabled):hover + label { |
32 | 55 | color: black;
|
33 | 56 | }
|
34 |
| - |
35 |
| -.main input[type='checkbox']:disabled:hover, |
36 |
| -.main input[type='checkbox']:disabled:hover + label { |
| 57 | +.options input[type='checkbox']:disabled:hover, |
| 58 | +.options input[type='checkbox']:disabled:hover + label { |
37 | 59 | cursor: not-allowed;
|
38 | 60 | }
|
39 |
| - |
40 |
| -.main select { |
| 61 | +.options select { |
41 | 62 | grid-column: 1 / 3;
|
42 | 63 | background: white;
|
43 | 64 | padding: 0.2rem 1rem;
|
|
46 | 67 | border-radius: 5px;
|
47 | 68 | }
|
48 | 69 |
|
49 |
| -.header { |
50 |
| - display: flex; |
51 |
| - align-items: baseline; |
52 |
| - gap: 1rem; |
53 |
| - margin-top: 2rem; |
54 |
| -} |
55 |
| - |
56 |
| -.header h2, |
57 |
| -.header p { |
58 |
| - margin-bottom: 0.5rem; |
59 |
| -} |
60 |
| - |
61 |
| -.options { |
62 |
| - display: grid; |
63 |
| - grid-template-columns: repeat(2, minmax(0, 1fr)); |
64 |
| - gap: 1rem; |
65 |
| - min-height: 500px; |
66 |
| - max-width: 30rem; |
67 |
| - border-radius: 5px; |
68 |
| - padding: 1rem; |
69 |
| -} |
70 |
| - |
71 |
| -.options-wrapper > div { |
72 |
| - display: flexl; |
73 |
| - align-items: center; |
74 |
| - margin: 0.25rem 0; |
| 70 | +.dashboard-inner { |
| 71 | + position: relative; |
| 72 | + z-index: 1; |
75 | 73 | }
|
76 | 74 |
|
77 | 75 | @media screen and (min-width: 60rem) {
|
|
86 | 84 | .options > div:first-of-type {
|
87 | 85 | grid-column: 1 / 3;
|
88 | 86 | }
|
89 |
| - .options-wrapper[wrapper-for='Remote sources'] { |
| 87 | + .options-inner[wrapper-for='Remote sources'] { |
90 | 88 | display: grid;
|
91 | 89 | grid-template-columns: repeat(2, minmax(0, 1fr));
|
92 | 90 | }
|
93 |
| - .main > section { |
| 91 | + .options-and-uppy { |
94 | 92 | display: grid;
|
95 | 93 | grid-template-columns: minmax(20rem, 1fr) 2fr;
|
96 | 94 | }
|
97 | 95 | }
|
98 |
| - |
99 |
| -.dashboard-inner { |
100 |
| - position: relative; |
101 |
| - z-index: 1; |
102 |
| -} |
0 commit comments