|
3 | 3 | font-family: 'Outfit', sans-serif;
|
4 | 4 | }
|
5 | 5 | .buttons-container {
|
6 |
| - //color: #ff0000; |
7 |
| - margin: 0 1% 0 1%; |
8 |
| - display: grid; |
9 |
| - grid-template-columns: repeat(5, 1fr); |
10 |
| - grid-gap: 1%; |
11 |
| - padding: 1% 0 1% 0; |
| 6 | + display: flex; |
| 7 | + align-items: center; |
| 8 | + background: white; |
| 9 | + border-top: 1px solid #e5e7eb; |
| 10 | + width: 100%; |
12 | 11 | }
|
13 | 12 |
|
14 |
| -.introjs-tooltip { |
15 |
| - color: black; |
16 |
| - background-color: white; |
17 |
| - min-width: 20rem; |
| 13 | +.buttons-wrapper { |
| 14 | + display: flex; |
| 15 | + align-items: center; |
| 16 | + justify-content: space-between; |
| 17 | + max-width: 1200px; |
| 18 | + width: 100%; |
| 19 | + margin: 0 auto; |
| 20 | + padding: 0 24px; |
| 21 | + gap: 16px; |
18 | 22 | }
|
19 |
| -.introjs-tooltiptext ul { |
20 |
| - padding-left: 2px; |
| 23 | + |
| 24 | +.introjs-button { |
| 25 | + background-color: #f0f0f0; |
| 26 | + color: #000; |
| 27 | + //border: 1px solid #ccc; |
| 28 | + //border-radius: 20px; |
| 29 | + outline: none; |
| 30 | + padding: 8px 20px; |
| 31 | + font-size: 14px; |
| 32 | + transition: |
| 33 | + background-color 0.3s ease, |
| 34 | + color 0.3s ease; |
21 | 35 | }
|
22 | 36 |
|
23 |
| -// .introjs-helperLayer{ |
24 |
| -// // border: 2px solid yellow |
25 |
| -// } |
| 37 | +.introjs-button:hover { |
| 38 | + background-color: #6cff87; |
| 39 | + color: #000 !important; |
| 40 | + border: 1px solid #6cff87; |
| 41 | +} |
26 | 42 |
|
27 |
| -.tools-container { |
28 |
| - display: flex; |
29 |
| - justify-content: space-between; |
30 |
| - border: 0.5px solid grey; |
31 |
| - background-color: #35383e; |
32 |
| - padding: 3px; |
33 |
| - margin-bottom: 1rem; |
| 43 | +.introjs-skipbutton { |
| 44 | + height: 16px; |
| 45 | + width: auto; |
| 46 | + background-color: #f0f0f0; |
| 47 | + color: #000; |
| 48 | + //border: 1px solid #ccc; |
| 49 | + //border-radius: 10px; |
| 50 | + padding: 8px 8px; |
| 51 | + font-size: 12px; |
| 52 | + text-align: center; |
| 53 | + line-height: normal; |
| 54 | + transition: |
| 55 | + background-color 0.3s ease, |
| 56 | + color 0.3s ease; |
34 | 57 | }
|
35 | 58 |
|
36 |
| -#seriesname { |
37 |
| - background-color: #333; |
38 |
| - color: white; |
| 59 | +.introjs-skipbutton:hover { |
| 60 | + background-color: #ff4d4d; |
| 61 | + color: #fff; |
| 62 | + border: 1px solid #ff4d4d; |
39 | 63 | }
|
40 | 64 |
|
41 |
| -@media (max-width: 500px) { |
42 |
| - .buttons-container { |
43 |
| - //color: #ff0000; |
44 |
| - grid-template-columns: repeat(2, 1fr); |
45 |
| - } |
| 65 | +.introjs-tooltip-title { |
| 66 | + font-size: 18px; |
| 67 | + font-weight: bold; |
| 68 | + color: #000; |
46 | 69 | }
|
47 | 70 |
|
48 |
| -.introjs-nextbutton { |
49 |
| - background-color: none; |
50 |
| - color: #3256f1; |
51 |
| - border: 1px solid; |
52 |
| - outline: none; |
| 71 | +.introjs-tooltiptext { |
| 72 | + font-size: 14px; |
| 73 | + // color: #333; |
53 | 74 | }
|
54 | 75 |
|
55 |
| -.introjs-prevbutton { |
56 |
| - background-color: none; |
57 |
| - color: #3256f1; |
58 |
| - border: 1px solid; |
59 |
| - outline: none; |
| 76 | +.introjs-progressbar { |
| 77 | + background-color: #6cff87; |
60 | 78 | }
|
61 | 79 |
|
62 |
| -.introjs-skipbutton { |
63 |
| - color: #d72828; |
64 |
| - border: 1px solid; |
65 |
| - margin-top: 2px; |
66 |
| - font-size: 16px; |
67 |
| - outline: none; |
| 80 | +.introjs-overlay { |
| 81 | + background-color: rgba(0, 0, 0, 0.7); |
68 | 82 | }
|
69 | 83 |
|
70 |
| -.introjs-button { |
71 |
| - background: none; |
72 |
| - outline: none; |
| 84 | +.introjs-helperLayer { |
| 85 | + box-shadow: 0 0 10px 3px rgba(108, 255, 135, 0.7); |
| 86 | + border-radius: 8px; |
73 | 87 | }
|
74 | 88 |
|
| 89 | +#seriesname { |
| 90 | + background-color: #333; |
| 91 | + color: white; |
| 92 | +} |
75 | 93 | .dialog-pop-up {
|
76 | 94 | border: 1px solid #ff0001;
|
77 | 95 | box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
|
|
0 commit comments