-
Notifications
You must be signed in to change notification settings - Fork 0
/
adress.css
89 lines (75 loc) · 1.44 KB
/
adress.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
.topsection {
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
margin-bottom: 30px;
}
.logo {
width: 90px;
height: 90px;
}
.logo>img {
width: 100%;
}
.address {
max-width: 600px;
padding: 20px;
border-radius: 5px;
font-family: Arial, sans-serif;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
form {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
input[type="text"],
input[type="number"] {
display: block;
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
font-size: 16px;
}
input[type="text"]:focus,
input[type="number"]:focus {
border-color: #4a90e2;
outline: none;
}
#bottomsection {
display: flex;
justify-content: space-around;
}
.payment {
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
padding: 20px;
font-family: Arial, sans-serif;
text-align: center;
}
.price,
.charge,
.tax,
.amount {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px
}
#button {
width: 300px;
height: 40px;
margin: auto;
background-color:#3e8e41;
border-radius: 5px;
border: none;
}
#button:hover {
cursor: pointer;
background-color: #ccc;
}
#img{
display: block;
margin-top: 30px;
margin-left: 10px;
width: 400px;
}