@northdata/fomantic-ui 2.9.414 → 2.9.415
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/lib/semantic-ui/dist/components/accordion.min.js +1 -1
- package/lib/semantic-ui/dist/components/api.min.js +1 -1
- package/lib/semantic-ui/dist/components/calendar.min.js +1 -1
- package/lib/semantic-ui/dist/components/checkbox.min.js +1 -1
- package/lib/semantic-ui/dist/components/dimmer.min.js +1 -1
- package/lib/semantic-ui/dist/components/form.min.js +1 -1
- package/lib/semantic-ui/dist/components/modal.min.js +1 -1
- package/lib/semantic-ui/dist/components/popup.min.js +1 -1
- package/lib/semantic-ui/dist/components/search.min.js +1 -1
- package/lib/semantic-ui/dist/components/site.min.js +1 -1
- package/lib/semantic-ui/dist/components/statistic.css +308 -0
- package/lib/semantic-ui/dist/components/statistic.min.css +9 -0
- package/lib/semantic-ui/dist/components/tab.min.js +1 -1
- package/lib/semantic-ui/dist/components/transition.min.js +1 -1
- package/lib/semantic-ui/dist/less/site/variation.variables +2 -2
- package/lib/semantic-ui/dist/semantic-packed.css +340 -1
- package/lib/semantic-ui/dist/semantic.css +340 -1
- package/lib/semantic-ui/dist/semantic.full.css +679 -1
- package/lib/semantic-ui/dist/semantic.full.min.css +2 -2
- package/lib/semantic-ui/dist/semantic.js +1 -1
- package/lib/semantic-ui/dist/semantic.min.css +8 -0
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* https://github.com/fomantic/Fomantic-UI
|
|
4
4
|
* https://fomantic-ui.com/
|
|
5
5
|
*
|
|
6
|
-
* Copyright
|
|
6
|
+
* Copyright 2026 Contributors
|
|
7
7
|
* Released under the MIT license
|
|
8
8
|
* https://opensource.org/licenses/MIT
|
|
9
9
|
*
|
|
@@ -40590,6 +40590,684 @@ a.inverted.ui.card:hover,
|
|
|
40590
40590
|
Theme Overrides
|
|
40591
40591
|
*******************************/
|
|
40592
40592
|
|
|
40593
|
+
/*******************************
|
|
40594
|
+
Site Overrides
|
|
40595
|
+
*******************************/
|
|
40596
|
+
/*!
|
|
40597
|
+
* # Fomantic-UI 2.9.4 - Statistic
|
|
40598
|
+
* https://github.com/fomantic/Fomantic-UI/
|
|
40599
|
+
*
|
|
40600
|
+
*
|
|
40601
|
+
* Released under the MIT license
|
|
40602
|
+
* https://opensource.org/licenses/MIT
|
|
40603
|
+
*
|
|
40604
|
+
*/
|
|
40605
|
+
|
|
40606
|
+
/*******************************
|
|
40607
|
+
Statistic
|
|
40608
|
+
*******************************/
|
|
40609
|
+
|
|
40610
|
+
/* Standalone */
|
|
40611
|
+
|
|
40612
|
+
.ui.statistic {
|
|
40613
|
+
display: inline-flex;
|
|
40614
|
+
flex-direction: column;
|
|
40615
|
+
margin: 1em 0;
|
|
40616
|
+
max-width: none;
|
|
40617
|
+
}
|
|
40618
|
+
|
|
40619
|
+
.ui.statistic + .ui.statistic {
|
|
40620
|
+
margin: 0 0 0 1.5em;
|
|
40621
|
+
}
|
|
40622
|
+
|
|
40623
|
+
.ui.statistic:first-child {
|
|
40624
|
+
margin-top: 0;
|
|
40625
|
+
}
|
|
40626
|
+
|
|
40627
|
+
.ui.statistic:last-child {
|
|
40628
|
+
margin-bottom: 0;
|
|
40629
|
+
}
|
|
40630
|
+
|
|
40631
|
+
/*******************************
|
|
40632
|
+
Group
|
|
40633
|
+
*******************************/
|
|
40634
|
+
|
|
40635
|
+
/* Grouped */
|
|
40636
|
+
|
|
40637
|
+
.ui.statistics {
|
|
40638
|
+
display: flex;
|
|
40639
|
+
align-items: flex-start;
|
|
40640
|
+
flex-wrap: wrap;
|
|
40641
|
+
}
|
|
40642
|
+
|
|
40643
|
+
.ui.statistics > .statistic {
|
|
40644
|
+
display: inline-flex;
|
|
40645
|
+
flex: 0 1 auto;
|
|
40646
|
+
flex-direction: column;
|
|
40647
|
+
margin: 0 1.5em 1em;
|
|
40648
|
+
max-width: none;
|
|
40649
|
+
}
|
|
40650
|
+
|
|
40651
|
+
.ui.statistics {
|
|
40652
|
+
display: flex;
|
|
40653
|
+
margin: 1em -1.5em -1em;
|
|
40654
|
+
}
|
|
40655
|
+
|
|
40656
|
+
/* Clearing */
|
|
40657
|
+
|
|
40658
|
+
.ui.statistics::after {
|
|
40659
|
+
display: block;
|
|
40660
|
+
content: " ";
|
|
40661
|
+
height: 0;
|
|
40662
|
+
clear: both;
|
|
40663
|
+
overflow: hidden;
|
|
40664
|
+
visibility: hidden;
|
|
40665
|
+
}
|
|
40666
|
+
|
|
40667
|
+
.ui.statistics:first-child {
|
|
40668
|
+
margin-top: 0;
|
|
40669
|
+
}
|
|
40670
|
+
|
|
40671
|
+
/*******************************
|
|
40672
|
+
Content
|
|
40673
|
+
*******************************/
|
|
40674
|
+
|
|
40675
|
+
/* --------------
|
|
40676
|
+
Value
|
|
40677
|
+
--------------- */
|
|
40678
|
+
|
|
40679
|
+
.ui.statistics .statistic > .value,
|
|
40680
|
+
.ui.statistic > .value {
|
|
40681
|
+
font-family: "Roboto", "Helvetica Neue", Arial, Helvetica, sans-serif;
|
|
40682
|
+
font-size: 4rem;
|
|
40683
|
+
font-weight: normal;
|
|
40684
|
+
line-height: 1em;
|
|
40685
|
+
color: #1b1c1d;
|
|
40686
|
+
text-transform: uppercase;
|
|
40687
|
+
text-align: center;
|
|
40688
|
+
}
|
|
40689
|
+
|
|
40690
|
+
/* --------------
|
|
40691
|
+
Label
|
|
40692
|
+
--------------- */
|
|
40693
|
+
|
|
40694
|
+
.ui.statistics .statistic > .label,
|
|
40695
|
+
.ui.statistic > .label {
|
|
40696
|
+
font-family: "Josefin Sans", serif;
|
|
40697
|
+
font-size: 1em;
|
|
40698
|
+
font-weight: bold;
|
|
40699
|
+
color: rgba(0, 0, 0, 0.87);
|
|
40700
|
+
text-transform: uppercase;
|
|
40701
|
+
text-align: center;
|
|
40702
|
+
}
|
|
40703
|
+
|
|
40704
|
+
/* Top Label */
|
|
40705
|
+
|
|
40706
|
+
.ui.statistics .statistic > .label ~ .value,
|
|
40707
|
+
.ui.statistic > .label ~ .value {
|
|
40708
|
+
margin-top: 0.5rem;
|
|
40709
|
+
}
|
|
40710
|
+
|
|
40711
|
+
/* Bottom Label */
|
|
40712
|
+
|
|
40713
|
+
.ui.statistics .statistic > .value ~ .label,
|
|
40714
|
+
.ui.statistic > .value ~ .label {
|
|
40715
|
+
margin-top: 0.5rem;
|
|
40716
|
+
}
|
|
40717
|
+
|
|
40718
|
+
/*******************************
|
|
40719
|
+
Types
|
|
40720
|
+
*******************************/
|
|
40721
|
+
|
|
40722
|
+
/* --------------
|
|
40723
|
+
Icon Value
|
|
40724
|
+
--------------- */
|
|
40725
|
+
|
|
40726
|
+
.ui.statistics .statistic > .value > i.icon,
|
|
40727
|
+
.ui.statistic > .value > i.icon {
|
|
40728
|
+
opacity: 1;
|
|
40729
|
+
width: auto;
|
|
40730
|
+
margin: 0;
|
|
40731
|
+
}
|
|
40732
|
+
|
|
40733
|
+
/* --------------
|
|
40734
|
+
Text Value
|
|
40735
|
+
--------------- */
|
|
40736
|
+
|
|
40737
|
+
.ui.statistics .statistic > .text.value,
|
|
40738
|
+
.ui.statistic > .text.value {
|
|
40739
|
+
line-height: 1em;
|
|
40740
|
+
min-height: 2em;
|
|
40741
|
+
font-weight: bold;
|
|
40742
|
+
text-align: center;
|
|
40743
|
+
}
|
|
40744
|
+
|
|
40745
|
+
.ui.statistics .statistic > .text.value + .label,
|
|
40746
|
+
.ui.statistic > .text.value + .label {
|
|
40747
|
+
text-align: center;
|
|
40748
|
+
}
|
|
40749
|
+
|
|
40750
|
+
/* --------------
|
|
40751
|
+
Image Value
|
|
40752
|
+
--------------- */
|
|
40753
|
+
|
|
40754
|
+
.ui.statistics .statistic > .value img,
|
|
40755
|
+
.ui.statistic > .value img {
|
|
40756
|
+
max-height: 3rem;
|
|
40757
|
+
vertical-align: baseline;
|
|
40758
|
+
}
|
|
40759
|
+
|
|
40760
|
+
/*******************************
|
|
40761
|
+
Variations
|
|
40762
|
+
*******************************/
|
|
40763
|
+
|
|
40764
|
+
/* --------------
|
|
40765
|
+
Count
|
|
40766
|
+
--------------- */
|
|
40767
|
+
|
|
40768
|
+
.ui.ten.statistics {
|
|
40769
|
+
margin: 0 0 -1em;
|
|
40770
|
+
}
|
|
40771
|
+
|
|
40772
|
+
.ui.ten.statistics .statistic {
|
|
40773
|
+
min-width: 10%;
|
|
40774
|
+
margin: 0 0 1em;
|
|
40775
|
+
}
|
|
40776
|
+
|
|
40777
|
+
.ui.nine.statistics {
|
|
40778
|
+
margin: 0 0 -1em;
|
|
40779
|
+
}
|
|
40780
|
+
|
|
40781
|
+
.ui.nine.statistics .statistic {
|
|
40782
|
+
min-width: 11.11111111%;
|
|
40783
|
+
margin: 0 0 1em;
|
|
40784
|
+
}
|
|
40785
|
+
|
|
40786
|
+
.ui.eight.statistics {
|
|
40787
|
+
margin: 0 0 -1em;
|
|
40788
|
+
}
|
|
40789
|
+
|
|
40790
|
+
.ui.eight.statistics .statistic {
|
|
40791
|
+
min-width: 12.5%;
|
|
40792
|
+
margin: 0 0 1em;
|
|
40793
|
+
}
|
|
40794
|
+
|
|
40795
|
+
.ui.seven.statistics {
|
|
40796
|
+
margin: 0 0 -1em;
|
|
40797
|
+
}
|
|
40798
|
+
|
|
40799
|
+
.ui.seven.statistics .statistic {
|
|
40800
|
+
min-width: 14.28571429%;
|
|
40801
|
+
margin: 0 0 1em;
|
|
40802
|
+
}
|
|
40803
|
+
|
|
40804
|
+
.ui.six.statistics {
|
|
40805
|
+
margin: 0 0 -1em;
|
|
40806
|
+
}
|
|
40807
|
+
|
|
40808
|
+
.ui.six.statistics .statistic {
|
|
40809
|
+
min-width: 16.66666667%;
|
|
40810
|
+
margin: 0 0 1em;
|
|
40811
|
+
}
|
|
40812
|
+
|
|
40813
|
+
.ui.five.statistics {
|
|
40814
|
+
margin: 0 0 -1em;
|
|
40815
|
+
}
|
|
40816
|
+
|
|
40817
|
+
.ui.five.statistics .statistic {
|
|
40818
|
+
min-width: 20%;
|
|
40819
|
+
margin: 0 0 1em;
|
|
40820
|
+
}
|
|
40821
|
+
|
|
40822
|
+
.ui.four.statistics {
|
|
40823
|
+
margin: 0 0 -1em;
|
|
40824
|
+
}
|
|
40825
|
+
|
|
40826
|
+
.ui.four.statistics .statistic {
|
|
40827
|
+
min-width: 25%;
|
|
40828
|
+
margin: 0 0 1em;
|
|
40829
|
+
}
|
|
40830
|
+
|
|
40831
|
+
.ui.three.statistics {
|
|
40832
|
+
margin: 0 0 -1em;
|
|
40833
|
+
}
|
|
40834
|
+
|
|
40835
|
+
.ui.three.statistics .statistic {
|
|
40836
|
+
min-width: 33.33333333%;
|
|
40837
|
+
margin: 0 0 1em;
|
|
40838
|
+
}
|
|
40839
|
+
|
|
40840
|
+
.ui.two.statistics {
|
|
40841
|
+
margin: 0 0 -1em;
|
|
40842
|
+
}
|
|
40843
|
+
|
|
40844
|
+
.ui.two.statistics .statistic {
|
|
40845
|
+
min-width: 50%;
|
|
40846
|
+
margin: 0 0 1em;
|
|
40847
|
+
}
|
|
40848
|
+
|
|
40849
|
+
.ui.one.statistics {
|
|
40850
|
+
margin: 0 0 -1em;
|
|
40851
|
+
}
|
|
40852
|
+
|
|
40853
|
+
.ui.one.statistics .statistic {
|
|
40854
|
+
min-width: 100%;
|
|
40855
|
+
margin: 0 0 1em;
|
|
40856
|
+
}
|
|
40857
|
+
|
|
40858
|
+
.ui.fluid.statistic {
|
|
40859
|
+
width: 100%;
|
|
40860
|
+
}
|
|
40861
|
+
|
|
40862
|
+
/* --------------
|
|
40863
|
+
Horizontal
|
|
40864
|
+
--------------- */
|
|
40865
|
+
|
|
40866
|
+
.ui.horizontal.statistic {
|
|
40867
|
+
flex-direction: row;
|
|
40868
|
+
align-items: center;
|
|
40869
|
+
}
|
|
40870
|
+
|
|
40871
|
+
.ui.horizontal.statistics {
|
|
40872
|
+
flex-direction: column;
|
|
40873
|
+
margin: 0;
|
|
40874
|
+
max-width: none;
|
|
40875
|
+
}
|
|
40876
|
+
|
|
40877
|
+
.ui.horizontal.statistics .statistic {
|
|
40878
|
+
flex-direction: row;
|
|
40879
|
+
align-items: center;
|
|
40880
|
+
max-width: none;
|
|
40881
|
+
margin: 1em 0;
|
|
40882
|
+
}
|
|
40883
|
+
|
|
40884
|
+
.ui.horizontal.statistic > .text.value,
|
|
40885
|
+
.ui.horizontal.statistics > .statistic > .text.value {
|
|
40886
|
+
min-height: 0 !important;
|
|
40887
|
+
}
|
|
40888
|
+
|
|
40889
|
+
.ui.horizontal.statistics .statistic > .value > i.icon,
|
|
40890
|
+
.ui.horizontal.statistic > .value > i.icon {
|
|
40891
|
+
width: 1.18em;
|
|
40892
|
+
}
|
|
40893
|
+
|
|
40894
|
+
.ui.horizontal.statistics .statistic > .value,
|
|
40895
|
+
.ui.horizontal.statistic > .value {
|
|
40896
|
+
display: inline-block;
|
|
40897
|
+
vertical-align: middle;
|
|
40898
|
+
}
|
|
40899
|
+
|
|
40900
|
+
.ui.horizontal.statistics .statistic > .label,
|
|
40901
|
+
.ui.horizontal.statistic > .label {
|
|
40902
|
+
display: inline-block;
|
|
40903
|
+
vertical-align: middle;
|
|
40904
|
+
margin: 0 0 0 0.75em;
|
|
40905
|
+
}
|
|
40906
|
+
|
|
40907
|
+
/* --------------
|
|
40908
|
+
Inverted
|
|
40909
|
+
--------------- */
|
|
40910
|
+
|
|
40911
|
+
.ui.inverted.statistics .statistic > .value,
|
|
40912
|
+
.ui.inverted.statistic .value {
|
|
40913
|
+
color: #fff;
|
|
40914
|
+
}
|
|
40915
|
+
|
|
40916
|
+
.ui.inverted.statistics .statistic > .label,
|
|
40917
|
+
.ui.inverted.statistic .label {
|
|
40918
|
+
color: rgba(255, 255, 255, 0.9);
|
|
40919
|
+
}
|
|
40920
|
+
|
|
40921
|
+
/* --------------
|
|
40922
|
+
Colors
|
|
40923
|
+
--------------- */
|
|
40924
|
+
|
|
40925
|
+
.ui.primary.statistics .statistic > .value,
|
|
40926
|
+
.ui.statistics .primary.statistic > .value,
|
|
40927
|
+
.ui.primary.statistic > .value {
|
|
40928
|
+
color: #007388;
|
|
40929
|
+
}
|
|
40930
|
+
|
|
40931
|
+
.ui.inverted.primary.statistics .statistic > .value,
|
|
40932
|
+
.ui.statistics .inverted.primary.statistic > .value,
|
|
40933
|
+
.ui.inverted.primary.statistic > .value {
|
|
40934
|
+
color: #54c8ff;
|
|
40935
|
+
}
|
|
40936
|
+
|
|
40937
|
+
.ui.secondary.statistics .statistic > .value,
|
|
40938
|
+
.ui.statistics .secondary.statistic > .value,
|
|
40939
|
+
.ui.secondary.statistic > .value {
|
|
40940
|
+
color: #294755;
|
|
40941
|
+
}
|
|
40942
|
+
|
|
40943
|
+
.ui.inverted.secondary.statistics .statistic > .value,
|
|
40944
|
+
.ui.statistics .inverted.secondary.statistic > .value,
|
|
40945
|
+
.ui.inverted.secondary.statistic > .value {
|
|
40946
|
+
color: #545454;
|
|
40947
|
+
}
|
|
40948
|
+
|
|
40949
|
+
.ui.red.statistics .statistic > .value,
|
|
40950
|
+
.ui.statistics .red.statistic > .value,
|
|
40951
|
+
.ui.red.statistic > .value {
|
|
40952
|
+
color: #af4e4a;
|
|
40953
|
+
}
|
|
40954
|
+
|
|
40955
|
+
.ui.inverted.red.statistics .statistic > .value,
|
|
40956
|
+
.ui.statistics .inverted.red.statistic > .value,
|
|
40957
|
+
.ui.inverted.red.statistic > .value {
|
|
40958
|
+
color: #ff695e;
|
|
40959
|
+
}
|
|
40960
|
+
|
|
40961
|
+
.ui.orange.statistics .statistic > .value,
|
|
40962
|
+
.ui.statistics .orange.statistic > .value,
|
|
40963
|
+
.ui.orange.statistic > .value {
|
|
40964
|
+
color: #f2711c;
|
|
40965
|
+
}
|
|
40966
|
+
|
|
40967
|
+
.ui.inverted.orange.statistics .statistic > .value,
|
|
40968
|
+
.ui.statistics .inverted.orange.statistic > .value,
|
|
40969
|
+
.ui.inverted.orange.statistic > .value {
|
|
40970
|
+
color: #ff851b;
|
|
40971
|
+
}
|
|
40972
|
+
|
|
40973
|
+
.ui.yellow.statistics .statistic > .value,
|
|
40974
|
+
.ui.statistics .yellow.statistic > .value,
|
|
40975
|
+
.ui.yellow.statistic > .value {
|
|
40976
|
+
color: #fbbd08;
|
|
40977
|
+
}
|
|
40978
|
+
|
|
40979
|
+
.ui.inverted.yellow.statistics .statistic > .value,
|
|
40980
|
+
.ui.statistics .inverted.yellow.statistic > .value,
|
|
40981
|
+
.ui.inverted.yellow.statistic > .value {
|
|
40982
|
+
color: #ffe21f;
|
|
40983
|
+
}
|
|
40984
|
+
|
|
40985
|
+
.ui.olive.statistics .statistic > .value,
|
|
40986
|
+
.ui.statistics .olive.statistic > .value,
|
|
40987
|
+
.ui.olive.statistic > .value {
|
|
40988
|
+
color: #a0b06c;
|
|
40989
|
+
}
|
|
40990
|
+
|
|
40991
|
+
.ui.inverted.olive.statistics .statistic > .value,
|
|
40992
|
+
.ui.statistics .inverted.olive.statistic > .value,
|
|
40993
|
+
.ui.inverted.olive.statistic > .value {
|
|
40994
|
+
color: #d9e778;
|
|
40995
|
+
}
|
|
40996
|
+
|
|
40997
|
+
.ui.green.statistics .statistic > .value,
|
|
40998
|
+
.ui.statistics .green.statistic > .value,
|
|
40999
|
+
.ui.green.statistic > .value {
|
|
41000
|
+
color: #81b08c;
|
|
41001
|
+
}
|
|
41002
|
+
|
|
41003
|
+
.ui.inverted.green.statistics .statistic > .value,
|
|
41004
|
+
.ui.statistics .inverted.green.statistic > .value,
|
|
41005
|
+
.ui.inverted.green.statistic > .value {
|
|
41006
|
+
color: #2ecc40;
|
|
41007
|
+
}
|
|
41008
|
+
|
|
41009
|
+
.ui.teal.statistics .statistic > .value,
|
|
41010
|
+
.ui.statistics .teal.statistic > .value,
|
|
41011
|
+
.ui.teal.statistic > .value {
|
|
41012
|
+
color: #7fb5c2;
|
|
41013
|
+
}
|
|
41014
|
+
|
|
41015
|
+
.ui.inverted.teal.statistics .statistic > .value,
|
|
41016
|
+
.ui.statistics .inverted.teal.statistic > .value,
|
|
41017
|
+
.ui.inverted.teal.statistic > .value {
|
|
41018
|
+
color: #6dffff;
|
|
41019
|
+
}
|
|
41020
|
+
|
|
41021
|
+
.ui.blue.statistics .statistic > .value,
|
|
41022
|
+
.ui.statistics .blue.statistic > .value,
|
|
41023
|
+
.ui.blue.statistic > .value {
|
|
41024
|
+
color: #007388;
|
|
41025
|
+
}
|
|
41026
|
+
|
|
41027
|
+
.ui.inverted.blue.statistics .statistic > .value,
|
|
41028
|
+
.ui.statistics .inverted.blue.statistic > .value,
|
|
41029
|
+
.ui.inverted.blue.statistic > .value {
|
|
41030
|
+
color: #54c8ff;
|
|
41031
|
+
}
|
|
41032
|
+
|
|
41033
|
+
.ui.violet.statistics .statistic > .value,
|
|
41034
|
+
.ui.statistics .violet.statistic > .value,
|
|
41035
|
+
.ui.violet.statistic > .value {
|
|
41036
|
+
color: #9461ac;
|
|
41037
|
+
}
|
|
41038
|
+
|
|
41039
|
+
.ui.inverted.violet.statistics .statistic > .value,
|
|
41040
|
+
.ui.statistics .inverted.violet.statistic > .value,
|
|
41041
|
+
.ui.inverted.violet.statistic > .value {
|
|
41042
|
+
color: #a291fb;
|
|
41043
|
+
}
|
|
41044
|
+
|
|
41045
|
+
.ui.purple.statistics .statistic > .value,
|
|
41046
|
+
.ui.statistics .purple.statistic > .value,
|
|
41047
|
+
.ui.purple.statistic > .value {
|
|
41048
|
+
color: #af6690;
|
|
41049
|
+
}
|
|
41050
|
+
|
|
41051
|
+
.ui.inverted.purple.statistics .statistic > .value,
|
|
41052
|
+
.ui.statistics .inverted.purple.statistic > .value,
|
|
41053
|
+
.ui.inverted.purple.statistic > .value {
|
|
41054
|
+
color: #dc73ff;
|
|
41055
|
+
}
|
|
41056
|
+
|
|
41057
|
+
.ui.pink.statistics .statistic > .value,
|
|
41058
|
+
.ui.statistics .pink.statistic > .value,
|
|
41059
|
+
.ui.pink.statistic > .value {
|
|
41060
|
+
color: #e03997;
|
|
41061
|
+
}
|
|
41062
|
+
|
|
41063
|
+
.ui.inverted.pink.statistics .statistic > .value,
|
|
41064
|
+
.ui.statistics .inverted.pink.statistic > .value,
|
|
41065
|
+
.ui.inverted.pink.statistic > .value {
|
|
41066
|
+
color: #ff8edf;
|
|
41067
|
+
}
|
|
41068
|
+
|
|
41069
|
+
.ui.brown.statistics .statistic > .value,
|
|
41070
|
+
.ui.statistics .brown.statistic > .value,
|
|
41071
|
+
.ui.brown.statistic > .value {
|
|
41072
|
+
color: #af9666;
|
|
41073
|
+
}
|
|
41074
|
+
|
|
41075
|
+
.ui.inverted.brown.statistics .statistic > .value,
|
|
41076
|
+
.ui.statistics .inverted.brown.statistic > .value,
|
|
41077
|
+
.ui.inverted.brown.statistic > .value {
|
|
41078
|
+
color: #d67c1c;
|
|
41079
|
+
}
|
|
41080
|
+
|
|
41081
|
+
.ui.grey.statistics .statistic > .value,
|
|
41082
|
+
.ui.statistics .grey.statistic > .value,
|
|
41083
|
+
.ui.grey.statistic > .value {
|
|
41084
|
+
color: #a3b3c0;
|
|
41085
|
+
}
|
|
41086
|
+
|
|
41087
|
+
.ui.inverted.grey.statistics .statistic > .value,
|
|
41088
|
+
.ui.statistics .inverted.grey.statistic > .value,
|
|
41089
|
+
.ui.inverted.grey.statistic > .value {
|
|
41090
|
+
color: #dcddde;
|
|
41091
|
+
}
|
|
41092
|
+
|
|
41093
|
+
.ui.black.statistics .statistic > .value,
|
|
41094
|
+
.ui.statistics .black.statistic > .value,
|
|
41095
|
+
.ui.black.statistic > .value {
|
|
41096
|
+
color: #1b1c1d;
|
|
41097
|
+
}
|
|
41098
|
+
|
|
41099
|
+
.ui.inverted.black.statistics .statistic > .value,
|
|
41100
|
+
.ui.statistics .inverted.black.statistic > .value,
|
|
41101
|
+
.ui.inverted.black.statistic > .value {
|
|
41102
|
+
color: #545454;
|
|
41103
|
+
}
|
|
41104
|
+
|
|
41105
|
+
/* --------------
|
|
41106
|
+
Floated
|
|
41107
|
+
--------------- */
|
|
41108
|
+
|
|
41109
|
+
.ui[class*="left floated"].statistic {
|
|
41110
|
+
float: left;
|
|
41111
|
+
margin: 0 2em 1em 0;
|
|
41112
|
+
}
|
|
41113
|
+
|
|
41114
|
+
.ui[class*="right floated"].statistic {
|
|
41115
|
+
float: right;
|
|
41116
|
+
margin: 0 0 1em 2em;
|
|
41117
|
+
}
|
|
41118
|
+
|
|
41119
|
+
.ui.floated.statistic:last-child {
|
|
41120
|
+
margin-bottom: 0;
|
|
41121
|
+
}
|
|
41122
|
+
|
|
41123
|
+
/* --------------
|
|
41124
|
+
Stackable
|
|
41125
|
+
--------------- */
|
|
41126
|
+
|
|
41127
|
+
@media only screen and (max-width: 767.98px) {
|
|
41128
|
+
.ui.stackable.statistics {
|
|
41129
|
+
width: auto;
|
|
41130
|
+
margin-left: 0 !important;
|
|
41131
|
+
margin-right: 0 !important;
|
|
41132
|
+
}
|
|
41133
|
+
|
|
41134
|
+
.ui.stackable.statistics > .statistic {
|
|
41135
|
+
width: 100% !important;
|
|
41136
|
+
margin: 0 !important;
|
|
41137
|
+
padding: 1rem 1rem !important;
|
|
41138
|
+
}
|
|
41139
|
+
}
|
|
41140
|
+
|
|
41141
|
+
/* --------------
|
|
41142
|
+
Sizes
|
|
41143
|
+
--------------- */
|
|
41144
|
+
|
|
41145
|
+
/* Medium */
|
|
41146
|
+
|
|
41147
|
+
.ui.statistics .statistic > .value,
|
|
41148
|
+
.ui.statistic > .value {
|
|
41149
|
+
font-size: 4rem;
|
|
41150
|
+
}
|
|
41151
|
+
|
|
41152
|
+
.ui.horizontal.statistics .statistic > .value,
|
|
41153
|
+
.ui.horizontal.statistic > .value {
|
|
41154
|
+
font-size: 3rem;
|
|
41155
|
+
}
|
|
41156
|
+
|
|
41157
|
+
.ui.statistics .statistic > .text.value,
|
|
41158
|
+
.ui.statistic > .text.value {
|
|
41159
|
+
font-size: 2rem;
|
|
41160
|
+
}
|
|
41161
|
+
|
|
41162
|
+
.ui.mini.statistics .statistic > .value,
|
|
41163
|
+
.ui.mini.statistic > .value {
|
|
41164
|
+
font-size: 1.5rem;
|
|
41165
|
+
}
|
|
41166
|
+
|
|
41167
|
+
.ui.mini.horizontal.statistics .statistic > .value,
|
|
41168
|
+
.ui.mini.horizontal.statistic > .value {
|
|
41169
|
+
font-size: 1.5rem;
|
|
41170
|
+
}
|
|
41171
|
+
|
|
41172
|
+
.ui.mini.statistics .statistic > .text.value,
|
|
41173
|
+
.ui.mini.statistic > .text.value {
|
|
41174
|
+
font-size: 1rem;
|
|
41175
|
+
}
|
|
41176
|
+
|
|
41177
|
+
.ui.tiny.statistics .statistic > .value,
|
|
41178
|
+
.ui.tiny.statistic > .value {
|
|
41179
|
+
font-size: 2rem;
|
|
41180
|
+
}
|
|
41181
|
+
|
|
41182
|
+
.ui.tiny.horizontal.statistics .statistic > .value,
|
|
41183
|
+
.ui.tiny.horizontal.statistic > .value {
|
|
41184
|
+
font-size: 2rem;
|
|
41185
|
+
}
|
|
41186
|
+
|
|
41187
|
+
.ui.tiny.statistics .statistic > .text.value,
|
|
41188
|
+
.ui.tiny.statistic > .text.value {
|
|
41189
|
+
font-size: 1rem;
|
|
41190
|
+
}
|
|
41191
|
+
|
|
41192
|
+
.ui.small.statistics .statistic > .value,
|
|
41193
|
+
.ui.small.statistic > .value {
|
|
41194
|
+
font-size: 3rem;
|
|
41195
|
+
}
|
|
41196
|
+
|
|
41197
|
+
.ui.small.horizontal.statistics .statistic > .value,
|
|
41198
|
+
.ui.small.horizontal.statistic > .value {
|
|
41199
|
+
font-size: 2rem;
|
|
41200
|
+
}
|
|
41201
|
+
|
|
41202
|
+
.ui.small.statistics .statistic > .text.value,
|
|
41203
|
+
.ui.small.statistic > .text.value {
|
|
41204
|
+
font-size: 1rem;
|
|
41205
|
+
}
|
|
41206
|
+
|
|
41207
|
+
.ui.large.statistics .statistic > .value,
|
|
41208
|
+
.ui.large.statistic > .value {
|
|
41209
|
+
font-size: 5rem;
|
|
41210
|
+
}
|
|
41211
|
+
|
|
41212
|
+
.ui.large.horizontal.statistics .statistic > .value,
|
|
41213
|
+
.ui.large.horizontal.statistic > .value {
|
|
41214
|
+
font-size: 4rem;
|
|
41215
|
+
}
|
|
41216
|
+
|
|
41217
|
+
.ui.large.statistics .statistic > .text.value,
|
|
41218
|
+
.ui.large.statistic > .text.value {
|
|
41219
|
+
font-size: 2.5rem;
|
|
41220
|
+
}
|
|
41221
|
+
|
|
41222
|
+
.ui.big.statistics .statistic > .value,
|
|
41223
|
+
.ui.big.statistic > .value {
|
|
41224
|
+
font-size: 5.5rem;
|
|
41225
|
+
}
|
|
41226
|
+
|
|
41227
|
+
.ui.big.horizontal.statistics .statistic > .value,
|
|
41228
|
+
.ui.big.horizontal.statistic > .value {
|
|
41229
|
+
font-size: 4.5rem;
|
|
41230
|
+
}
|
|
41231
|
+
|
|
41232
|
+
.ui.big.statistics .statistic > .text.value,
|
|
41233
|
+
.ui.big.statistic > .text.value {
|
|
41234
|
+
font-size: 2.5rem;
|
|
41235
|
+
}
|
|
41236
|
+
|
|
41237
|
+
.ui.huge.statistics .statistic > .value,
|
|
41238
|
+
.ui.huge.statistic > .value {
|
|
41239
|
+
font-size: 6rem;
|
|
41240
|
+
}
|
|
41241
|
+
|
|
41242
|
+
.ui.huge.horizontal.statistics .statistic > .value,
|
|
41243
|
+
.ui.huge.horizontal.statistic > .value {
|
|
41244
|
+
font-size: 5rem;
|
|
41245
|
+
}
|
|
41246
|
+
|
|
41247
|
+
.ui.huge.statistics .statistic > .text.value,
|
|
41248
|
+
.ui.huge.statistic > .text.value {
|
|
41249
|
+
font-size: 2.5rem;
|
|
41250
|
+
}
|
|
41251
|
+
|
|
41252
|
+
.ui.massive.statistics .statistic > .value,
|
|
41253
|
+
.ui.massive.statistic > .value {
|
|
41254
|
+
font-size: 7rem;
|
|
41255
|
+
}
|
|
41256
|
+
|
|
41257
|
+
.ui.massive.horizontal.statistics .statistic > .value,
|
|
41258
|
+
.ui.massive.horizontal.statistic > .value {
|
|
41259
|
+
font-size: 6rem;
|
|
41260
|
+
}
|
|
41261
|
+
|
|
41262
|
+
.ui.massive.statistics .statistic > .text.value,
|
|
41263
|
+
.ui.massive.statistic > .text.value {
|
|
41264
|
+
font-size: 3rem;
|
|
41265
|
+
}
|
|
41266
|
+
|
|
41267
|
+
/*******************************
|
|
41268
|
+
Theme Overrides
|
|
41269
|
+
*******************************/
|
|
41270
|
+
|
|
40593
41271
|
/*******************************
|
|
40594
41272
|
Site Overrides
|
|
40595
41273
|
*******************************/
|