@tattvafoundation/upyog-css 1.0.22 → 1.0.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +34 -1
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/bmc.scss +30 -0
package/dist/index.css
CHANGED
|
@@ -8877,7 +8877,38 @@ body {
|
|
|
8877
8877
|
--background-dark:#f8f9fa;
|
|
8878
8878
|
--border-color:#ddd;
|
|
8879
8879
|
--shadow-color:rgba(0,0,0,0.1);
|
|
8880
|
-
--modal-background:#fff;
|
|
8880
|
+
--modal-background:#fff;
|
|
8881
|
+
--background-color:#fff;
|
|
8882
|
+
--text-color:#000; }
|
|
8883
|
+
|
|
8884
|
+
body, html {
|
|
8885
|
+
font-size: var(--base-font-size); }
|
|
8886
|
+
|
|
8887
|
+
body {
|
|
8888
|
+
background-color: #fff;
|
|
8889
|
+
background-color: var(--background-color);
|
|
8890
|
+
color: #000;
|
|
8891
|
+
color: var(--text-color); }
|
|
8892
|
+
|
|
8893
|
+
.theme-toggle-btn, body {
|
|
8894
|
+
-webkit-transition: background-color .3s ease,color .3s ease;
|
|
8895
|
+
transition: background-color .3s ease,color .3s ease; }
|
|
8896
|
+
|
|
8897
|
+
.theme-toggle-btn {
|
|
8898
|
+
font-size: 16px;
|
|
8899
|
+
padding: 8px 12px;
|
|
8900
|
+
border: none;
|
|
8901
|
+
cursor: pointer;
|
|
8902
|
+
margin: 5px; }
|
|
8903
|
+
|
|
8904
|
+
.theme-toggle-btn.dark {
|
|
8905
|
+
background-color: #000;
|
|
8906
|
+
color: #fff; }
|
|
8907
|
+
|
|
8908
|
+
.theme-toggle-btn.light {
|
|
8909
|
+
background-color: #fff;
|
|
8910
|
+
color: #000;
|
|
8911
|
+
border: 1px solid #000; }
|
|
8881
8912
|
|
|
8882
8913
|
.timeline-box {
|
|
8883
8914
|
display: -webkit-box;
|
|
@@ -9170,10 +9201,12 @@ body {
|
|
|
9170
9201
|
height: 4px; }
|
|
9171
9202
|
|
|
9172
9203
|
.bmc-range-slider::-webkit-slider-thumb:before {
|
|
9204
|
+
color: #000;
|
|
9173
9205
|
color: var(--text-color); }
|
|
9174
9206
|
|
|
9175
9207
|
.bmc-pagination li button {
|
|
9176
9208
|
background-color: var(--background-dark);
|
|
9209
|
+
color: #000;
|
|
9177
9210
|
color: var(--text-color); }
|
|
9178
9211
|
|
|
9179
9212
|
.bmc-pagination li.active button {
|