@robotical/martyblocksjr 3.5.13 → 3.5.16
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.
|
@@ -701,6 +701,188 @@ div.infoboxShareButton {
|
|
|
701
701
|
margin: auto;
|
|
702
702
|
}
|
|
703
703
|
|
|
704
|
+
div.infoboxCloudSection {
|
|
705
|
+
width: 60%;
|
|
706
|
+
margin: auto;
|
|
707
|
+
margin-top: 6%;
|
|
708
|
+
display: flex;
|
|
709
|
+
flex-direction: column;
|
|
710
|
+
align-items: center;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
div.infoboxCloudButton {
|
|
714
|
+
color: #fff;
|
|
715
|
+
background-image: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.2) 51%);
|
|
716
|
+
text-transform: uppercase;
|
|
717
|
+
text-align: center;
|
|
718
|
+
font-weight: bold;
|
|
719
|
+
font-size: 13pt;
|
|
720
|
+
letter-spacing: .5px;
|
|
721
|
+
min-width: ${css_vw(15)};
|
|
722
|
+
padding-top: ${css_vh(1.2)};
|
|
723
|
+
padding-bottom: ${css_vh(1.2)};
|
|
724
|
+
padding-left: ${css_vw(.8)};
|
|
725
|
+
padding-right: ${css_vw(.8)};
|
|
726
|
+
border-radius: 14px;
|
|
727
|
+
border: 2px solid #c19f21;
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
div.infoboxCloudButton:active {
|
|
731
|
+
filter: brightness(0.9);
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
div.infoboxCloudControls {
|
|
735
|
+
display: flex;
|
|
736
|
+
justify-content: center;
|
|
737
|
+
gap: ${css_vw(1.5)};
|
|
738
|
+
flex-wrap: wrap;
|
|
739
|
+
width: 100%;
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
div.infoboxCloudToggleButton {
|
|
743
|
+
color: #fff;
|
|
744
|
+
background: rgba(255,255,255,0.1);
|
|
745
|
+
text-transform: uppercase;
|
|
746
|
+
font-weight: bold;
|
|
747
|
+
font-size: 13pt;
|
|
748
|
+
letter-spacing: .5px;
|
|
749
|
+
padding: ${css_vh(1)} ${css_vw(2)};
|
|
750
|
+
border-radius: 12px;
|
|
751
|
+
border: 2px solid #c19f21;
|
|
752
|
+
cursor: pointer;
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
div.infoboxCloudToggleButton.active {
|
|
756
|
+
background: #f4a621;
|
|
757
|
+
border-color: #9b6f14;
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
div.infoboxCloudPanels {
|
|
761
|
+
width: 100%;
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
div.infoboxCloudPanel {
|
|
765
|
+
display: none;
|
|
766
|
+
margin-top: ${css_vh(2)};
|
|
767
|
+
padding: ${css_vh(1.2)} ${css_vw(2)};
|
|
768
|
+
background: rgba(255,255,255,0.15);
|
|
769
|
+
border-radius: 18px;
|
|
770
|
+
width: 100%;
|
|
771
|
+
box-sizing: border-box;
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
div.infoboxCloudPanel.show {
|
|
775
|
+
display: block;
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
div.infoboxCloudDescription {
|
|
779
|
+
text-align: center;
|
|
780
|
+
color: #5b3c00;
|
|
781
|
+
font-weight: bold;
|
|
782
|
+
margin-bottom: ${css_vh(1.2)};
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
div.infoboxCloudLoadActions {
|
|
786
|
+
display: flex;
|
|
787
|
+
justify-content: center;
|
|
788
|
+
gap: ${css_vw(1.2)};
|
|
789
|
+
flex-wrap: wrap;
|
|
790
|
+
margin-bottom: ${css_vh(1)};
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
div.infoboxCloudSecondaryButton {
|
|
794
|
+
color: #fff;
|
|
795
|
+
background: rgba(255,255,255,0.1);
|
|
796
|
+
text-transform: uppercase;
|
|
797
|
+
font-weight: bold;
|
|
798
|
+
font-size: 12pt;
|
|
799
|
+
letter-spacing: .5px;
|
|
800
|
+
padding: ${css_vh(0.8)} ${css_vw(1.6)};
|
|
801
|
+
border-radius: 12px;
|
|
802
|
+
border: 2px solid #c19f21;
|
|
803
|
+
cursor: pointer;
|
|
804
|
+
}
|
|
805
|
+
|
|
806
|
+
div.infoboxCloudSecondaryButton:active {
|
|
807
|
+
filter: brightness(0.92);
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
div.infoboxCloudList {
|
|
811
|
+
width: 100%;
|
|
812
|
+
max-height: ${css_vh(30)};
|
|
813
|
+
overflow-y: auto;
|
|
814
|
+
background: rgba(255,255,255,0.1);
|
|
815
|
+
border-radius: 12px;
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
div.infoboxCloudListHeader,
|
|
819
|
+
div.infoboxCloudRow {
|
|
820
|
+
display: grid;
|
|
821
|
+
grid-template-columns: 2fr 2fr 2fr 1.5fr;
|
|
822
|
+
align-items: center;
|
|
823
|
+
gap: ${css_vw(0.8)};
|
|
824
|
+
padding: ${css_vh(0.8)} ${css_vw(1)};
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
div.infoboxCloudCell {
|
|
828
|
+
overflow-wrap: anywhere;
|
|
829
|
+
color: #3d2800;
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
div.infoboxCloudListHeader {
|
|
833
|
+
font-weight: bold;
|
|
834
|
+
color: #5b3c00;
|
|
835
|
+
border-bottom: 2px solid rgba(91,60,0,0.2);
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
div.infoboxCloudRow:nth-child(even) {
|
|
839
|
+
background: rgba(255,255,255,0.08);
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
div.infoboxCloudListEmpty {
|
|
843
|
+
text-align: center;
|
|
844
|
+
color: #5b3c00;
|
|
845
|
+
font-style: italic;
|
|
846
|
+
padding: ${css_vh(1.2)};
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
div.infoboxCloudCell.actions {
|
|
850
|
+
display: flex;
|
|
851
|
+
gap: ${css_vw(0.8)};
|
|
852
|
+
justify-content: flex-end;
|
|
853
|
+
flex-wrap: wrap;
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
div.infoboxCloudActionButton {
|
|
857
|
+
color: #fff;
|
|
858
|
+
font-weight: bold;
|
|
859
|
+
text-transform: uppercase;
|
|
860
|
+
font-size: 11pt;
|
|
861
|
+
padding: ${css_vh(0.6)} ${css_vw(1.5)};
|
|
862
|
+
border-radius: 10px;
|
|
863
|
+
border: 2px solid transparent;
|
|
864
|
+
cursor: pointer;
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
div.infoboxCloudActionButton.primary {
|
|
868
|
+
background: #32a852;
|
|
869
|
+
border-color: #1f6d35;
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
div.infoboxCloudActionButton.danger {
|
|
873
|
+
background: #d9534f;
|
|
874
|
+
border-color: #8a2d2b;
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
div.infoboxCloudActionButton:active {
|
|
878
|
+
filter: brightness(0.9);
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
div.infoboxCloudCell.id {
|
|
882
|
+
font-family: 'Courier New', Courier, monospace;
|
|
883
|
+
font-size: 12pt;
|
|
884
|
+
}
|
|
885
|
+
|
|
704
886
|
div#infoboxShareButtonEmail::before {
|
|
705
887
|
content: "";
|
|
706
888
|
position: absolute;
|