namirasoft-site-react 1.3.2 → 1.3.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/assets/images/arrow.svg +3 -0
- package/dist/assets/images/danger.svg +3 -0
- package/dist/assets/images/exit.svg +3 -0
- package/dist/assets/images/icon-input-date.svg +9 -0
- package/dist/assets/images/icon-input-duration.svg +9 -0
- package/dist/assets/images/icon-input-email.svg +9 -0
- package/dist/assets/images/icon-input-float.svg +9 -0
- package/dist/assets/images/icon-input-id.svg +9 -0
- package/dist/assets/images/icon-input-integer.svg +9 -0
- package/dist/assets/images/icon-input-phone.svg +9 -0
- package/dist/assets/images/icon-input-price.svg +9 -0
- package/dist/assets/images/icon-input-search.svg +4 -0
- package/dist/assets/images/icon-input-string.svg +9 -0
- package/dist/assets/images/icon-input-text.svg +9 -0
- package/dist/assets/images/icon-input-time.svg +9 -0
- package/dist/assets/images/logo.svg +9 -0
- package/dist/assets/images/map_location.png +0 -0
- package/dist/assets/images/menu.svg +3 -0
- package/dist/assets/images/namira.svg +9 -0
- package/dist/assets/images/rectangle.svg +3 -0
- package/dist/components/NSButtonGreen.module.css +12 -0
- package/dist/components/NSButtonRed.module.css +12 -0
- package/dist/components/NSCard.module.css +97 -0
- package/dist/components/NSEntityBar.module.css +54 -0
- package/dist/components/NSFooter.js.map +1 -1
- package/dist/components/NSFooter.module.css +102 -0
- package/dist/components/NSHeader.js.map +1 -1
- package/dist/components/NSHeader.module.css +181 -0
- package/dist/components/NSInputDate.module.css +36 -0
- package/dist/components/NSInputDuration.module.css +26 -0
- package/dist/components/NSInputEmail.js.map +1 -1
- package/dist/components/NSInputEmail.module.css +38 -0
- package/dist/components/NSInputFloat.module.css +26 -0
- package/dist/components/NSInputIP.module.css +26 -0
- package/dist/components/NSInputInteger.module.css +26 -0
- package/dist/components/NSInputPhone.module.css +33 -0
- package/dist/components/NSInputPrice.module.css +27 -0
- package/dist/components/NSInputSearch.js.map +1 -1
- package/dist/components/NSInputSearch.module.css +26 -0
- package/dist/components/NSInputString.module.css +27 -0
- package/dist/components/NSInputText.module.css +28 -0
- package/dist/components/NSInputTime.module.css +27 -0
- package/dist/components/NSLayout.module.css +17 -0
- package/dist/components/NSLayoutHeroBanner.module.css +43 -0
- package/dist/components/NSLinkBlue.module.css +24 -0
- package/dist/components/NSLinkGreen.module.css +16 -0
- package/dist/components/NSLinkRed.module.css +16 -0
- package/dist/components/NSPagination.module.css +25 -0
- package/dist/components/NSSection.module.css +10 -0
- package/dist/components/NSSectionBars.module.css +11 -0
- package/dist/components/NSSectionCards.module.css +38 -0
- package/dist/components/NSSectionTitle.module.css +0 -0
- package/dist/components/NSSelectBox.module.css +29 -0
- package/dist/components/NSTable.modules.css +77 -0
- package/dist/components/NSTitle.module.css +10 -0
- package/dist/pages/NSLoginPage.modules.css +0 -0
- package/package.json +1 -1
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
.ns_input_parent {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
width: 326px;
|
|
5
|
+
|
|
6
|
+
position: relative;
|
|
7
|
+
max-width: 100%;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.ns_input {
|
|
11
|
+
height: 48px !important;
|
|
12
|
+
font-size: 16px !important;
|
|
13
|
+
font-weight: 400;
|
|
14
|
+
width: 310px !important;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.ns_input span {
|
|
18
|
+
color: #000 !important;
|
|
19
|
+
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.ns_input_icon {
|
|
23
|
+
position: absolute;
|
|
24
|
+
right: 20px;
|
|
25
|
+
top: 51%;
|
|
26
|
+
z-index: 1;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.ns_input_title {
|
|
30
|
+
color: #fff;
|
|
31
|
+
font-size: 16px;
|
|
32
|
+
font-weight: 400;
|
|
33
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
.ns_input_parent {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
width: 326px;
|
|
5
|
+
color: #fff;
|
|
6
|
+
position: relative;
|
|
7
|
+
max-width: 100%;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.ns_input {
|
|
11
|
+
border-radius: 8px;
|
|
12
|
+
padding: 10px 12px;
|
|
13
|
+
font-size: 16px;
|
|
14
|
+
font-weight: 400;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.ns_input_icon {
|
|
18
|
+
position: absolute;
|
|
19
|
+
right: 20px;
|
|
20
|
+
top: 33%;
|
|
21
|
+
z-index: 1;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.ns_input_title {
|
|
25
|
+
font-size: 16px;
|
|
26
|
+
font-weight: 400;
|
|
27
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NSInputSearch.js","sourceRoot":"","sources":["../../src/components/NSInputSearch.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAC;;AAEb,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,MAAM,MAAM,4BAA4B,CAAC;AAChD,OAAO,eAAe,MAAM,wCAAwC,CAAC;AAYrE,MAAM,OAAO,aAAc,SAAQ,KAAK,CAAC,SAAyB;IAC9D,YAAY,KAAa;QAErB,KAAK,CAAC,KAAK,CAAC,CAAC;QACb,IAAI,CAAC,KAAK,GAAG;YACT,KAAK,EAAE,EAAE;SACZ,CAAC;QACF,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACzC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACzC,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACvD,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACrD,CAAC;IACD,QAAQ,CAAC,CAAsC;QAE3C,IAAI,CAAC,QAAQ,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC;IAC7C,CAAC;IACD,eAAe,CAAC,KAAa;QAEzB,IAAI,CAAC,QAAQ,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC;IAC7B,CAAC;IACD,QAAQ;QAEJ,OAAO,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC;IAC5B,CAAC;IACD,SAAS,CAAC,CAAsC;QAE5C,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;IACrB,CAAC;IACD,YAAY,CAAC,KAA0C;QAEnD,IAAI,KAAK,CAAC,IAAI,KAAK,OAAO,EAC1B;
|
|
1
|
+
{"version":3,"file":"NSInputSearch.js","sourceRoot":"","sources":["../../src/components/NSInputSearch.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAC;;AAEb,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,MAAM,MAAM,4BAA4B,CAAC;AAChD,OAAO,eAAe,MAAM,wCAAwC,CAAC;AAYrE,MAAM,OAAO,aAAc,SAAQ,KAAK,CAAC,SAAyB;IAC9D,YAAY,KAAa;QAErB,KAAK,CAAC,KAAK,CAAC,CAAC;QACb,IAAI,CAAC,KAAK,GAAG;YACT,KAAK,EAAE,EAAE;SACZ,CAAC;QACF,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACzC,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACzC,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACvD,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACrD,CAAC;IACD,QAAQ,CAAC,CAAsC;QAE3C,IAAI,CAAC,QAAQ,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC;IAC7C,CAAC;IACD,eAAe,CAAC,KAAa;QAEzB,IAAI,CAAC,QAAQ,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC;IAC7B,CAAC;IACD,QAAQ;QAEJ,OAAO,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC;IAC5B,CAAC;IACD,SAAS,CAAC,CAAsC;QAE5C,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;IACrB,CAAC;IACD,YAAY,CAAC,KAA0C;QAEnD,IAAI,KAAK,CAAC,IAAI,KAAK,OAAO,EAC1B,CAAC;YAEG,OAAO,CAAC,GAAG,CAAC,UAAU,CAAC,CAAA;QAC3B,CAAC;IACL,CAAC;IACQ,MAAM;QAEX,OAAO,CACH,eAAK,SAAS,EAAE,GAAG,MAAM,CAAC,aAAa,MAAM,aACzC,eAAM,SAAS,EAAE,MAAM,CAAC,cAAc,YAAG,IAAI,CAAC,KAAK,CAAC,KAAK,GAAQ,EACjE,cACI,SAAS,EAAE,MAAM,CAAC,aAAa,EAC/B,GAAG,EAAE,eAAe,EACpB,GAAG,EAAC,MAAM,EACV,KAAK,EAAE,EAAE,EACT,MAAM,EAAE,EAAE,GACZ,EACF,gBACI,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,KAAK,EACvB,QAAQ,EAAE,IAAI,CAAC,QAAQ,EACvB,SAAS,EAAE,IAAI,CAAC,YAAY,EAC5B,IAAI,EAAC,MAAM,EACX,SAAS,EAAE,MAAM,CAAC,QAAQ,EAC1B,WAAW,EAAC,QAAQ,GACtB,IACA,CACT,CAAC;IACN,CAAC;CACJ"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
.ns_input_form {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
width: 326px;
|
|
5
|
+
color: #fff;
|
|
6
|
+
max-width: 100%;
|
|
7
|
+
position: relative;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.ns_input {
|
|
11
|
+
border-radius: 8px;
|
|
12
|
+
padding: 10px 12px;
|
|
13
|
+
font-size: 16px;
|
|
14
|
+
font-weight: 400;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.ns_input_icon {
|
|
18
|
+
position: absolute;
|
|
19
|
+
right: 20px;
|
|
20
|
+
top: 45%;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.ns_input_title {
|
|
24
|
+
font-size: 16px;
|
|
25
|
+
font-weight: 400;
|
|
26
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
.ns_input_parent {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
width: 326px;
|
|
5
|
+
color: #fff;
|
|
6
|
+
position: relative;
|
|
7
|
+
max-width: 100%;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.ns_input {
|
|
11
|
+
border-radius: 8px;
|
|
12
|
+
padding: 10px 12px;
|
|
13
|
+
font-size: 16px;
|
|
14
|
+
font-weight: 400;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.ns_input_icon {
|
|
18
|
+
position: absolute;
|
|
19
|
+
right: 20px;
|
|
20
|
+
top: 51%;
|
|
21
|
+
z-index: 1;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.ns_input_title {
|
|
25
|
+
font-size: 16px;
|
|
26
|
+
font-weight: 400;
|
|
27
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
.ns_input_parent {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
width: 326px;
|
|
5
|
+
color: #fff;
|
|
6
|
+
position: relative;
|
|
7
|
+
max-width: 100%;
|
|
8
|
+
padding: 8px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.ns_input {
|
|
12
|
+
border-radius: 8px;
|
|
13
|
+
padding: 10px 12px;
|
|
14
|
+
font-size: 16px;
|
|
15
|
+
font-weight: 400;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.ns_input_icon {
|
|
19
|
+
position: absolute;
|
|
20
|
+
right: 20px;
|
|
21
|
+
top: 51%;
|
|
22
|
+
z-index: 1;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.ns_input_title {
|
|
26
|
+
font-size: 16px;
|
|
27
|
+
font-weight: 400;
|
|
28
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
.ns_input_parent {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
width: 326px;
|
|
5
|
+
color: #fff;
|
|
6
|
+
position: relative;
|
|
7
|
+
max-width: 100%;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.ns_input {
|
|
11
|
+
border-radius: 8px;
|
|
12
|
+
padding: 10px 12px;
|
|
13
|
+
font-size: 16px;
|
|
14
|
+
font-weight: 400;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.ns_input_icon {
|
|
18
|
+
position: absolute;
|
|
19
|
+
right: 20px;
|
|
20
|
+
top: 51%;
|
|
21
|
+
z-index: 1;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.ns_input_title {
|
|
25
|
+
font-size: 16px;
|
|
26
|
+
font-weight: 400;
|
|
27
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
.ns_container {
|
|
2
|
+
min-height: 100vh;
|
|
3
|
+
width: 100%;
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: column;
|
|
6
|
+
justify-content: space-between;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.ns_header {
|
|
10
|
+
margin-bottom: auto;
|
|
11
|
+
width: 100%;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.ns_footer {
|
|
15
|
+
margin-top: auto;
|
|
16
|
+
width: 100%;
|
|
17
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
.hero_holder {
|
|
2
|
+
background-color: #001664;
|
|
3
|
+
position: relative;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.hero_wraper {
|
|
7
|
+
padding-bottom: 24px;
|
|
8
|
+
padding-top: 24px;
|
|
9
|
+
display: flex;
|
|
10
|
+
justify-content: center;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.hero_text_container {
|
|
14
|
+
display: flex;
|
|
15
|
+
flex-direction: column;
|
|
16
|
+
justify-content: flex-start;
|
|
17
|
+
align-items: flex-start;
|
|
18
|
+
color: #fff;
|
|
19
|
+
z-index: 9;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.hero_image_bg {
|
|
23
|
+
background-position: center;
|
|
24
|
+
background-repeat: no-repeat;
|
|
25
|
+
background-size: cover;
|
|
26
|
+
border-radius: 24px;
|
|
27
|
+
overflow: hidden;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
@media only screen and (min-width: 1024px) {
|
|
31
|
+
.ns_hero_vector_bg {
|
|
32
|
+
position: absolute;
|
|
33
|
+
width: 100%;
|
|
34
|
+
top: 0;
|
|
35
|
+
left: 0;
|
|
36
|
+
right: 0;
|
|
37
|
+
bottom: 0;
|
|
38
|
+
z-index: 2;
|
|
39
|
+
background-position: right bottom;
|
|
40
|
+
background-size: auto;
|
|
41
|
+
background-repeat: no-repeat;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
.ns_link_parent {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
justify-content: center;
|
|
5
|
+
align-items: center;
|
|
6
|
+
width: 100%;
|
|
7
|
+
gap: 24px;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.ns_link_parent a {
|
|
11
|
+
text-decoration: none;
|
|
12
|
+
background-color: #366EFF;
|
|
13
|
+
color: #fff;
|
|
14
|
+
font-size: 16px;
|
|
15
|
+
font-weight: 400;
|
|
16
|
+
height: 48px;
|
|
17
|
+
display: flex;
|
|
18
|
+
justify-content: center;
|
|
19
|
+
align-items: center;
|
|
20
|
+
max-width: 358px;
|
|
21
|
+
padding: 12px 64px;
|
|
22
|
+
border-radius: 24px;
|
|
23
|
+
width: 256px;
|
|
24
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
.ns_link_green {
|
|
2
|
+
display: flex;
|
|
3
|
+
border-radius: 8px;
|
|
4
|
+
background-color: #06D182;
|
|
5
|
+
color: #ffffff;
|
|
6
|
+
border: 0;
|
|
7
|
+
box-shadow: inset 0 -4px 4px 0px rgb(0 0 0 / 25%);
|
|
8
|
+
font-size: 16px;
|
|
9
|
+
text-decoration: none;
|
|
10
|
+
width: 358px;
|
|
11
|
+
height: 48px;
|
|
12
|
+
text-align: center;
|
|
13
|
+
align-items: center;
|
|
14
|
+
justify-content: center;
|
|
15
|
+
font-weight: 400;
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
.ns_link_red {
|
|
2
|
+
display: flex;
|
|
3
|
+
border-radius: 8px;
|
|
4
|
+
background-color: rgb(265, 63, 63, 1);
|
|
5
|
+
color: #ffffff;
|
|
6
|
+
border: 0;
|
|
7
|
+
box-shadow: inset 0 -4px 4px 0px rgb(0 0 0 / 25%);
|
|
8
|
+
font-size: 16px;
|
|
9
|
+
text-decoration: none;
|
|
10
|
+
width: 358px;
|
|
11
|
+
height: 48px;
|
|
12
|
+
text-align: center;
|
|
13
|
+
align-items: center;
|
|
14
|
+
justify-content: center;
|
|
15
|
+
font-weight: 400;
|
|
16
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
.ns_pagination_container {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: row;
|
|
4
|
+
gap: 18px;
|
|
5
|
+
text-align: left;
|
|
6
|
+
padding-left: 48px;
|
|
7
|
+
font-size: 14px;
|
|
8
|
+
justify-items: center;
|
|
9
|
+
line-height: 35px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
@media only screen and (max-width: 600px) {
|
|
13
|
+
.ns_paginationl_container {
|
|
14
|
+
padding-left: 36px;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.center_number {
|
|
19
|
+
background-color: rgba(6, 209, 130, 1);
|
|
20
|
+
border-radius: 50px;
|
|
21
|
+
height: 32px;
|
|
22
|
+
width: 32px;
|
|
23
|
+
text-align: center;
|
|
24
|
+
align-items: center;
|
|
25
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
.ns_section_cards_holder {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
justify-content: center;
|
|
5
|
+
align-items: center;
|
|
6
|
+
margin-left: auto;
|
|
7
|
+
margin-right: auto;
|
|
8
|
+
padding-left: 1rem;
|
|
9
|
+
padding-right: 1rem;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.ns_section_cards_title_container {
|
|
13
|
+
margin-bottom: 32px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.ns_card_container {
|
|
17
|
+
display: flex;
|
|
18
|
+
flex-direction: row;
|
|
19
|
+
flex-wrap: wrap;
|
|
20
|
+
justify-content: center;
|
|
21
|
+
gap: 24px;
|
|
22
|
+
width: 100%;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.ns_section_cards_link_container {
|
|
26
|
+
margin-top: 48px;
|
|
27
|
+
width: 100%;
|
|
28
|
+
text-align: center;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.description {
|
|
32
|
+
font-style: normal;
|
|
33
|
+
font-weight: inherit;
|
|
34
|
+
font-size: 16px;
|
|
35
|
+
font-family: inherit;
|
|
36
|
+
line-height: inherit;
|
|
37
|
+
margin-bottom: 16px;
|
|
38
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
.ns_input_parent {
|
|
2
|
+
width: 326px;
|
|
3
|
+
max-width: 100%;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.ns_input_select {
|
|
7
|
+
height: 48px;
|
|
8
|
+
width: 304px !important;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.ns_input_select span span svg path {
|
|
12
|
+
height: 24px !important;
|
|
13
|
+
width: 24px !important;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.ns_input_select span span svg {
|
|
17
|
+
height: 24px !important;
|
|
18
|
+
width: 24px !important;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.ns_input_select span span span svg path {
|
|
22
|
+
height: 12px !important;
|
|
23
|
+
width: 12px !important;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.ns_input_select span span span svg {
|
|
27
|
+
height: 12px !important;
|
|
28
|
+
width: 12px !important;
|
|
29
|
+
}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
.thead th {
|
|
2
|
+
background-color: rgb(0, 0, 0, 0.3);
|
|
3
|
+
color: rgba(255, 255, 255, 1);
|
|
4
|
+
border: none;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.tbody th {
|
|
8
|
+
background-color: rgb(0, 0, 0, 0.3);
|
|
9
|
+
color: rgba(255, 255, 255, 1);
|
|
10
|
+
border: none;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.tbody td {
|
|
14
|
+
background-color: rgb(0, 0, 0, 0.3);
|
|
15
|
+
color: rgba(255, 255, 255, 1);
|
|
16
|
+
border: none;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.project_list_container {
|
|
20
|
+
border: none;
|
|
21
|
+
text-align: left;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
@media only screen and (max-width:600px) {
|
|
25
|
+
.project_list_container {
|
|
26
|
+
overflow: scroll;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/* table-satus */
|
|
31
|
+
.inqueue_status {
|
|
32
|
+
color: white;
|
|
33
|
+
background-color: rgba(255, 148, 50, 1);
|
|
34
|
+
font-size: 12px;
|
|
35
|
+
width: 96px;
|
|
36
|
+
height: 24px;
|
|
37
|
+
border-radius: 24px;
|
|
38
|
+
border: none;
|
|
39
|
+
text-align: center;
|
|
40
|
+
padding-top: 2px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.reserving_status {
|
|
44
|
+
color: white;
|
|
45
|
+
background-color: rgba(255, 79, 79, 1);
|
|
46
|
+
font-size: 12px;
|
|
47
|
+
width: 96px;
|
|
48
|
+
height: 24px;
|
|
49
|
+
border-radius: 24px;
|
|
50
|
+
border: none;
|
|
51
|
+
text-align: center;
|
|
52
|
+
padding-top: 2px;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.done-status {
|
|
56
|
+
color: white;
|
|
57
|
+
background-color: rgba(6, 209, 130, 1);
|
|
58
|
+
font-size: 12px;
|
|
59
|
+
width: 96px;
|
|
60
|
+
height: 24px;
|
|
61
|
+
border-radius: 24px;
|
|
62
|
+
border: none;
|
|
63
|
+
text-align: center;
|
|
64
|
+
padding-top: 2px;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.inprogress_status {
|
|
68
|
+
color: white;
|
|
69
|
+
background-color: rgba(230, 208, 19, 1);
|
|
70
|
+
font-size: 12px;
|
|
71
|
+
width: 96px;
|
|
72
|
+
height: 24px;
|
|
73
|
+
border-radius: 24px;
|
|
74
|
+
border: none;
|
|
75
|
+
text-align: center;
|
|
76
|
+
padding-top: 2px;
|
|
77
|
+
}
|
|
File without changes
|