@pmidc/upyog-css 1.1.2 → 1.1.3
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 +63 -11
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/index.scss +59 -8
package/dist/index.css
CHANGED
|
@@ -12944,7 +12944,12 @@ input[type=number], .checkbox-wrap .input-emp[type=number] {
|
|
|
12944
12944
|
.timeline-hoc-container .checkpoint-done header, .timeline-hoc-container .checkpoint header {
|
|
12945
12945
|
-webkit-box-flex: 1;
|
|
12946
12946
|
-ms-flex: 1;
|
|
12947
|
-
flex: 1;
|
|
12947
|
+
flex: 1;
|
|
12948
|
+
background: #cfc;
|
|
12949
|
+
padding: 4px 8px; }
|
|
12950
|
+
|
|
12951
|
+
.timeline-hoc-container .checkpoint-connect-wrap {
|
|
12952
|
+
padding: 0; }
|
|
12948
12953
|
|
|
12949
12954
|
.timeline-card {
|
|
12950
12955
|
width: 100%;
|
|
@@ -12952,8 +12957,8 @@ input[type=number], .checkbox-wrap .input-emp[type=number] {
|
|
|
12952
12957
|
border-radius: 8px;
|
|
12953
12958
|
padding: clamp(12px, 3vw, 20px);
|
|
12954
12959
|
margin: 10px 0;
|
|
12955
|
-
background: #
|
|
12956
|
-
font-family:
|
|
12960
|
+
background: #cfc;
|
|
12961
|
+
font-family: verdana; }
|
|
12957
12962
|
|
|
12958
12963
|
.timeline-header {
|
|
12959
12964
|
-ms-flex-wrap: wrap;
|
|
@@ -12979,14 +12984,14 @@ input[type=number], .checkbox-wrap .input-emp[type=number] {
|
|
|
12979
12984
|
white-space: nowrap; }
|
|
12980
12985
|
|
|
12981
12986
|
.timeline-label {
|
|
12982
|
-
font-weight: 500; }
|
|
12983
|
-
|
|
12984
|
-
.timeline-label, .timeline-value {
|
|
12985
12987
|
color: #0d43a7 !important;
|
|
12986
|
-
font-size:
|
|
12988
|
+
font-size: 10px;
|
|
12989
|
+
font-weight: 600; }
|
|
12987
12990
|
|
|
12988
12991
|
.timeline-value {
|
|
12989
|
-
|
|
12992
|
+
color: #0d43a7 !important;
|
|
12993
|
+
font-weight: 800;
|
|
12994
|
+
font-size: 12px; }
|
|
12990
12995
|
|
|
12991
12996
|
.timeline-note {
|
|
12992
12997
|
margin: 10px 0; }
|
|
@@ -12995,10 +13000,11 @@ input[type=number], .checkbox-wrap .input-emp[type=number] {
|
|
|
12995
13000
|
border: 1px solid #ccc;
|
|
12996
13001
|
border-radius: 6px;
|
|
12997
13002
|
padding: 10px;
|
|
12998
|
-
font-size: clamp(12px, 2vw, 14px);
|
|
12999
13003
|
min-height: 40px;
|
|
13000
|
-
|
|
13001
|
-
|
|
13004
|
+
word-break: break-word;
|
|
13005
|
+
font-size: 10px;
|
|
13006
|
+
font-weight: 800;
|
|
13007
|
+
background: #cfc; }
|
|
13002
13008
|
|
|
13003
13009
|
.timeline-docs {
|
|
13004
13010
|
margin-top: 10px; }
|
|
@@ -13025,3 +13031,49 @@ input[type=number], .checkbox-wrap .input-emp[type=number] {
|
|
|
13025
13031
|
@media screen and (max-width: 768px) {
|
|
13026
13032
|
.engagement-citizen-wrapper {
|
|
13027
13033
|
overflow: hidden; } }
|
|
13034
|
+
|
|
13035
|
+
.timeline-header-wrapper {
|
|
13036
|
+
display: -webkit-box;
|
|
13037
|
+
display: -ms-flexbox;
|
|
13038
|
+
display: flex;
|
|
13039
|
+
-webkit-box-align: center;
|
|
13040
|
+
-ms-flex-align: center;
|
|
13041
|
+
align-items: center;
|
|
13042
|
+
margin: 20px 8px;
|
|
13043
|
+
grid-gap: 16px;
|
|
13044
|
+
gap: 16px; }
|
|
13045
|
+
|
|
13046
|
+
.download-button {
|
|
13047
|
+
cursor: pointer;
|
|
13048
|
+
color: #fff;
|
|
13049
|
+
font-weight: 700;
|
|
13050
|
+
padding: 8px;
|
|
13051
|
+
border: 1px solid #0d43a7;
|
|
13052
|
+
border-radius: 4px;
|
|
13053
|
+
-webkit-transition: all .2s ease-in-out;
|
|
13054
|
+
transition: all .2s ease-in-out;
|
|
13055
|
+
font-size: 16px;
|
|
13056
|
+
display: inline-block; }
|
|
13057
|
+
.download-button:hover {
|
|
13058
|
+
-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
13059
|
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
|
|
13060
|
+
|
|
13061
|
+
.timeline-docs-wrapper {
|
|
13062
|
+
margin-top: 10px;
|
|
13063
|
+
display: -webkit-box;
|
|
13064
|
+
display: -ms-flexbox;
|
|
13065
|
+
display: flex;
|
|
13066
|
+
-ms-flex-wrap: wrap;
|
|
13067
|
+
flex-wrap: wrap;
|
|
13068
|
+
grid-gap: 10px;
|
|
13069
|
+
gap: 10px; }
|
|
13070
|
+
|
|
13071
|
+
.timeline-doc-link {
|
|
13072
|
+
min-width: 100px; }
|
|
13073
|
+
|
|
13074
|
+
.timeline-doc-icon {
|
|
13075
|
+
background: #f6f6f6;
|
|
13076
|
+
padding: 8px; }
|
|
13077
|
+
|
|
13078
|
+
.timeline-subheader {
|
|
13079
|
+
margin-bottom: 0 !important; }
|