forked from vedant-0408/group_project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
order.css
100 lines (84 loc) · 1.63 KB
/
order.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
html {
scroll-behavior: smooth;
}
/*Order*/
.order {
width: 100%;
height: 100vh;
padding: 70px 0;
background-image: url(image/bg2.jpg);
background-size: cover;
background-position: center;
}
.order h1 {
display: flex;
align-items: center;
justify-content: center;
color: #000;
font-size: 55px;
}
.order h1 span {
color: #fac031;
margin-right: 15px;
font-family: mv boli;
}
.order h1 span::after {
content: '';
width: 100%;
height: 2px;
background: #fac031;
display: block;
position: relative;
bottom: 15px;
}
.order .order_main {
display: flex;
align-items: center;
justify-content: space-around;
}
.order .order_main .order_image img {
width: 400px;
}
.order .order_main form {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 0 10px;
}
.order .order_main form .input p {
line-height: 25px;
}
.order .order_main form .input {
margin: 5px;
}
.order .order_main form .input input {
width: 300px;
height: 35px;
padding: 0 10px;
border: 2px solid #cccccc;
background: #eeeeee;
outline: none;
border-radius: 3px;
}
.order .order_main form .input input:focus {
border: 2px solid #fac031;
}
.order .order_main form .order_btn {
padding: 10px 0;
background: #fbc035;
color: white;
width: 40%;
text-align: center;
margin-top: 20px;
text-decoration: none;
border-radius: 10px;
}
.order .order_main form .order_btn:hover{
background-color: red;
border-radius: 30px;
}