welcome_css 0.7 → 0.11

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c6d3a5914ba3b706ca67f3df3d9440be98b8b30cf6121a36408c50ffd2581e18
4
- data.tar.gz: e9c7ec9251b43f50d8b28e7591dd9b774a1498ebe1280383b4e75aade358f863
3
+ metadata.gz: 13753c3b21a1960a595ece4f096ef48d1763fd1fb025a62f3ab316f5f285e666
4
+ data.tar.gz: cdc365f629e8f62af7c0ec91cf588afe6bf2941dae607cf8b5605df8abd02d9d
5
5
  SHA512:
6
- metadata.gz: 5c3e1a5f5224d862a285de1ec98a5be8b18a9a0d115c3fbd306ed57ee247b68ea49a1781e2388549ca99ce03aa10a815fc15bbe1237f9b126f4a366f33239592
7
- data.tar.gz: 810127c529ca12caaaac27409eebf986ac64f6b24de9f31aeac37837a705bdad05e1139b9febfccca631c4c331aa4cc829346dd3cf8aacbfb0a72a062cf4fc10
6
+ metadata.gz: 2980f0c6f4a8a5ef9df1721093c76c5a9a6eb9aa2621de307efc7f7d5b7be06530cf71f07947fc7f27f88c3ef51ebc1d6b00c481ba4cef867121a93c70782b94
7
+ data.tar.gz: 667a339bc3f6c9a0e2ed5a256a53a8f671b13b5690f4e51bf6d2e2b63ce5e18c96e18c02d49b7d744466542620a685e96caf2da2f39af9577e000d997d1c8335
@@ -71,6 +71,13 @@
71
71
  border: 1px solid $ui_blue;
72
72
  color: $ui_blue;
73
73
  }
74
+ .ui-app-area .btn-alternative {
75
+ font-family: 'gt-eesti-medium';
76
+ background-color: transparent;
77
+ border: 1px solid #D9D9D9;
78
+ font-weight: normal;
79
+ color: $ui_back;
80
+ }
74
81
 
75
82
  /* ========================================= */
76
83
 
@@ -140,4 +147,9 @@
140
147
  float: right;
141
148
  position: relative;
142
149
  margin: 0 0 0 12px;
143
- }
150
+ }
151
+ /*.btn-dot a {
152
+ display: block;
153
+ width: 30px;
154
+ height: 30px;
155
+ }*/
@@ -713,4 +713,454 @@ table .ui-table-row {
713
713
  background-repeat: no-repeat;
714
714
  background-size: 13px;
715
715
  background-position: right 10px top 8px;
716
+ }
717
+
718
+ /* =========================== */
719
+
720
+ .calculator-container {
721
+ display: block;
722
+ width: 100%;
723
+ background-color: #292926;
724
+ padding: 12px;
725
+ }
726
+ .calculator-container #screen {
727
+ color: $ui_white;
728
+ font-size: 26px;
729
+ }
730
+ .calculator-container .row {
731
+ margin-right: 0;
732
+ margin-left: 0;
733
+ }
734
+ .calculator-container .row button {
735
+ width: 100%;
736
+ background-color: transparent;
737
+ color: #fff;
738
+ border: 2px solid #292926;
739
+ transition: all .2s;
740
+ cursor: pointer;
741
+ }
742
+ .calculator-container .row button:hover {
743
+ transform :scale(1.03);
744
+ }
745
+ .calculator-container .row button:active {
746
+ transform: scale(.98);
747
+ }
748
+ .calculator-container .gray_light {
749
+ background-color: #5F5E5C;
750
+ }
751
+ .calculator-container .gray_dark {
752
+ background-color: #3E3D3A;
753
+ }
754
+ .calculator-container .bg_blue {
755
+ background-color: $ui_blue;
756
+ }
757
+
758
+ /* =========================== */
759
+
760
+ .block-stats {
761
+ display: block;
762
+ float: left;
763
+ position: relative;
764
+ width: 100%;
765
+ margin-bottom: $md-marginbottom;
766
+ }
767
+ .block-stats select {
768
+ display: block;
769
+ float: left;
770
+ position: relative;
771
+ min-width: 140px;
772
+ height: 36px;
773
+ border: 1px solid #D9D9D9;
774
+ border-radius: $ui-radius;
775
+ padding: 4px 6px;
776
+ }
777
+ .block-stats .block-stats-area {
778
+ display: block;
779
+ float: left;
780
+ position: relative;
781
+ width: 100%;
782
+ background-color: $ui_white;
783
+ border-radius: $ui-radius;
784
+ min-height: 100px;
785
+ padding: 15px 20px;
786
+ }
787
+ .block-stats div {
788
+ display: block;
789
+ float: left;
790
+ position: relative;
791
+ margin-bottom: 12px;
792
+ }
793
+ .widget-box {
794
+ display: block;
795
+ float: left;
796
+ position: relative;
797
+ padding: 0 3px;
798
+ }
799
+ .widget {
800
+ display: block;
801
+ float: left;
802
+ position: relative;
803
+ background-color: #EEF2F7;
804
+ border: 1px solid #D2D5DA;
805
+ border-radius: $ui-radius;
806
+ padding: 15px 20px;
807
+ min-height: 300px;
808
+ }
809
+ .am-content .widget {
810
+ float: none;
811
+ padding: 0;
812
+ background-color: transparent;
813
+ border: none;
814
+ }
815
+ .widget .widget-title {
816
+ font-size: 18px;
817
+ line-height: 22px;
818
+ margin-top: 12px;
819
+ min-height: 48px;
820
+ }
821
+ .widget .widget-information {
822
+ font-size: 13px;
823
+ margin-top: 12px;
824
+ min-height: 90px;
825
+ }
826
+ .widget .phase {
827
+ border-radius: $ui-radius;
828
+ padding: 0 2px;
829
+ color: $ui_white;
830
+ }
831
+ .widget .phase.p-pass {
832
+ background-color: $ui_blue;
833
+ }
834
+ .widget .phase.p-questionable {
835
+ background-color: #FAC15F;
836
+ color: $ui_back;
837
+ }
838
+ .widget .phase.p-offmarket {
839
+ background-color: #FF411D;
840
+ }
841
+ .widget .phase.p-reject {
842
+ background-color: #FF411D;
843
+ }
844
+
845
+ .block-stats .progress {
846
+ display: block;
847
+ float: left;
848
+ position: relative;
849
+ width: 100%;
850
+ height: 10px;
851
+ background-color: transparent;
852
+ }
853
+ .block-stats .progress-small {
854
+ height: 8px;
855
+ margin-bottom: 0;
856
+ background-color: #e9ecef;
857
+ }
858
+ .block-stats .progress-bar {
859
+ height: 10px;
860
+ border-radius: $ui-radius;
861
+ }
862
+ .block-stats .progress-small .progress-bar {
863
+ height: 8px;
864
+ border-radius: $ui-radius;
865
+ }
866
+ .block-stats label {
867
+ display: block;
868
+ }
869
+ .block-stats .separate {
870
+ border-top: 1px solid #D9D9D9;
871
+ padding-top: 12px;
872
+ }
873
+
874
+ .approval-requirements-area .w-33 {
875
+ padding-left: 5px;
876
+ padding-right: 5px;
877
+ }
878
+ .approval-requirements-area .w-33 .w-50,
879
+ .approval-requirements-area .w-33 .w-100 {
880
+ padding-left: 5px;
881
+ padding-right: 5px;
882
+ }
883
+
884
+ .block-stats-area .counties {
885
+ font-size: 14px;
886
+ }
887
+ .block-stats-area .counties label {
888
+ margin-bottom: 2px;
889
+ }
890
+
891
+ .approval-requirements-area .block-title {
892
+ font-size: 18px;
893
+ }
894
+ .approval-requirements-area .block-title img {
895
+ margin-top: -4px;
896
+ }
897
+ .month-stats {
898
+ margin-bottom: 0 !important;
899
+ }
900
+ .month-stats .month {
901
+ width: 8.33%;
902
+ margin-bottom: 0;
903
+ font-size: 10px;
904
+ text-align: center;
905
+ }
906
+ .month-stats .month-chart {
907
+ width: 8.33%;
908
+ margin-bottom: 0;
909
+ }
910
+
911
+ .month-stats .month-chart .progress.vertical {
912
+ width: 100%;
913
+ min-height: 60px;
914
+ background-color: transparent;
915
+ display: -webkit-box;
916
+ display: -ms-flexbox;
917
+ display: -webkit-flex;
918
+ display: flex;
919
+ align-items: flex-end;
920
+ -webkit-align-items: flex-end;
921
+ padding: 0 3px;
922
+ }
923
+
924
+ .month-stats .month-chart .progress.vertical .progress-bar {
925
+ width: 100%;
926
+ height: 0;
927
+ -webkit-transition: height 0.6s ease;
928
+ -o-transition: height 0.6s ease;
929
+ transition: height 0.6s ease;
930
+ background-color: #007bff;
931
+ margin-bottom: 0;
932
+ border-radius: $ui-radius;
933
+ }
934
+
935
+ .new-properties-area .widget .widget-title {
936
+ margin-top: 6px;
937
+ margin-bottom: 6px;
938
+ min-height: 40px;
939
+ }
940
+ .new-properties-area .widget .widget-information {
941
+ margin-top: 4px;
942
+ min-height: 90px;
943
+ }
944
+ .new-properties-area .widget .widget-information div {
945
+ margin-bottom: 2px;
946
+ }
947
+ .new-properties-area .widget .widget-subtitle {
948
+ font-size: 16px;
949
+ }
950
+ .new-properties-area .widget .phase-number {
951
+ background-color: $ui_back;
952
+ border-radius: 50%;
953
+ width: 18px;
954
+ height: 18px;
955
+ color: $ui_white;
956
+ text-align: center;
957
+ display: block;
958
+ float: left;
959
+ position: relative;
960
+ margin-right: 4px;
961
+ }
962
+ .new-properties-area .widget .phase-number.phase-questionable {
963
+ background-color: #FAC15F !important;
964
+ color: $ui_back;
965
+ }
966
+ .new-properties-area .widget .phase-number.phase-pass {
967
+ background-color: #528DE9 !important;
968
+ }
969
+ .new-properties-area .widget .phase-number.phase-offmarket,
970
+ .new-properties-area .widget .phase-number.phase-reject {
971
+ background-color: #FF411D !important;
972
+ }
973
+
974
+ .block-stats-area .select-filters select {
975
+ margin-right: 10px;
976
+ }
977
+ .block-stats-area .with-select select {
978
+ float: right;
979
+ }
980
+ .block-stats-area .content-right {
981
+ padding-right: 0;
982
+ }
983
+ .block-stats-area .content-right select {
984
+ float: right;
985
+ }
986
+ .block-stats-area .btn.btn-success,
987
+ .block-stats-area .btn.btn-alternative {
988
+ margin-bottom: 0 !important;
989
+ }
990
+
991
+ .search-area {
992
+ display: block;
993
+ position: relative;
994
+ width: 100%;
995
+ margin-bottom: 30px;
996
+ }
997
+ .search-area .search-lp {
998
+ height: 50px;
999
+ border-radius: 4px;
1000
+ -webkit-border-top-right-radius: 0px;
1001
+ -webkit-border-bottom-right-radius: 0px;
1002
+ -moz-border-radius-topright: 0px;
1003
+ -moz-border-radius-bottomright: 0px;
1004
+ border-top-right-radius: 0px;
1005
+ border-bottom-right-radius: 0px;
1006
+ border-color: #D9D9D9 !important;
1007
+ border-style: solid;
1008
+ background-color: #fff;
1009
+ border-width: 1px;
1010
+ padding: 5px 10px;
1011
+ border-image: none;
1012
+ }
1013
+ .search-area input[type="image"] {
1014
+ height: 50px;
1015
+ -webkit-border-top-left-radius: 0px;
1016
+ -webkit-border-bottom-left-radius: 0px;
1017
+ -moz-border-radius-topleft: 0px;
1018
+ -moz-border-radius-bottomleft: 0px;
1019
+ border-top-left-radius: 0px;
1020
+ border-bottom-left-radius: 0px;
1021
+ height: 50px;
1022
+ padding: 5px;
1023
+ background-color: #EEF2F7 !important;
1024
+ font-size: 16px;
1025
+ border: 1px solid #D9D9D9;
1026
+ color: #AFAFAF;
1027
+ text-align: center;
1028
+ margin: -4px 0 0 -6px;
1029
+ }
1030
+ .search-area button img {
1031
+ width: -moz-available;
1032
+ width: -webkit-fill-available;
1033
+ width: fill-available;
1034
+ max-width: 35px;
1035
+ }
1036
+
1037
+ .compared-area {
1038
+ font-size: 14px;
1039
+ }
1040
+ .compared-area .compared-to select {
1041
+ width: 100px;
1042
+ min-width: auto;
1043
+ margin-right: 10px;
1044
+ }
1045
+ .compared-area label {
1046
+ margin-bottom: 0;
1047
+ }
1048
+
1049
+ .daily-stats .daily-widget {
1050
+ min-height: auto;
1051
+ padding: 15px 20px 25px 20px;
1052
+ margin-bottom: 30px;
1053
+ }
1054
+ .daily-stats .daily-widget_last-child {
1055
+ margin-bottom: 0px;
1056
+ }
1057
+ .daily-stats .daily-widget .title-data {
1058
+ display: block;
1059
+ position: relative;
1060
+ width: 100%;
1061
+ margin: 6px 0 -4px 0;
1062
+ }
1063
+ .daily-stats .daily-widget .subtitle-data {
1064
+ font-size: 10px;
1065
+ }
1066
+ .daily-stats .phase {
1067
+ font-size: 12px;
1068
+ }
1069
+ .daily-stats .widget .widget-title {
1070
+ min-height: auto;
1071
+ }
1072
+ .daily-stats .quick-links .widget a {
1073
+ display: block;
1074
+ width: 100%;
1075
+ left: 0;
1076
+ right: 0;
1077
+ top: 0;
1078
+ bottom: 0;
1079
+ color: #000;
1080
+ }
1081
+
1082
+ /* =========================== */
1083
+
1084
+ .ui-app-area .teardown-information-block {
1085
+ display: block;
1086
+ width: 100%;
1087
+ padding: 15px;
1088
+ margin-left: 15px;
1089
+ margin-right: 15px;
1090
+ }
1091
+ .ui-app-area .card-block {
1092
+ display: block !important;
1093
+ }
1094
+ .ui-app-area .data-list {
1095
+ display: block;
1096
+ float: left;
1097
+ position: relative;
1098
+ margin-top: 20px;
1099
+ }
1100
+ .ui-app-area .data-list h4 {
1101
+ font-size: 18px;
1102
+ color: #6F6F6F;
1103
+ letter-spacing: 0;
1104
+ font-family: 'hk_groteskmedium';
1105
+ padding: 12px 15px 12px 0;
1106
+ min-height: 80px;
1107
+ }
1108
+ .ui-app-area .data-list h4 span {
1109
+ font-size: 15px;
1110
+ }
1111
+ .ui-app-area .data-list .data-list-item {
1112
+ padding: 0 15px 0 25px !important;
1113
+ width: 100%;
1114
+ margin: 0 0 30px 0;
1115
+ }
1116
+ .ui-app-area .data-list .data-list-item strong,
1117
+ .ui-app-area .data-list-card strong {
1118
+ font-family: 'gt-eesti-regular';
1119
+ font-size: 18px;
1120
+ }
1121
+ .ui-app-area .data-list-card {
1122
+ display: block;
1123
+ float: left;
1124
+ position: relative;
1125
+ background-color: #EEF2F7;
1126
+ border-radius: $ui-radius;
1127
+ margin: 20px 0;
1128
+ padding: 15px;
1129
+ text-align: center;
1130
+ min-height: 265px;
1131
+ }
1132
+ .ui-app-area .data-list-card h4 {
1133
+ font-size: 16px;
1134
+ color: #6F6F6F;
1135
+ letter-spacing: 0;
1136
+ font-family: 'hk_groteskmedium';
1137
+ }
1138
+ .ui-app-area .data-list-card .distribution-curve {
1139
+ display: block;
1140
+ float: left;
1141
+ position: relative;
1142
+ width: 100%;
1143
+ height: 110px;
1144
+ margin: 10px 0;
1145
+ }
1146
+ .ui-app-area .data-list .bg-average {
1147
+ background-image: image-url('icons/icn-average.svg');
1148
+ background-repeat: no-repeat;
1149
+ background-size: 20px;
1150
+ background-position: left 0 top 6px;
1151
+ }
1152
+ .ui-app-area .data-list .bg-median {
1153
+ background-image: image-url('icons/icn-median.svg');
1154
+ background-repeat: no-repeat;
1155
+ background-size: 18px;
1156
+ background-position: left 0 top 6px;
1157
+ }
1158
+ .ui-app-area .data-list .bg-square-foot {
1159
+ background-image: image-url('icons/icn-square-foot.svg');
1160
+ background-repeat: no-repeat;
1161
+ background-size: 18px;
1162
+ background-position: left 0 top 6px;
1163
+ }
1164
+ .ui-app-area .icn-title {
1165
+ margin-top: -8px;
716
1166
  }
@@ -307,8 +307,8 @@ $lg-paddingbottom: 60px;
307
307
  }
308
308
  }
309
309
  @media (min-width: 769px) {
310
- input[type="radio"], input[type="checkbox"] {
311
- display: none;
310
+ input[type="radio"]#swipe, input[type="checkbox"]#swipe {
311
+ display: none;
312
312
  }
313
313
  }
314
314
  @media (max-width: 768px) {
@@ -19,6 +19,7 @@ $sizes: map-merge(
19
19
  55: 55%,
20
20
  60: 60%,
21
21
  65: 65%,
22
+ 66: 66%,
22
23
  70: 50%,
23
24
  75: 75%,
24
25
  80: 80%,
@@ -1,3 +1,3 @@
1
1
  module WelcomeCss
2
- VERSION = "0.7"
2
+ VERSION = "0.11"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: welcome_css
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.7'
4
+ version: '0.11'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jose Camacho
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-10 00:00:00.000000000 Z
11
+ date: 2021-09-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails