holygrail2 1.2.2 → 1.2.4
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/style.css +109 -118
- package/dist/style.css.map +1 -1
- package/doc/docs.css +15 -12
- package/doc/docs.css.map +1 -1
- package/index.html +24 -8
- package/package.json +1 -1
- package/scss/base/_animations.scss +0 -7
- package/scss/base/_guide.scss +0 -7
- package/scss/base/_helpers.scss +14 -50
- package/scss/base/_rtl.scss +0 -4
- package/scss/base/_types.scss +1 -4
- package/scss/docs.scss +14 -46
- package/scss/elements/_animated.scss +3 -6
- package/scss/elements/_buttons.scss +4 -13
- package/scss/elements/_checkbox.scss +0 -9
- package/scss/elements/_form.scss +1 -2
- package/scss/elements/_list.scss +0 -1
- package/scss/elements/_sidebar.scss +0 -12
- package/scss/elements/_tabs.scss +19 -90
- package/scss/elements/_tabs_specials.scss +0 -33
- package/scss/elements/_tag.scss +1 -1
- package/scss/layouts/_box3.scss +0 -10
- package/scss/layouts/_header.scss +1 -1
- package/scss/layouts/_header_account.scss +0 -21
- package/scss/layouts/_row1.scss +0 -18
- package/scss/layouts/_runway.scss +0 -13
package/dist/style.css
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
/*
|
|
3
3
|
Paquete: holygrail2
|
|
4
|
-
Versión: 1.
|
|
4
|
+
Versión: 1.2.4
|
|
5
5
|
*/
|
|
6
6
|
@charset "UTF-8";
|
|
7
7
|
*,
|
|
@@ -240,32 +240,26 @@ button {
|
|
|
240
240
|
}
|
|
241
241
|
|
|
242
242
|
.slide-in {
|
|
243
|
-
-webkit-animation: slide-right 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
244
243
|
animation: slide-right 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
245
244
|
}
|
|
246
245
|
|
|
247
246
|
.slide-out {
|
|
248
|
-
-webkit-animation: slide-left 300ms cubic-bezier(0.39, 0.575, 0.565, 1) both;
|
|
249
247
|
animation: slide-left 300ms cubic-bezier(0.39, 0.575, 0.565, 1) both;
|
|
250
248
|
}
|
|
251
249
|
|
|
252
250
|
.fade-in {
|
|
253
|
-
-webkit-animation: fade-in 300ms ease-in-out both;
|
|
254
251
|
animation: fade-in 300ms ease-in-out both;
|
|
255
252
|
}
|
|
256
253
|
|
|
257
254
|
.fade-out {
|
|
258
|
-
-webkit-animation: fade-out 150ms ease-in-out both;
|
|
259
255
|
animation: fade-out 150ms ease-in-out both;
|
|
260
256
|
}
|
|
261
257
|
|
|
262
258
|
.expand-top {
|
|
263
|
-
-webkit-animation: scale-up-top 700ms ease-in-out both;
|
|
264
259
|
animation: scale-up-top 700ms ease-in-out both;
|
|
265
260
|
}
|
|
266
261
|
|
|
267
262
|
.collapse-top {
|
|
268
|
-
-webkit-animation: scale-down-top 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
269
263
|
animation: scale-down-top 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
270
264
|
}
|
|
271
265
|
|
|
@@ -3014,7 +3008,6 @@ mark {
|
|
|
3014
3008
|
line-height: 1.2;
|
|
3015
3009
|
}
|
|
3016
3010
|
}
|
|
3017
|
-
/* todo una vez incluida */
|
|
3018
3011
|
.fluid-3-l {
|
|
3019
3012
|
font-family: arial, sans-serif;
|
|
3020
3013
|
font-weight: 100;
|
|
@@ -5566,18 +5559,18 @@ strong {
|
|
|
5566
5559
|
}
|
|
5567
5560
|
|
|
5568
5561
|
.ov-custom::-webkit-scrollbar-track {
|
|
5569
|
-
background-color:
|
|
5562
|
+
background-color: rgba(240, 240, 240, 0.1);
|
|
5570
5563
|
}
|
|
5571
5564
|
.ov-custom::-webkit-scrollbar-track:hover {
|
|
5572
|
-
background-color:
|
|
5565
|
+
background-color: rgba(240, 240, 240, 0.1);
|
|
5573
5566
|
}
|
|
5574
5567
|
.ov-custom::-webkit-scrollbar-thumb {
|
|
5575
|
-
background-color:
|
|
5568
|
+
background-color: rgba(102, 102, 102, 0.6);
|
|
5576
5569
|
border-radius: 16px;
|
|
5577
5570
|
border: 3px solid #fff;
|
|
5578
5571
|
}
|
|
5579
5572
|
.ov-custom::-webkit-scrollbar-thumb:hover {
|
|
5580
|
-
background-color:
|
|
5573
|
+
background-color: rgba(102, 102, 102, 0.6);
|
|
5581
5574
|
border: 2px solid #f0f0f0;
|
|
5582
5575
|
}
|
|
5583
5576
|
.ov-custom::-webkit-scrollbar-button {
|
|
@@ -5829,8 +5822,6 @@ strong {
|
|
|
5829
5822
|
|
|
5830
5823
|
.scrollcustom {
|
|
5831
5824
|
overflow: auto;
|
|
5832
|
-
/* Track */
|
|
5833
|
-
/* Handle */
|
|
5834
5825
|
}
|
|
5835
5826
|
.scrollcustom::-webkit-scrollbar {
|
|
5836
5827
|
width: 5px;
|
|
@@ -5838,77 +5829,73 @@ strong {
|
|
|
5838
5829
|
}
|
|
5839
5830
|
.scrollcustom::-webkit-scrollbar-track {
|
|
5840
5831
|
background-color: rgba(0, 0, 0, 0.1);
|
|
5841
|
-
-webkit-border-radius: 10px;
|
|
5842
5832
|
border-radius: 10px;
|
|
5843
5833
|
}
|
|
5844
5834
|
.scrollcustom::-webkit-scrollbar-thumb {
|
|
5845
|
-
-webkit-border-radius: 10px;
|
|
5846
5835
|
border-radius: 10px;
|
|
5847
5836
|
background-color: rgba(0, 0, 0, 0.6);
|
|
5848
5837
|
}
|
|
5849
|
-
.scrollcustom::-webkit-scrollbar-thumb:window-inactive {
|
|
5850
|
-
background-color: rgba(0, 0, 0, 0.6);
|
|
5851
|
-
}
|
|
5852
5838
|
|
|
5853
5839
|
.min-scrollcustom-y {
|
|
5854
5840
|
overflow: auto;
|
|
5855
|
-
/* Track */
|
|
5856
|
-
/* Handle */
|
|
5857
5841
|
}
|
|
5858
5842
|
.min-scrollcustom-y::-webkit-scrollbar {
|
|
5859
5843
|
width: 1px;
|
|
5844
|
+
height: 1px;
|
|
5860
5845
|
}
|
|
5861
5846
|
.min-scrollcustom-y::-webkit-scrollbar-track {
|
|
5862
5847
|
background-color: rgba(0, 0, 0, 0.1);
|
|
5863
|
-
-webkit-border-radius: 10px;
|
|
5864
5848
|
border-radius: 0;
|
|
5865
5849
|
}
|
|
5866
5850
|
.min-scrollcustom-y::-webkit-scrollbar-thumb {
|
|
5867
|
-
|
|
5868
|
-
border-radius: 10px;
|
|
5851
|
+
border-radius: 0;
|
|
5869
5852
|
background-color: rgba(0, 0, 0, 0.6);
|
|
5870
5853
|
}
|
|
5871
|
-
|
|
5854
|
+
|
|
5855
|
+
.min-scrollcustom-hover {
|
|
5856
|
+
overflow: auto;
|
|
5857
|
+
}
|
|
5858
|
+
.min-scrollcustom-hover::-webkit-scrollbar {
|
|
5859
|
+
width: 0;
|
|
5860
|
+
}
|
|
5861
|
+
.min-scrollcustom-hover::-webkit-scrollbar-track {
|
|
5862
|
+
background-color: rgba(0, 0, 0, 0.1);
|
|
5863
|
+
border-radius: 0;
|
|
5864
|
+
}
|
|
5865
|
+
.min-scrollcustom-hover::-webkit-scrollbar-thumb {
|
|
5866
|
+
border-radius: 10px;
|
|
5872
5867
|
background-color: rgba(0, 0, 0, 0.6);
|
|
5873
5868
|
}
|
|
5874
5869
|
|
|
5875
5870
|
.min-scrollcustom-x {
|
|
5876
5871
|
overflow: auto;
|
|
5877
|
-
/* Track */
|
|
5878
|
-
/* Handle */
|
|
5879
5872
|
}
|
|
5880
5873
|
.min-scrollcustom-x::-webkit-scrollbar {
|
|
5881
5874
|
height: 5px;
|
|
5882
5875
|
}
|
|
5883
5876
|
.min-scrollcustom-x::-webkit-scrollbar-track {
|
|
5884
5877
|
background: #fff;
|
|
5885
|
-
-webkit-border-radius: 10px;
|
|
5886
5878
|
border-radius: 0;
|
|
5887
5879
|
}
|
|
5888
5880
|
.min-scrollcustom-x::-webkit-scrollbar-thumb {
|
|
5889
|
-
-webkit-border-radius: 10px;
|
|
5890
5881
|
border-radius: 10px;
|
|
5891
|
-
background: #
|
|
5882
|
+
background: #a9a9a9;
|
|
5892
5883
|
}
|
|
5893
5884
|
.min-scrollcustom-x::-webkit-scrollbar-thumb:window-inactive {
|
|
5894
|
-
background: #
|
|
5885
|
+
background: #a9a9a9;
|
|
5895
5886
|
}
|
|
5896
5887
|
|
|
5897
5888
|
.min-scrollcustom-x.has-dark {
|
|
5898
5889
|
overflow: auto;
|
|
5899
|
-
/* Track */
|
|
5900
|
-
/* Handle */
|
|
5901
5890
|
}
|
|
5902
5891
|
.min-scrollcustom-x.has-dark::-webkit-scrollbar {
|
|
5903
5892
|
height: 5px;
|
|
5904
5893
|
}
|
|
5905
5894
|
.min-scrollcustom-x.has-dark::-webkit-scrollbar-track {
|
|
5906
5895
|
background: #a9a9a9;
|
|
5907
|
-
-webkit-border-radius: 10px;
|
|
5908
5896
|
border-radius: 0;
|
|
5909
5897
|
}
|
|
5910
5898
|
.min-scrollcustom-x.has-dark::-webkit-scrollbar-thumb {
|
|
5911
|
-
-webkit-border-radius: 10px;
|
|
5912
5899
|
border-radius: 10px;
|
|
5913
5900
|
background: #000;
|
|
5914
5901
|
}
|
|
@@ -6405,8 +6392,6 @@ strong {
|
|
|
6405
6392
|
bottom: 0;
|
|
6406
6393
|
right: 0;
|
|
6407
6394
|
color: #000;
|
|
6408
|
-
display: box;
|
|
6409
|
-
display: flexbox;
|
|
6410
6395
|
display: flex;
|
|
6411
6396
|
opacity: 1;
|
|
6412
6397
|
-webkit-box-align: end;
|
|
@@ -6415,7 +6400,6 @@ strong {
|
|
|
6415
6400
|
transition: opacity 0.3s ease;
|
|
6416
6401
|
z-index: 6;
|
|
6417
6402
|
}
|
|
6418
|
-
|
|
6419
6403
|
.arrow-cover svg {
|
|
6420
6404
|
animation: bounce 0.8s infinite alternate;
|
|
6421
6405
|
}
|
|
@@ -7780,6 +7764,73 @@ button {
|
|
|
7780
7764
|
background-color: #000;
|
|
7781
7765
|
}
|
|
7782
7766
|
|
|
7767
|
+
.btn-square {
|
|
7768
|
+
background-color: rgba(255, 255, 255, 0.3);
|
|
7769
|
+
border: none;
|
|
7770
|
+
width: 20px;
|
|
7771
|
+
height: 20px;
|
|
7772
|
+
padding: 2px;
|
|
7773
|
+
}
|
|
7774
|
+
.btn-square:focus, .btn-square.focus, .btn-square:hover, .btn-square.hover, .btn-square:active, .btn-square.active {
|
|
7775
|
+
background-color: #666666;
|
|
7776
|
+
border: 1px solid #666666;
|
|
7777
|
+
opacity: 1;
|
|
7778
|
+
cursor: pointer;
|
|
7779
|
+
}
|
|
7780
|
+
.btn-square[disabled], .btn-square:disabled, .btn-square.disabled {
|
|
7781
|
+
background-color: #f0f0f0;
|
|
7782
|
+
border: 1px solid #f0f0f0;
|
|
7783
|
+
color: #666666;
|
|
7784
|
+
opacity: 1;
|
|
7785
|
+
}
|
|
7786
|
+
.btn-square[disabled] svg g, .btn-square:disabled svg g, .btn-square.disabled svg g {
|
|
7787
|
+
fill: #666666;
|
|
7788
|
+
stroke: #666666;
|
|
7789
|
+
}
|
|
7790
|
+
.btn-square[disabled] svg circle, .btn-square:disabled svg circle, .btn-square.disabled svg circle {
|
|
7791
|
+
stroke: #666666;
|
|
7792
|
+
}
|
|
7793
|
+
.btn-square[disabled] svg path, .btn-square:disabled svg path, .btn-square.disabled svg path {
|
|
7794
|
+
fill: #666666;
|
|
7795
|
+
}
|
|
7796
|
+
.has-light .btn-square {
|
|
7797
|
+
color: #000;
|
|
7798
|
+
background-color: #fff;
|
|
7799
|
+
border: 1px solid #fff;
|
|
7800
|
+
}
|
|
7801
|
+
.has-light .btn-square svg g {
|
|
7802
|
+
fill: #000;
|
|
7803
|
+
stroke: #000;
|
|
7804
|
+
}
|
|
7805
|
+
.has-light .btn-square svg circle {
|
|
7806
|
+
stroke: #000;
|
|
7807
|
+
}
|
|
7808
|
+
.has-light .btn-square svg path {
|
|
7809
|
+
fill: #000;
|
|
7810
|
+
}
|
|
7811
|
+
.has-light .btn-square:focus, .has-light .btn-square.focus, .has-light .btn-square:hover, .has-light .btn-square.hover, .has-light .btn-square:active, .has-light .btn-square.active {
|
|
7812
|
+
color: #fff;
|
|
7813
|
+
background-color: #666666;
|
|
7814
|
+
border: 1px solid #666666;
|
|
7815
|
+
opacity: 1;
|
|
7816
|
+
}
|
|
7817
|
+
.has-light .btn-square:focus svg g, .has-light .btn-square.focus svg g, .has-light .btn-square:hover svg g, .has-light .btn-square.hover svg g, .has-light .btn-square:active svg g, .has-light .btn-square.active svg g {
|
|
7818
|
+
fill: #fff;
|
|
7819
|
+
stroke: #fff;
|
|
7820
|
+
}
|
|
7821
|
+
.has-light .btn-square:focus svg circle, .has-light .btn-square.focus svg circle, .has-light .btn-square:hover svg circle, .has-light .btn-square.hover svg circle, .has-light .btn-square:active svg circle, .has-light .btn-square.active svg circle {
|
|
7822
|
+
stroke: #fff;
|
|
7823
|
+
}
|
|
7824
|
+
.has-light .btn-square:focus svg path, .has-light .btn-square.focus svg path, .has-light .btn-square:hover svg path, .has-light .btn-square.hover svg path, .has-light .btn-square:active svg path, .has-light .btn-square.active svg path {
|
|
7825
|
+
fill: #fff;
|
|
7826
|
+
}
|
|
7827
|
+
.has-light .btn-square[disabled], .has-light .btn-square:disabled, .has-light .btn-square.disabled {
|
|
7828
|
+
background-color: #f0f0f0;
|
|
7829
|
+
border: 1px solid #f0f0f0;
|
|
7830
|
+
color: #666666;
|
|
7831
|
+
opacity: 1;
|
|
7832
|
+
}
|
|
7833
|
+
|
|
7783
7834
|
/* prettier-ignore */
|
|
7784
7835
|
/* functional */
|
|
7785
7836
|
/* prettier-ignore */
|
|
@@ -7838,8 +7889,6 @@ button {
|
|
|
7838
7889
|
font-weight: normal;
|
|
7839
7890
|
font-size: 12px;
|
|
7840
7891
|
text-align: initial;
|
|
7841
|
-
display: box;
|
|
7842
|
-
display: flexbox;
|
|
7843
7892
|
display: flex;
|
|
7844
7893
|
}
|
|
7845
7894
|
.checkbox-item [type=checkbox]:not(:checked) + label::before,
|
|
@@ -7927,8 +7976,6 @@ button {
|
|
|
7927
7976
|
font-weight: normal;
|
|
7928
7977
|
font-size: 12px;
|
|
7929
7978
|
text-align: initial;
|
|
7930
|
-
display: box;
|
|
7931
|
-
display: flexbox;
|
|
7932
7979
|
display: flex;
|
|
7933
7980
|
}
|
|
7934
7981
|
.checkbox-item-2 [type=checkbox]:not(:checked) + label::before,
|
|
@@ -8004,8 +8051,6 @@ button {
|
|
|
8004
8051
|
font-weight: normal;
|
|
8005
8052
|
font-size: 12px;
|
|
8006
8053
|
text-align: initial;
|
|
8007
|
-
display: box;
|
|
8008
|
-
display: flexbox;
|
|
8009
8054
|
display: flex;
|
|
8010
8055
|
flex-direction: column;
|
|
8011
8056
|
float: none;
|
|
@@ -8128,7 +8173,6 @@ button {
|
|
|
8128
8173
|
transform: rotate(50deg);
|
|
8129
8174
|
background-color: #000;
|
|
8130
8175
|
}
|
|
8131
|
-
.checkbox-item-img [type=checkbox] + label::after,
|
|
8132
8176
|
.checkbox-item-img [type=checkbox] + label::after {
|
|
8133
8177
|
width: 80px;
|
|
8134
8178
|
height: 80px;
|
|
@@ -8269,10 +8313,10 @@ button {
|
|
|
8269
8313
|
.check-center .box3-content {
|
|
8270
8314
|
padding-left: 30px;
|
|
8271
8315
|
}
|
|
8272
|
-
.check-center.checkbox-radio [type=radio]:checked + label .border-1-grey
|
|
8316
|
+
.check-center.checkbox-radio [type=radio]:checked + label .border-1-grey {
|
|
8273
8317
|
border: 1px solid #000;
|
|
8274
8318
|
}
|
|
8275
|
-
.check-center.checkbox-radio [type=radio]:checked + label .border-1
|
|
8319
|
+
.check-center.checkbox-radio [type=radio]:checked + label .border-1 {
|
|
8276
8320
|
border: 1px solid #000;
|
|
8277
8321
|
}
|
|
8278
8322
|
|
|
@@ -9929,15 +9973,14 @@ ul.list-breadcrumb li.list-breadcrumb-divider {
|
|
|
9929
9973
|
display: block;
|
|
9930
9974
|
margin: 0;
|
|
9931
9975
|
}
|
|
9932
|
-
.tabs li
|
|
9933
|
-
.tabs li span,
|
|
9934
|
-
.tabs li .tab {
|
|
9976
|
+
.tabs li * {
|
|
9935
9977
|
display: flex;
|
|
9936
9978
|
justify-content: center;
|
|
9937
9979
|
align-items: center;
|
|
9938
9980
|
vertical-align: top;
|
|
9939
9981
|
cursor: pointer;
|
|
9940
|
-
padding: 0
|
|
9982
|
+
padding-block: 0;
|
|
9983
|
+
padding-inline: 20px;
|
|
9941
9984
|
line-height: 1;
|
|
9942
9985
|
}
|
|
9943
9986
|
.tabs li.is-active a, .tabs li.is-active span, .tabs li.is-active .tab {
|
|
@@ -9987,6 +10030,7 @@ ul.list-breadcrumb li.list-breadcrumb-divider {
|
|
|
9987
10030
|
align-items: center;
|
|
9988
10031
|
}
|
|
9989
10032
|
.tabs2 li {
|
|
10033
|
+
position: relative;
|
|
9990
10034
|
display: block;
|
|
9991
10035
|
margin: 0;
|
|
9992
10036
|
padding-block: 8px;
|
|
@@ -10003,6 +10047,9 @@ ul.list-breadcrumb li.list-breadcrumb-divider {
|
|
|
10003
10047
|
padding-inline: 20px;
|
|
10004
10048
|
line-height: 1;
|
|
10005
10049
|
}
|
|
10050
|
+
.tabs2 li .btn-tertiary {
|
|
10051
|
+
padding-block: 0;
|
|
10052
|
+
}
|
|
10006
10053
|
.tabs2 li.is-active {
|
|
10007
10054
|
position: relative;
|
|
10008
10055
|
}
|
|
@@ -10012,14 +10059,16 @@ ul.list-breadcrumb li.list-breadcrumb-divider {
|
|
|
10012
10059
|
width: 4px;
|
|
10013
10060
|
height: 4px;
|
|
10014
10061
|
background-color: #000;
|
|
10015
|
-
bottom:
|
|
10016
|
-
|
|
10017
|
-
|
|
10018
|
-
display: none;
|
|
10062
|
+
bottom: 0;
|
|
10063
|
+
left: 50%;
|
|
10064
|
+
margin-left: -2px;
|
|
10019
10065
|
}
|
|
10020
|
-
.tabs2.tabs-resetfirst ul li:first-child
|
|
10066
|
+
.tabs2.tabs-resetfirst ul li:first-child * {
|
|
10021
10067
|
padding: 0 20px 0 0;
|
|
10022
10068
|
}
|
|
10069
|
+
.tabs2.tabs-resetfirst ul li::after {
|
|
10070
|
+
margin-left: -10px;
|
|
10071
|
+
}
|
|
10023
10072
|
.tabs2.is-center ul {
|
|
10024
10073
|
justify-content: center;
|
|
10025
10074
|
}
|
|
@@ -10036,61 +10085,8 @@ ul.list-breadcrumb li.list-breadcrumb-divider {
|
|
|
10036
10085
|
.tabs2 .list-equal li {
|
|
10037
10086
|
flex-grow: 1;
|
|
10038
10087
|
}
|
|
10039
|
-
|
|
10040
|
-
|
|
10041
|
-
display: flex;
|
|
10042
|
-
margin: 0;
|
|
10043
|
-
flex-grow: 1;
|
|
10044
|
-
flex-shrink: 0;
|
|
10045
|
-
}
|
|
10046
|
-
.tabs-inline ul.content-start {
|
|
10047
|
-
justify-content: flex-start;
|
|
10048
|
-
}
|
|
10049
|
-
.tabs-inline ul.content-center {
|
|
10050
|
-
align-items: center;
|
|
10051
|
-
}
|
|
10052
|
-
.tabs-inline li {
|
|
10053
|
-
display: block;
|
|
10054
|
-
margin: 0;
|
|
10055
|
-
}
|
|
10056
|
-
.tabs-inline li::after {
|
|
10057
|
-
display: none;
|
|
10058
|
-
}
|
|
10059
|
-
.tabs-inline li a,
|
|
10060
|
-
.tabs-inline li span,
|
|
10061
|
-
.tabs-inline li .tab {
|
|
10062
|
-
display: flex;
|
|
10063
|
-
justify-content: center;
|
|
10064
|
-
align-items: center;
|
|
10065
|
-
vertical-align: top;
|
|
10066
|
-
cursor: pointer;
|
|
10067
|
-
}
|
|
10068
|
-
.tabs-inline li.is-active a, .tabs-inline li.is-active span, .tabs-inline li.is-active .tab {
|
|
10069
|
-
position: relative;
|
|
10070
|
-
}
|
|
10071
|
-
.tabs-inline li.is-active a::after, .tabs-inline li.is-active span::after, .tabs-inline li.is-active .tab::after {
|
|
10072
|
-
content: "";
|
|
10073
|
-
position: absolute;
|
|
10074
|
-
width: 4px;
|
|
10075
|
-
height: 4px;
|
|
10076
|
-
background-color: #000;
|
|
10077
|
-
bottom: 0;
|
|
10078
|
-
}
|
|
10079
|
-
.tabs-inline.is-center ul {
|
|
10080
|
-
justify-content: center;
|
|
10081
|
-
}
|
|
10082
|
-
.tabs-inline.is-around ul {
|
|
10083
|
-
justify-content: space-around;
|
|
10084
|
-
}
|
|
10085
|
-
.tabs-inline.is-around ul li {
|
|
10086
|
-
flex: 1;
|
|
10087
|
-
}
|
|
10088
|
-
.tabs-inline .list-equal {
|
|
10089
|
-
display: flex;
|
|
10090
|
-
align-items: flex-end;
|
|
10091
|
-
}
|
|
10092
|
-
.tabs-inline .list-equal li {
|
|
10093
|
-
flex-grow: 1;
|
|
10088
|
+
.has-light .tabs2 li::after {
|
|
10089
|
+
background-color: #fff;
|
|
10094
10090
|
}
|
|
10095
10091
|
|
|
10096
10092
|
.tabs-inline ul {
|
|
@@ -10298,7 +10294,7 @@ ul.list-breadcrumb li.list-breadcrumb-divider {
|
|
|
10298
10294
|
|
|
10299
10295
|
.tag-feel {
|
|
10300
10296
|
background-color: #000000;
|
|
10301
|
-
color: #
|
|
10297
|
+
color: #fff;
|
|
10302
10298
|
padding: 6px;
|
|
10303
10299
|
line-height: 1;
|
|
10304
10300
|
display: inline-block;
|
|
@@ -11167,8 +11163,6 @@ ul.list-clear li.list-box:last-child {
|
|
|
11167
11163
|
}
|
|
11168
11164
|
|
|
11169
11165
|
.row1 {
|
|
11170
|
-
/* no se usa */
|
|
11171
|
-
display: box;
|
|
11172
11166
|
display: flex;
|
|
11173
11167
|
flex-flow: row wrap;
|
|
11174
11168
|
flex-shrink: 0;
|
|
@@ -11620,7 +11614,6 @@ div.card9-wrap .rat-content:hover .card9-add {
|
|
|
11620
11614
|
/* prettier-ignore */
|
|
11621
11615
|
/* prettier-ignore */
|
|
11622
11616
|
.box3 {
|
|
11623
|
-
/* no se usa */
|
|
11624
11617
|
position: relative;
|
|
11625
11618
|
width: 100%;
|
|
11626
11619
|
min-height: 58px;
|
|
@@ -11735,7 +11728,6 @@ div.card9-wrap .rat-content:hover .card9-add {
|
|
|
11735
11728
|
/* prettier-ignore */
|
|
11736
11729
|
/* prettier-ignore */
|
|
11737
11730
|
@media (max-width: 767px) {
|
|
11738
|
-
/* no se usa */
|
|
11739
11731
|
.header-account-logo {
|
|
11740
11732
|
display: none;
|
|
11741
11733
|
}
|
|
@@ -12053,7 +12045,6 @@ div.card9-wrap .rat-content:hover .card9-add {
|
|
|
12053
12045
|
}
|
|
12054
12046
|
.nativescroll .inner-nativescroll div {
|
|
12055
12047
|
background: #ccc;
|
|
12056
|
-
/* float: left; */
|
|
12057
12048
|
width: 22vw;
|
|
12058
12049
|
}
|
|
12059
12050
|
@media (min-width: 992px) {
|
|
@@ -12270,7 +12261,7 @@ div.card9-wrap .rat-content:hover .card9-add {
|
|
|
12270
12261
|
.header-new .search-bar {
|
|
12271
12262
|
position: relative;
|
|
12272
12263
|
}
|
|
12273
|
-
.header-new .search-bar
|
|
12264
|
+
.header-new .search-bar::after {
|
|
12274
12265
|
position: absolute;
|
|
12275
12266
|
bottom: -4px;
|
|
12276
12267
|
left: 50%;
|