Skip to content

Commit 7826598

Browse files
author
Quique Fernandez
committed
add orders css to mvc app
1 parent 2837164 commit 7826598

2 files changed

Lines changed: 51 additions & 51 deletions

File tree

src/Web/WebMVC/wwwroot/css/app.css

Lines changed: 39 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
html,
1212
body {
13-
font-family: Montserrat,sans-serif;
13+
font-family: Montserrat, sans-serif;
1414
font-size: 16px;
1515
font-weight: 400;
1616
z-index: 10; }
@@ -20,6 +20,43 @@ body {
2020
*::before {
2121
box-sizing: border-box; }
2222

23+
.preloading {
24+
color: #00A69C;
25+
display: block;
26+
font-size: 1.5rem;
27+
left: 50%;
28+
position: fixed;
29+
top: 50%;
30+
transform: translate(-50%, -50%); }
31+
32+
select::-ms-expand {
33+
display: none; }
34+
35+
@media screen and (min-width: 992px) {
36+
.form-input {
37+
max-width: 360px;
38+
width: 360px; } }
39+
40+
.form-input {
41+
border-radius: 0;
42+
height: 45px;
43+
padding: 10px; }
44+
45+
.form-input-small {
46+
max-width: 100px !important; }
47+
48+
.form-input-medium {
49+
width: 150px !important; }
50+
51+
.alert {
52+
padding-left: 0; }
53+
54+
.alert-danger {
55+
background-color: transparent;
56+
border: 0;
57+
color: #FB0D0D;
58+
font-size: 12px; }
59+
2360
a,
2461
a:active,
2562
a:hover,
@@ -33,16 +70,4 @@ a:hover,
3370
a:active {
3471
color: #75B918;
3572
transition: color 0.35s;
36-
}
37-
38-
.preloading {
39-
color: #00A69C;
40-
display: block;
41-
font-size: 1.5rem;
42-
left: 50%;
43-
position: fixed;
44-
top: 50%;
45-
transform: translate(-50%, -50%); }
46-
47-
select::-ms-expand {
48-
display: none; }
73+
}

src/Web/WebMVC/wwwroot/css/orders/orders-new/orders-new.component.css

Lines changed: 12 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
.esh-orders_new-back {
77
color: rgba(255, 255, 255, 0.4);
88
line-height: 4rem;
9-
text-transform: uppercase;
109
text-decoration: none;
10+
text-transform: uppercase;
1111
transition: color 0.35s; }
1212
.esh-orders_new-back:hover {
1313
color: #FFFFFF;
@@ -17,21 +17,21 @@
1717
.esh-orders_new-section--right {
1818
text-align: right; }
1919
.esh-orders_new-placeOrder {
20-
float: right;
21-
margin-top: 40px;
22-
margin-bottom: 40px;
23-
background-color: #83d01b;
24-
color: #fff;
25-
padding: 10px 20px 10px 20px;
20+
background-color: #83D01B;
21+
border: 0;
2622
border-radius: 0;
27-
border: none;
28-
width: 255px;
23+
color: #FFFFFF;
2924
display: inline-block;
25+
font-size: 1rem;
26+
font-weight: 400;
27+
margin-top: 1rem;
28+
padding: 1rem 1.5rem;
3029
text-align: center;
3130
text-transform: uppercase;
32-
height: 45px;
33-
font-size: 16px;
34-
font-weight: normal; }
31+
transition: all 0.35s; }
32+
.esh-orders_new-placeOrder:hover {
33+
background-color: #4a760f;
34+
transition: all 0.35s; }
3535
.esh-orders_new-titles {
3636
padding-bottom: 1rem;
3737
padding-top: 2rem; }
@@ -54,28 +54,3 @@
5454
color: #83D01B; }
5555
.esh-orders_new-image {
5656
height: 8rem; }
57-
58-
@media screen and (min-width: 992px) {
59-
.form-input {
60-
width: 360px;
61-
max-width: 360px; } }
62-
63-
.form-input {
64-
border-radius: 0;
65-
padding: 10px;
66-
height: 45px; }
67-
68-
.form-input-small {
69-
max-width: 100px !important; }
70-
71-
.form-input-medium {
72-
width: 150px !important; }
73-
74-
.alert {
75-
padding-left: 0px; }
76-
77-
.alert-danger {
78-
background-color: transparent;
79-
border: none;
80-
color: #fb0d0d;
81-
font-size: 12px; }

0 commit comments

Comments
 (0)